/* index.html */
/* ===== NEW NAVIGATION STYLES ===== */

        /* Desktop dropdown nav */
        .nav-list {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-list > li {
            position: relative;
        }
        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.75rem 1rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary, #0a1628);
            text-decoration: none;
            transition: color 0.25s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--accent, #c8a84e);
        }
        .nav-link .dropdown-arrow {
            width: 10px;
            height: 10px;
            transition: transform 0.25s ease;
            flex-shrink: 0;
        }
        .nav-list > li:hover .dropdown-arrow,
        .nav-list > li.dropdown-open .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Desktop dropdown panel */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: var(--white, #fff);
            border: 1px solid var(--gray-200, #e5e7eb);
            border-radius: 12px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
            z-index: 1000;
        }
        .nav-list > li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary, #0a1628);
            text-decoration: none;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .dropdown-menu a:hover {
            background: var(--gray-50, #f9fafb);
            color: var(--accent, #c8a84e);
        }

        /* Hide desktop nav on mobile */
        @media (max-width: 900px) {
            .nav { display: none !important; }
        }

        /* ===== BURGER / MOBILE MENU ===== */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1100;
            gap: 5px;
        }
        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--primary, #0a1628);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        @media (max-width: 900px) {
            .mobile-toggle { display: flex; }
        }

        /* Burger X animation */
        .mobile-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile overlay menu */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 22, 40, 0.5);
            backdrop-filter: blur(4px);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            max-width: 85vw;
            height: 100vh;
            background: var(--white, #fff);
            z-index: 1060;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--gray-200, #e5e7eb);
        }
        .mobile-menu-header .logo-title {
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: var(--primary, #0a1628);
        }
        .mobile-menu-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-50, #f9fafb);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .mobile-menu-close:hover {
            background: var(--gray-200, #e5e7eb);
        }

        .mobile-menu-body {
            padding: 1rem 0;
            flex: 1;
        }

        /* Mobile nav items */
        .mobile-nav-item {
            border-bottom: 1px solid var(--gray-100, #f3f4f6);
        }
        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--primary, #0a1628);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: background 0.2s ease;
            cursor: pointer;
        }
        .mobile-nav-link:hover {
            background: var(--gray-50, #f9fafb);
        }
        .mobile-nav-link .mobile-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
            color: var(--gray-400, #9ca3af);
        }
        .mobile-nav-item.open .mobile-nav-link .mobile-arrow {
            transform: rotate(180deg);
            color: var(--accent, #c8a84e);
        }
        .mobile-nav-item.open > .mobile-nav-link {
            color: var(--accent, #c8a84e);
        }

        /* Mobile sub-menu */
        .mobile-sub-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            background: var(--gray-50, #f9fafb);
        }
        .mobile-nav-item.open .mobile-sub-menu {
            max-height: 300px;
        }
        .mobile-sub-menu a {
            display: block;
            padding: 0.75rem 1.5rem 0.75rem 2.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600, #4b5563);
            text-decoration: none;
            transition: color 0.2s ease, background 0.2s ease;
        }
        .mobile-sub-menu a:hover {
            color: var(--accent, #c8a84e);
            background: var(--gray-100, #f3f4f6);
        }

        /* Mobile menu divider & secondary links */
        .mobile-menu-divider {
            height: 1px;
            background: var(--gray-200, #e5e7eb);
            margin: 0.75rem 1.5rem;
        }
        .mobile-secondary-links {
            padding: 0.25rem 0;
        }
        .mobile-secondary-links a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--gray-500, #6b7280);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: color 0.2s ease;
        }
        .mobile-secondary-links a:hover {
            color: var(--accent, #c8a84e);
        }

        /* Mobile menu footer CTA */
        .mobile-menu-footer {
            padding: 1.25rem 1.5rem;
            border-top: 1px solid var(--gray-200, #e5e7eb);
        }
        .mobile-menu-footer .btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 1rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: var(--accent, #c8a84e);
            color: var(--white, #fff);
            border-radius: 10px;
            text-decoration: none;
            transition: background 0.25s ease, transform 0.25s ease;
        }
        .mobile-menu-footer .btn:hover {
            background: #d4edf4;
            color: var(--primary, #0a1628);
            transform: translateY(-2px);
        }

        /* Prevent body scroll when menu open */
        body.menu-open {
            overflow: hidden;
        }

        /* ===== END NAV STYLES ===== */

        /* Book a Call button hover override */
        .header-actions .btn-primary:hover {
            background: #d4edf4 !important;
            color: var(--primary, #0a1628) !important;
        }

        /* Logo image styles */
        .logo-img {
            height: 110px;
            width: auto;
            display: block;
        }

        /* Mobile logo fix - prevent stretching on mobile devices */
        @media (max-width: 900px) {
            .logo-img {
                height: 70px;
                max-width: 220px;
                object-fit: contain;
            }
        }

        /* Reduce Book a Call button padding to give logo more space */
        .header-actions .btn-primary {
            padding-left: 1rem;
            padding-right: 1rem;
        }

/* Creative Hero Service Boxes */
.hero-service-box-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-service-box-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #62BFCA, #4ecdc4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hero-service-box-new:hover {
    transform: translateY(-8px);
    border-color: #62BFCA;
    box-shadow: 0 20px 40px rgba(98, 191, 202, 0.25), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hero-service-box-new:hover::before {
    transform: scaleX(1);
}

.service-box-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(98, 191, 202, 0.2);
    transition: all 0.3s ease;
}

.service-box-icon svg {
    width: 24px;
    height: 24px;
    color: #62BFCA;
    transition: all 0.3s ease;
}

.hero-service-box-new:hover .service-box-icon {
    background: linear-gradient(135deg, #62BFCA 0%, #4ecdc4 100%);
    border-color: transparent;
    transform: scale(1.1);
}

.hero-service-box-new:hover .service-box-icon svg {
    color: white;
}

.service-box-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

.hero-service-box-new:hover .service-box-title {
    color: #62BFCA;
}

.service-box-arrow {
    width: 28px;
    height: 28px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-box-arrow svg {
    width: 14px;
    height: 14px;
    color: #62BFCA;
}

.hero-service-box-new:hover .service-box-arrow {
    opacity: 1;
    transform: translateY(0);
    background: #62BFCA;
}

.hero-service-box-new:hover .service-box-arrow svg {
    color: white;
}

/* Hero Services Grid */
.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .hero-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Button Pulse Glow Animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(98, 191, 202, 0.5), 0 0 60px rgba(98, 191, 202, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(98, 191, 202, 0.7), 0 0 80px rgba(98, 191, 202, 0.5);
    }
}

/* Compact Hero Service Boxes */
.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .hero-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto auto !important; /* 2 rows */
    }
}


/* Additional styles for index3.html creative sections */

/* Two Column Card Hover Effect */
.column-card {
    transition: all 0.3s ease;
}

.column-card:hover {
    transform: translateY(-8px);
}

.column-card:hover .card-inner {
    border: 1px solid rgba(98, 191, 202, 0.2) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    transform: none !important;
}

/* Glassmorphism for Hero Service Boxes */
.hero-service-box {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
}

.hero-service-box:hover {
    background: rgba(98, 191, 202, 0.12) !important;
    border: 1px solid rgba(98, 191, 202, 0.4) !important;
    box-shadow: 0 8px 32px 0 rgba(98, 191, 202, 0.25) !important;
}

.hero-service-title {
    color: #ffffff !important;
}

.hero-service-icon {
    background: rgba(98, 191, 202, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(98, 191, 202, 0.3) !important;
}

.hero-service-icon svg {
    color: #62BFCA !important;
}

.hero-service-box:hover .hero-service-icon {
    background: rgba(98, 191, 202, 0.4) !important;
    border-color: rgba(98, 191, 202, 0.6) !important;
}

/* Tech Hero Background */
.hero {
    position: relative;
    overflow: hidden;
    background: #0a0f1a;
    min-height: 54vh;
    display: flex;
    align-items: center;
}

.hero-tech-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.25;
}

.hero-tech-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-tech-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(98, 191, 202, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(98, 191, 202, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.hero-tech-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 191, 202, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-tech-glow-1 {
    top: -200px;
    right: -100px;
    animation: float-glow 8s ease-in-out infinite;
}

.hero-tech-glow-2 {
    bottom: -200px;
    left: -100px;
    animation: float-glow 8s ease-in-out infinite 4s;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-circuit-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.05;
}

.hero-circuit-lines svg {
    width: 100%;
    height: 100%;
}

/* View All Services Button */
.btn-view-services {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #0f172a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #62BFCA 0%, #4a9ba8 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-view-services:hover::before {
    left: 0;
}

.btn-view-services:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(98, 191, 202, 0.3);
    border-color: #62BFCA;
}

.btn-view-services svg {
    transition: transform 0.3s ease;
}

.btn-view-services:hover svg {
    transform: translateX(4px);
}

.service-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-image-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.service-image-card:hover {
    transform: translateY(-8px);
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

.image-card-section.reverse {
    direction: rtl;
}

.image-card-section.reverse > * {
    direction: ltr;
}

.section-image-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.section-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: #0f172a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: #62BFCA;
}

.badge-text {
    font-weight: 800;
    font-size: 1.125rem;
    color: #0f172a;
}

/* Direct consultation Section */
.direct-consultation-section {
    position: relative;
    padding: 8rem 0;
    background: #0f172a;
    overflow: hidden;
}

.consultation-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.consultation-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.consultation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(98, 191, 202, 0.2));
    z-index: 1;
}

.consultation-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2362BFCA' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.consultation-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.consultation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(98, 191, 202, 0.2);
    border: 1px solid rgba(98, 191, 202, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.consultation-badge svg {
    width: 20px;
    height: 20px;
    stroke: #62BFCA;
}

.consultation-badge span {
    color: #62BFCA;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.consultation-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.consultation-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.consultation-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.consultation-stat {
    text-align: center;
}

.consultation-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #62BFCA;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.consultation-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Consultation Button Hover Override */
.direct-consultation-section .btn-accent:hover {
    background: #0f172a !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.5) !important;
}

@media (max-width: 1024px) {
    .service-image-grid,
    .image-card-section {
        grid-template-columns: 1fr;
    }

    .section-image-container {
        height: 400px;
    }

    .consultation-title {
        font-size: 2.5rem;
    }

    .consultation-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-image-card {
        height: 300px;
    }
}

/* index.html */
/* Hero Button Slide Effect */
                .hero-cta .btn-accent {
                    transition: all 0.3s ease !important;
                }
                
                .hero-cta .btn-accent::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(135deg, #62BFCA 0%, #4ecdc4 100%);
                    transition: left 0.4s ease;
                    z-index: 0;
                }
                
                .hero-cta .btn-accent:hover::before {
                    left: 0;
                }
                
                .hero-cta .btn-accent:hover {
                    transform: translateY(-2px) !important;
                    box-shadow: 0 10px 30px rgba(98, 191, 202, 0.3) !important;
                    border-color: #62BFCA !important;
                }
                
                .hero-cta .btn-accent svg {
                    transition: transform 0.3s ease;
                }
                
                .hero-cta .btn-accent:hover svg {
                    transform: translateX(4px);
                }
                
                /* Hide mobile line breaks on desktop */
                .mobile-br {
                    display: none;
                }
                
                /* Mobile Responsive Styles for Hero Section */
                @media (max-width: 1024px) {
                    .page-hero {
                        max-height: none !important;
                        min-height: auto !important;
                        padding: 6rem 0 4rem !important;
                    }
                }
                
                @media (max-width: 768px) {
                    section.page-hero {
                        max-height: none !important;
                        min-height: auto !important;
                        padding-top: 3rem !important;
                        padding-bottom: 2rem !important;
                    }
                    
                    .page-hero .container {
                        padding-bottom: 0 !important;
                    }
                    
                    /* Show mobile line breaks and increase h1 font size */
                    .mobile-br {
                        display: inline !important;
                    }
                    
                    .hero-title {
                        font-size: 3rem !important;
                        line-height: 1.15 !important;
                        margin-bottom: 0.75rem !important;
                    }
                    
                    /* Adjust CTA button for mobile */
                    .hero-cta {
                        margin-top: 1.5rem !important;
                        margin-bottom: 0 !important;
                        padding: 0 !important;
                    }
                    
                    /* Reduce top padding of next section on mobile */
                    .trusted-partners-section {
                        padding-top: 2rem !important;
                    }
                    
                    .hero-cta .btn {
                        padding: 1rem 1.75rem !important;
                        font-size: 0.95rem !important;
                    }
                }
                
                @media (max-width: 480px) {
                    .hero-title {
                        font-size: 2.5rem !important;
                    }
                }

/* index.html */
@media (max-width: 768px) {
                section[style*="linear-gradient(135deg, #0f172a"] {
                    padding: 4rem 0 !important;
                }
                section[style*="linear-gradient(135deg, #0f172a"] .container > div {
                    padding: 0 1rem;
                }
                section[style*="linear-gradient(135deg, #0f172a"] div[style*="padding: 2rem 2.5rem"] {
                    padding: 1.5rem 1.5rem !important;
                }
                section[style*="linear-gradient(135deg, #0f172a"] p[style*="font-size: 1.125rem"] {
                    font-size: 1rem !important;
                }
                section[style*="linear-gradient(135deg, #0f172a"] p[style*="font-size: 1.0625rem"] {
                    font-size: 0.9375rem !important;
                }
                section[style*="linear-gradient(135deg, #0f172a"] div[style*="grid-template-columns: repeat(auto-fit"] {
                    grid-template-columns: 1fr !important;
                    gap: 0.75rem !important;
                }
            }

/* index.html */
.trusted-by-wrap{
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }

    /* --- Desktop carousel --- */
    .trusted-carousel{
        display: flex;
        align-items: center;
        gap: 0.85rem;
        position: relative;
    }
    .tc-btn{
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        background: rgba(255,255,255,0.9);
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
        color: #0f172a;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        flex: 0 0 auto;
    }
    .tc-btn:hover{
        transform: translateY(-1px);
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
        background: #ffffff;
    }
    .tc-btn:active{
        transform: translateY(0);
    }

    .tc-viewport{
        position: relative;
        overflow: hidden;
        border-radius: 18px;
        background: rgba(255,255,255,0.8);
        border: 1px solid rgba(229,231,235,0.9);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
        padding: 1rem 0.9rem;
        flex: 1 1 auto;
        outline: none;
    }
    .tc-viewport:focus{
        box-shadow: 0 0 0 3px rgba(98, 191, 202, 0.25), 0 10px 30px rgba(15, 23, 42, 0.06);
    }

    .tc-track{
        display: flex;
        gap: 1.1rem;
        transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
    }
    .tc-item{
        flex: 0 0 calc((100% - (3 * 1.1rem)) / 4);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 1rem;
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(229,231,235,0.9);
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        min-height: 92px;
    }
    .tc-item:hover{
        transform: translateY(-3px);
        border-color: rgba(98, 191, 202, 0.45);
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
    }
    .tc-item img{
        width: 100%;
        height: 64px;
        object-fit: contain;
        filter: saturate(0.95);
        opacity: 0.9;
        transition: opacity 0.2s ease, filter 0.2s ease;
    }
    .tc-item:hover img{
        opacity: 1;
        filter: saturate(1);
    }

    /* Subtle edge fades for a more "premium" feel */
    .tc-viewport::before,
    .tc-viewport::after{
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 46px;
        pointer-events: none;
        z-index: 2;
    }
    .tc-viewport::before{
        left: 0;
        background: linear-gradient(90deg, rgba(249,250,251,1) 0%, rgba(249,250,251,0) 100%);
    }
    .tc-viewport::after{
        right: 0;
        background: linear-gradient(270deg, rgba(249,250,251,1) 0%, rgba(249,250,251,0) 100%);
    }

    /* --- Mobile grid (2 cols x 4 rows) --- */
    .partner-logos-grid--mobile{
        display: none;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .partner-logos-grid--mobile .partner-logo{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background: #ffffff;
        border-radius: 14px;
        border: 1px solid rgba(229,231,235,0.9);
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
        min-height: 88px;
    }
    .partner-logos-grid--mobile .partner-logo img{
        width: 100%;
        height: 56px;
        object-fit: contain;
        opacity: 0.95;
    }

    @media (max-width: 768px){
        .trusted-carousel{ display: none; }
        .partner-logos-grid--mobile{ display: grid; }
    }

    @media (max-width: 420px){
        .partner-logos-grid--mobile{ gap: 0.85rem; }
    }

    @media (prefers-reduced-motion: reduce){
        .tc-track{ transition: none; }
        .tc-item, .tc-btn{ transition: none; }
    }

/* index.html */
@media (max-width: 1024px) {
                section[style*="grid-template-columns: 1fr 1fr"] > div > div[style*="grid-template-columns: 1fr 1fr"] {
                    grid-template-columns: 1fr !important;
                }
                div[style*="grid-template-columns: 1fr 1fr"][style*="min-height: 500px"] {
                    grid-template-columns: 1fr !important;
                }
                div[style*="grid-template-columns: 1fr 1fr"][style*="min-height: 500px"] > div:last-child {
                    min-height: 400px !important;
                }
            }
            
            @media (max-width: 768px) {
                h2[style*="font-size: 2.5rem"] {
                    font-size: 2rem !important;
                }
                div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 1.25rem"] {
                    grid-template-columns: 1fr !important;
                }
            }

            /* Fix consultation image alignment on mobile */
@media (max-width: 768px) {

    .home-consultation-image {
        min-height: 340px !important;
    }

    .home-consultation-image img {
        min-height: 340px !important;
        object-position: 35% center !important;
    }

}

/* Responsive consultation image fix */
.home-consultation-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 0;
}

.home-consultation-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: 50% center;
}

@media (max-width: 1024px) {
    .home-consultation-image {
        min-height: 420px !important;
    }

    .home-consultation-image img {
        min-height: 420px !important;
        object-position: 45% center !important;
    }
}

@media (max-width: 768px) {
    .home-consultation-image {
        min-height: 320px !important;
        height: 320px !important;
    }

    .home-consultation-image img {
        min-height: 320px !important;
        height: 320px !important;
        object-position: 60% center !important;
    }
}