/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bricolage Grotesque', sans-serif;
}

:root {
    --purple: #8200db;
    --purple-light: #9333EA;
    --orange: #ec691f;
    --orange-light: #f97316;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.5rem;
}

.purple-text {
    color: var(--purple);
}

.orange-text {
    color: var(--orange);
}

.gray-text {
    color: var(--gray-800);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo-img {
    width: 100px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-md);
}

.sticky .nav-links {
    box-shadow: none;
}

.nav-link {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link.active {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--purple);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-800);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 130px;
    padding-bottom: 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--purple);
}

.hero-title {
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 32rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--purple);
    color: var(--white);
    border: none;
    padding: 14px 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    padding: 14px 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    display: inline-block;
}

.btn-secondary:hover {
    box-shadow: var(--shadow-md);
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ready-to-transform{padding: 0;}

/* Our Process Section */
.our-process {
    margin-top: 3rem;
    padding: 0 1rem;
}

.inner-banner {
    padding-top: 130px;
}
.inner-banner h2{font-size: 2.25rem;}
.inner-banner + .ready-to-transform .transform-card{margin-top: 0;}
.service_journey{margin-bottom: 70px;}

@media (min-width: 1499px){
    .container,.nav-container{max-width: 1500px;}
}

@media (min-width: 640px) {
    .our-process {
        margin-top: 5rem;
    }
}

.process-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .process-header {
        margin-bottom: 3rem;
    }
}

.process-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .process-header h3 {
        font-size: 1.875rem;
    }
}

.process-container {
    position: relative;
}

/* Connector Line */
.process-connector {
    position: absolute;
    top: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    background: linear-gradient(to right, var(
    --purple-light), var(--orange-light), var(--purple-light));
    opacity: 0.5;
    z-index: 1;
    display: none;
    width: calc(100% - 70px);
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
    }
}

/* Process Steps Grid */
.process-steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Process Step */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .step-icon-wrapper {
        margin-bottom: 1.5rem;
    }
}

.step-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--purple), var(--orange));
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(12px);
    z-index: 1;
}

.step-icon-circle {
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border-radius: 50%;
    border: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .step-icon-circle {
        width: 4rem;
        height: 4rem;
    }
}

.step-icon {
    background: linear-gradient(to right, var(--purple), var(--orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    stroke-width: 2;
}

@media (min-width: 640px) {
    .step-icon svg {
        width: 2rem;
        height: 2rem;
    }
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .step-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
}

.step-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 16rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .step-description {
        font-size: 1rem;
    }
}

/* Animation Effects */
.process-step {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
/* .process-step:hover .step-icon-circle {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple-light);
    transition: all 0.3s ease;
} */

/* .process-step:hover .step-icon svg {
    animation: iconPulse 1s ease infinite;
} */

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .process-step:nth-child(odd) {
        margin-top: 0;
    }
    
    .process-step:nth-child(even) {
        margin-top: 0;
    }
    
    /* Add vertical connector for mobile */
    .process-container::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: linear-gradient(to bottom, var(--purple-light), var(--orange-light), var(--purple-light));
        opacity: 0.3;
        transform: translateX(-50%);
        z-index: 1;
        display: block;
    }
    
    @media (min-width: 640px) {
        .process-container::before {
            display: none;
        }
    }
}

/* Enhanced animations for step icons */
.step-icon-circle {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .process-step:hover .step-icon-circle {
    animation: circleGlow 2s ease-in-out infinite;
} */

.journey_sec {
    padding: 70px 0 0;
    text-align: center;
}

.journey_sec h3 {
    margin-bottom: 20px;
}
.btn-gradient svg {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin-left: 5px;
}

section.worldwide_sec { padding: 0; text-align: center; } 
section.worldwide_sec h3 { margin: 0 0 30px; } 
.img-wrapper { display: flex;flex-wrap: wrap; align-items: center; justify-content: space-around; }


@keyframes circleGlow {
    0%, 100% {
        box-shadow: 
            0 4px 6px -1px rgba(115, 46, 133, 0.1),
            0 2px 4px -1px rgba(115, 46, 133, 0.06),
            0 0 0 0 rgba(115, 46, 133, 0.2);
    }
    50% {
        box-shadow: 
            0 10px 15px -3px rgba(115, 46, 133, 0.1),
            0 4px 6px -2px rgba(115, 46, 133, 0.05),
            0 0 0 4px rgba(115, 46, 133, 0.1);
    }
}

@media (min-width: 768px) {
    .tech-stack {
        grid-template-columns: repeat(6, 1fr);
    }
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-size: 1.25rem;
}

.tech-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-800);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.input-with-icon input,
.input-with-icon textarea {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.input-with-icon input:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(115, 46, 133, 0.1);
}

.input-with-icon textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, var(--purple), var(--purple-light));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Tech Brands Marquee */
.tech-brands {
    position: relative;
    padding: 2.5rem 0;
    margin: 2rem 0;
    overflow: hidden;
}

.tech-brands::before,
.tech-brands::after {
    content: '';
    position: absolute;
    top: 0;
    width: 8rem;
    height: 100%;
    z-index: 10;
}

.tech-brands::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.tech-brands::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.brands-track {
    display: flex;
    animation: scrollMarquee 40s linear infinite;
    white-space: nowrap;
}

.brand-item {
    flex: 0 0 auto;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
    z-index: 100;
    animation: bounce 2s infinite;
    text-decoration: none;
    color: #000;
}

.scroll-indicator p {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-600);
    max-width: 36rem;
    margin: 0 auto 1.5rem;
    font-size: 1.125rem;
}

.header-line {
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--purple), var(--orange));
    margin: 0 auto;
    border-radius: 9999px;
    margin-bottom: 20px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
}

.about-text h3 {
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.about-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 384px;
    object-fit: cover;
}

.expertise h3 {
    margin-bottom: 1rem;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    list-style: none;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

.expertise-list li i {
    color: var(--orange);
    font-size: 0.5rem;
}


.transform-card { position: relative; overflow: hidden; margin-top: 3rem; border-radius: 1rem; border-width: 1px; border-color: #f6f3f4; background-color: #ffffff; box-shadow: 0 0px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); } 
.transform-content { position: relative; padding: 3rem; display: flex; align-items: center; justify-content: space-between; } 
.transform-text h3 { margin-bottom: 0.5rem; font-size: 1.25rem; line-height: 1.75rem; font-weight: 600; color: #1F2937; } 
.btn-secondary { text-decoration: none; } 
.btn-gradient { font-size: 18px; } 
.transform-card:after { content: ''; position: absolute; top: 0; right: 0; margin-top: -2rem; margin-right: -2rem; border-radius: 9999px; width: 12rem; height: 12rem; background-color: #ffd7a8; opacity: 0.2; filter: blur(40px); }

/* Stats Marquee Section */
.stats-marquee {
    margin: 3rem 0;
    padding: 1.5rem 0;
    background: linear-gradient(to right, var(--gray-50), var(--white));
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
    position: relative;
}

@media (min-width: 640px) {
    .stats-marquee {
        margin: 4rem 0;
        padding: 2rem 0;
    }
}

.stats-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.stat-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.purple-dot {
    background-color: var(--purple-light);
}

.orange-dot {
    background-color: var(--orange-light);
}

.dot-1 {
    top: 0;
    left: 25%;
    width: 0.5rem;
    height: 0.5rem;
}

.dot-2 {
    bottom: 0;
    left: 33.33%;
    width: 0.75rem;
    height: 0.75rem;
}

.dot-3 {
    top: 50%;
    right: 25%;
    width: 0.625rem;
    height: 0.625rem;
    transform: translateY(-50%);
}

@media (min-width: 640px) {
    .dot-1 {
        width: 1rem;
        height: 1rem;
    }
    
    .dot-2 {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .dot-3 {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Owl Carousel Custom Styling */
.owl-carousel {
    position: relative;
    z-index: 1;
}

.owl-stage {
    display: flex;
}

.owl-item {
    display: flex;
    align-items: center;
}

.stats-track {
    display: flex;
}

.stat-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .stat-item {
        padding: 0 1.5rem;
    }
}

.stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.5rem;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2.25rem;
        margin-right: 0.75rem;
    }
}

.purple-gradient {
    background-image: linear-gradient(to right, var(--purple), var(--purple-light));
}

.orange-gradient {
    background-image: linear-gradient(to right, var(--orange), var(--orange-light));
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.875rem;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 1rem;
    }
}

.stat-divider {
    width: 1px;
    height: 1rem;
    background-color: var(--gray-200);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .stat-divider {
        height: 2rem;
    }
}

/* Owl Carousel Navigation Hide */
.owl-nav {
    display: none !important;
}

.owl-dots {
    display: none !important;
}

/* Client Testimonial */
.client-testimonial {
    background: linear-gradient(to left, #fff7ed, #faf5ff);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 3rem 0;
}
.testimonial-right {
    text-align: right;
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonial-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.testimonial-left h3 {
    margin-bottom: 1rem;
}

.testimonial-left ul {
    list-style: none;
}

.testimonial-left li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

.testimonial-left li i {
    color: var(--orange);
}

.testimonial-right .quote {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.testimonial-right .author {
    font-weight: 600;
    color: var(--gray-800);
}

.testimonial-right .company {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.btn-gradient {
    display: inline-block;
    background: linear-gradient(to right, var(--purple), var(--orange));
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(to right, var(--purple), var(--orange));
    transform-origin: left;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.service-card:hover::before {
    height: 0.5rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(to left, #fff7ed, #faf5ff);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--purple);
    font-size: 1.25rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    min-height: 4rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-tags span {
    padding: 0.25rem 0.5rem;
    background: linear-gradient(to right, var(--gray-50), var(--orange-50));
    border: 1px solid var(--gray-100);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
}

.service-tags span:last-child {
    background-color: var(--gray-50);
    color: var(--gray-500);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--purple);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-link:hover {
    color: var(--orange);
    gap: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.testimonials-slider::before,
.testimonials-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 8rem;
    height: 100%;
    z-index: 10;
}

.testimonials-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.testimonials-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollTestimonials 30s linear infinite;
    padding: 1rem 0;
}

.testimonial-card {
    flex: 0 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    backdrop-filter: blur(8px);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.5rem;
    /* box-shadow: 0 8px 32px rgba(100, 100, 111, 0.1); */
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background-color: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray-500);
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--white), var(--gray-50), var(--white));
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}





@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.75;
    font-size: 1.125rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to left, #fff7ed, #faf5ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--orange);
}

.contact-type {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.contact-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1.125rem;
}

.social-links h4 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(to right, var(--purple), var(--orange));
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--gray-100);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
    border-top: 1px solid var(--gray-100);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-logo img {
    width: 10rem;
    height: auto;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--gray-600);
    line-height: 1.75;
    max-width: 16rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.125rem;
}

.footer-col a:hover {
    color: var(--purple);
}

.footer-col.legal a:hover {
    color: var(--orange);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
    font-size: 1.125rem;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social h4 {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 0.5rem;
    bottom: 70px;
    /* transform: translateY(-50%); */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.floating-button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.floating-button.phone {
    background-color: var(--purple-light);
}

.floating-button.whatsapp {
    background-color: #25D366;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .testimonial-track {
        animation-duration: 60s;
    }


    .nav-links {
        position: absolute;
        right: 13px;
        width: 300px;
        flex-direction: column;
        top: 100%;
        border-radius: 0;
        box-shadow: 0 0 10px rgba(0,0,0,0.2) !important;
        gap: 6px;
        padding: 10px;
        background-color: #ffffff;
    }
    
    .nav-links a {
        display: block;
    }

}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-list {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .floating-buttons {
        bottom: 1rem;
        top: auto;
        transform: none;
        right: 1rem;
        flex-direction: row;
    }
}

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 32px; }

.portfolio-card {
    position: relative;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    height: 400px;
    opacity: 1;
    transition: all 0.5s ease;
}

.portfolio-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-card:hover .card-image {
    transform: scale(1.1);
}

.image-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .image-overlay-top {
    opacity: 0.7;
}

.image-overlay-bottom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0.6;
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: none;
    transition: all 0.5s ease;
}

.card-content-inner {
    position: relative;
    z-index: 10;
    opacity: 1;
    transform: none;
}

.card-category {
    margin-bottom: 1rem;
    transform: none;
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: linear-gradient(to right, rgba(147, 51, 234, 0.9), rgba(249, 115, 22, 0.9));
    color: white;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1.5rem;
    }
}

.portfolio-card:hover .card-title {
    color: rgba(216, 180, 254, 1);
}

.title-link {
    color: inherit;
    text-decoration: none;
}

.portfolio-card:hover .title-link:hover {
    text-decoration: underline;
}

.case-study-link {
    display: inline-block;
    text-decoration: none;
}

.case-study-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, rgba(147, 51, 234, 1), rgba(249, 115, 22, 1));
    color: white;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .case-study-button {
    opacity: 1;
}

.case-study-button svg {
    width: 1em;
    height: 1em;
}

.card-decoration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(249, 115, 22, 0.3));
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: translateY(-2.09329px) rotate(4.18658deg);
}

.portfolio-card:hover .card-decoration {
    opacity: 1;
}

/* Inner Call To Action */
.innCallToAction {
    padding-bottom: 96px;
}
.innCallToAction .transform-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    background: linear-gradient(to bottom right, #faf5ff, #fff7ed);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.innCallToAction .transform-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
}
.innCallToAction .transform-text p { max-width: 672px; margin: 0 auto;}

.innCallToAction .transform-buttons {
    margin-top: 30px;
}
.innCallToAction .transform-buttons a:not(:last-child) {
    margin-right: 12px;
}

/* Inner Tesimonials  */
.innTesti {
    padding: 0 0 80px;
}
.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }
  
  .pause-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .pause-btn:hover {
    background-color: #f9fafb;
  }
  
  .pause-icon {
    width: 1.25rem;
    height: 1.25rem;
  }


  /* Blog */

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
}
  .blog-item .blogImg img { width: 100%; height: 240px; margin-bottom: 8px; object-fit: cover;} 
  .blog-item h3 a { font-size: 16px; font-weight: 600; line-height: 21px; color: #000; display: inline-block; min-height: 50px;}
  .read_more { font-size: 15px; color: #000000; font-weight: 500; transition: 0.3s ease;} 
  .read_more:hover { text-decoration: underline; transition: 0.3s ease; }
  .read_more i { font-size: 10px; }
  .blog-item .sort-desc-home p { font-size: 15px; font-weight: 400; line-height: 19.6px; }
  .blog-item {     padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 10px;} 

  .blog-details .blog-item .blogImg img {
    height: auto;
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

.blog-details .blog-content h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 12px;
}
.blog-details .blog-content p{margin-bottom: 20px;}
.blog-item h3 a {
    color: var(--purple);
    text-decoration: none;
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: auto;
}

.blog-item .sort-desc-home p {
    margin: 0 0 10px;
}

.blog-item h3 {
    margin: 0 0 10px;
}
  

@media (max-width: 991px) {
    .blog-grid, .portfolio-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 24px;
    }
    
}

@media (max-width: 768px) {
    .blog-grid, .portfolio-grid {
        grid-template-columns: repeat(1,minmax(0,1fr));
        gap: 20px;
    }

}

@media (max-width: 767px){
    .transform-content {
    flex-direction: column;
    gap: 30px;
}

.transform-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.transform-buttons a {
    text-align: center;
}

.process-container::before {
    display: none;
}

.testimonials-slider::before, .testimonials-slider::after {
    display: none;
}

.img-wrapper {
    gap: 20px;
}
.inner-banner h2{font-size: 1.75rem;}
.transform-content{padding: 2rem;}
.contact-content {
    display: flex;
    flex-direction: column-reverse;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-info {
    width: 100%;
}
}

/*  */
.hero-title span.orange-text {
    display: block;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: rightSide .8s linear .5s forwards;
}

@keyframes rightSide {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}