        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16161a;
            --accent-green: #16db93;
            --text-light: #ffffff;
            --text-gray: #a0a0a0;
            --card-bg: #252530;
            --border-color: #333344;
        }

        body {
            font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 300;
            line-height: 1.6;
            color: var(--text-light);
            background: var(--primary-dark);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 46, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            align-items: center;
            margin-left: 2.5rem;
            margin-right: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--accent-green);
        }

        .contact-btn {
            background: var(--accent-green);
            color: var(--primary-dark);
            padding: 0.7rem 1rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-btn:hover {
            background: #1068a0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(22, 219, 147, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu {
            display: block;
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: rgba(26, 26, 46, 0.98);
            backdrop-filter: blur(10px);
            padding: 6rem 2rem 2rem;
            border-left: 1px solid var(--border-color);
            z-index: 998;
            transition: right 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-overlay {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 997;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu ul li {
            margin-bottom: 1rem;
        }

        .mobile-menu ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Hero Section - SHORTER to show testimonials above fold */
        .hero {
            margin-top: 80px;
            min-height: 42vh;
            background: linear-gradient(135deg, var(--primary-dark) 0%, #0d5a8a 50%, var(--primary-dark) 100%);
            padding: 2rem 2rem 1.5rem;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(22, 219, 147, 0.08) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
            padding: 0 2rem;
        }

        .hero-text h1 {
            font-size: 2.2rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 0.6rem;
            color: var(--text-light);
        }

        .hero-text h1 .highlight {
            color: var(--accent-green);
        }

        .hero-text h2 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-green);
            margin-bottom: 0.8rem;
            letter-spacing: 0.5px;
        }

        .hero-text p {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 1.2rem;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .primary-btn {
            background: var(--accent-green);
            color: var(--primary-dark);
            padding: 0.9rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-green);
        }

        .primary-btn:hover {
            background: #1068a0;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(22, 219, 147, 0.4);
        }

        .secondary-btn {
            background: transparent;
            color: var(--accent-green);
            padding: 0.9rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-green);
        }

        .secondary-btn:hover {
            background: var(--accent-green);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero-image-wrapper {
            position: relative;
            max-width: 320px;
            width: 100%;
        }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100%;
            height: 100%;
            background: var(--accent-green);
            border-radius: 20px;
            opacity: 0.1;
            z-index: -1;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }

        .hero-image img:hover {
            transform: scale(1.02);
        }

        /* Client Logos Slider - NO GOOGLE RATING SECTION */
        .client-logos {
            padding: 3.5rem 0;
            background: var(--secondary-dark);
            overflow: hidden;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            width: 100%;
        }

        .logos-slider {
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .logos-track {
            display: flex;
            gap: 3.5rem;
            animation: scroll 60s linear infinite;
            width: fit-content;
        }

        .logos-track:hover {
            animation-play-state: paused;
        }

        .logo-item {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 70px;
            opacity: 0.9;
            transition: opacity 0.3s ease;
            width: 180px;
        }

        .logo-item:hover {
            opacity: 1;
            transform: translateY(-3px);
        }

        .logo-item img {
            height: 60px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            display: block;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Testimonials Section */
        .testimonials {
            padding: 5rem 2rem;
            background: var(--primary-dark);
        }

        .section-header {
            text-align: center;
            max-width: 1100px;
            margin: 0 auto 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-gray);
            white-space: nowrap;
        }

        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-color: var(--accent-green);
        }

        .google-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .google-badge img {
            height: 20px;
            width: 20px;
        }

        .google-badge .stars {
            display: flex;
            gap: 0.2rem;
        }

        .google-badge .stars img {
            width: 14px;
            height: 14px;
        }

        .testimonial-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--accent-green);
            margin-bottom: 0.75rem;
        }

        .testimonial-content {
            color: var(--text-gray);
            margin-bottom: 1rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .testimonial-company {
            color: var(--text-gray);
            font-size: 0.85rem;
            font-style: italic;
        }

        /* About Section */
        .about {
            padding: 5rem 2rem;
            background: linear-gradient(315deg, var(--primary-dark) 0%, #0d5a8a 50%, var(--primary-dark) 100%);
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: stretch;
        }

        .about-content .hero-image {
            display: flex;
            align-items: stretch;
        }

        .about-content .hero-image-wrapper {
            width: 100%;
            max-width: 100%;
            display: flex;
        }

        .about-content .hero-image-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .about-text h2 {
            font-size: 2.3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .about-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-green);
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .about-text p {
            font-size: 1.05rem;
            color: var(--text-gray);
            margin-bottom: 1.2rem;
            line-height: 1.7;
        }

        .about-cta-buttons {
            display: flex;
            gap: 1.2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .about-cta-buttons .primary-btn,
        .about-cta-buttons .secondary-btn {
            font-size: 1rem;
        }

        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background: var(--primary-dark);
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .services-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.15;
            z-index: -1;
        }

        .section-header {
            position: relative;
            z-index: 1;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto 3rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .view-all-services {
            text-align: center;
            margin-top: 2rem;
            position: relative;
            z-index: 1;
        }

        .view-all-btn {
            display: inline-block;
            background: var(--accent-green);
            color: var(--primary-dark);
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-green);
        }

        .view-all-btn:hover {
            background: #1068a0;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(22, 219, 147, 0.4);
        }

        .service-card {
            background: var(--card-bg);
            padding: 1.75rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(22, 219, 147, 0.6);
            border-color: var(--accent-green);
        }

        .service-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-number img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .service-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-light);
        }

        .service-card p {
            color: var(--text-gray);
            line-height: 1.5;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #157aac 0%, #1068a0 100%);
            text-align: center;
            color: var(--text-light);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .cta-section .primary-btn {
            background: var(--primary-dark);
            color: var(--text-light);
            border-color: var(--primary-dark);
            font-size: 1.1rem;
            padding: 1.1rem 3rem;
        }

        .cta-section .secondary-btn {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
            font-size: 1.1rem;
            padding: 1.1rem 3rem;
        }

        .cta-section .secondary-btn:hover {
            background: var(--text-light);
            color: #157aac;
            border-color: var(--text-light);
        }

        .cta-section .primary-btn:hover {
            background: var(--text-light);
            color: #157aac;
        }
            background: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 26, 46, 0.4);
        }

        /* Footer */
        footer {
            background: var(--secondary-dark);
            color: var(--text-light);
            padding: 3rem 2rem 2rem;
            border-top: 1px solid var(--border-color);
            margin-top: 5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: #157aac;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.6rem;
        }

        .footer-section a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .footer-section a:hover {
            color: var(--accent-green);
        }

        .footer-section p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .nav-links {
                gap: 1rem;
            }
            
            .nav-links a {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                min-height: auto;
                padding: 3rem 1.5rem 2.5rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem;
            }

            .hero-text h1 {
                font-size: 2.4rem;
            }

            .hero-text h2 {
                font-size: 1.3rem;
            }

            .hero-text p {
                font-size: 1.08rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image-wrapper {
                max-width: 380px;
                margin: 0 auto;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text h2 {
                font-size: 1.15rem;
            }

            .primary-btn, .secondary-btn {
                padding: 0.9rem 2.2rem;
                font-size: 0.98rem;
            }

            .contact-btn {
                padding: 0.55rem 1.2rem;
                font-size: 0.88rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text,
        .hero-image,
        .service-card,
        .testimonial-card {
            animation: fadeInUp 0.8s ease-out;
        }

        .service-card:nth-child(1) { animation-delay: 0.05s; }
        .service-card:nth-child(2) { animation-delay: 0.1s; }
        .service-card:nth-child(3) { animation-delay: 0.15s; }
        .service-card:nth-child(4) { animation-delay: 0.2s; }
        .service-card:nth-child(5) { animation-delay: 0.25s; }
        .service-card:nth-child(6) { animation-delay: 0.3s; }

/* Mouse Follower */
.mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-green);
    pointer-events: none;
    z-index: 10000;
    opacity: 0.8;
    transition: transform 0.15s ease-out;
    mix-blend-mode: difference;
}

.mouse-follower-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    transition: transform 0.2s ease-out;
}

/* Heading Animation */
.heading-wrapper {
    position: relative;
    display: inline-block;
}

.heading-text {
    display: block;
    animation: slideUpText 12s infinite;
    opacity: 0;
}

.heading-text:nth-child(1) {
    animation-delay: 0s;
}

.heading-text:nth-child(2) {
    animation-delay: 4s;
}

.heading-text:nth-child(3) {
    animation-delay: 8s;
}

@keyframes slideUpText {
    0%, 33% {
        opacity: 1;
        transform: translateY(0);
    }
    38%, 100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

/* Fix heading wrapper for animation */
.hero-text h1 .heading-wrapper {
    position: relative;
    display: block;
    min-height: 3.6em;
    overflow: hidden;
}

.hero-text h1 .heading-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* Responsive adjustments for section header */
@media (max-width: 1200px) {
    .section-header p {
        white-space: normal;
    }
}






/* Replace Lexend fonts with Outfit */

/* Navigation and menu items use Outfit */
nav,
.nav-links,
.nav-links a,
.mobile-menu,
.mobile-menu a,
.contact-btn,
.mobile-menu-btn {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* All headings use Outfit */
h1, h2, h3, h4, h5, h6,
.hero-text h1,
.hero-text h2,
.section-header h2,
.about-text h2,
.about-text h3,
.service-card h3,
.testimonial-title,
.cta-section h2,
.footer-section h3 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Buttons use Outfit */
.primary-btn,
.secondary-btn,
.view-all-btn {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Paragraphs and body text use Noto Sans Light */
p,
.hero-text p,
.section-header p,
.about-text p,
.service-card p,
.testimonial-content,
.testimonial-author,
.testimonial-company,
.footer-section p {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 300;
}

/* Some of Our Work Section */
.our-work {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(248, 249, 250, 0.92), rgba(233, 236, 239, 0.92)),
                url('images/perth-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.our-work .section-header h2 {
    color: var(--primary-dark);
}

.our-work .section-header p {
    color: #495057;
}

.video-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.video-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(22, 219, 147, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.video-info p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Ensure mouse follower CSS is defined */
.mouse-follower {
    position: fixed !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: #157aac !important;
    pointer-events: none !important;
    z-index: 10000 !important;
    opacity: 0.8 !important;
    transition: transform 0.15s ease-out !important;
    mix-blend-mode: difference !important;
}

.mouse-follower-ring {
    position: fixed !important;
    width: 40px !important;
    height: 40px !important;
    border: 2px solid #157aac !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 9999 !important;
    opacity: 0.6 !important;
    transition: transform 0.2s ease-out !important;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    width: 95vw;
    height: 95vh;
    max-width: 95vw;
    max-height: 95vh;
    position: relative;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 60px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100001;
    line-height: 1;
    padding: 0;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.2);
    color: var(--accent-green);
}

.video-card {
    cursor: pointer;
}

.video-card:hover .video-info h3 {
    color: var(--accent-green);
}

/* Internal Page Styles */

/* Page Hero */
.page-hero {
    margin-top: 80px;
    min-height: 35vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d5a8a 50%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: var(--secondary-dark);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--primary-dark);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0.3rem 0;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-green);
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--primary-dark);
    color: var(--accent-green);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--accent-green);
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-icons a:hover {
    background: var(--accent-green);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--primary-dark);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Noto Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(22, 219, 147, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(22, 219, 147, 0.1);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #ff6b7a;
}

.contact-form button[type="submit"] {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
}

/* Page Content Styles */
.page-content {
    padding: 5rem 2rem;
    background: var(--primary-dark);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.main-content {
    color: var(--text-light);
}

.main-content h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    font-size: 1.6rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.main-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.content-list li {
    color: var(--text-gray);
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}

.content-list li:before {
    content: "→";
    color: var(--accent-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.content-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--secondary-dark);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.content-cta h3 {
    color: var(--text-light);
    margin-top: 0;
    margin-bottom: 1rem;
}

.content-cta p {
    margin-bottom: 1.5rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.sidebar-widget p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 0.8rem;
}

.sidebar-widget ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sidebar-widget ul li a:hover {
    color: var(--accent-green);
    padding-left: 0.5rem;
}

.sidebar-widget .secondary-btn {
    display: block;
    text-align: center;
    margin-top: 1rem;
}

/* Responsive Internal Pages */
@media (max-width: 968px) {
    .content-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .main-content h3 {
        font-size: 1.4rem;
    }
    
    .sidebar {
        order: 2;
    }
}

/* Mobile Optimizations */
@media (max-width: 968px) {
    /* Speed up logo carousel on mobile */
    .logos-track {
        animation: scroll 30s linear infinite !important;
    }
    
    /* Fix hero heading truncation - Optimized spacing and larger font */
    .hero {
        padding: 2rem 1rem 2rem !important;
        min-height: 75vh !important;
    }
    
    .hero-content {
        gap: 1.5rem !important;
    }
    
    .hero-text {
        padding: 0.5rem 0 !important;
    }
    
    .heading-wrapper {
        min-height: 180px !important;
        display: flex !important;
        align-items: flex-start !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero h1 {
        font-size: 1.65rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        min-height: fit-content !important;
    }
    
    .hero h1 .heading-text {
        font-size: 1.65rem !important;
        display: block !important;
        word-wrap: break-word !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.6 !important;
    }
    
    .hero h1 .highlight {
        display: inline !important;
        word-wrap: break-word !important;
    }
    
    .hero h2 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .hero p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .hero-buttons a {
        width: 100% !important;
        text-align: center !important;
    }
}

/* CONTACT PAGE - COMPLETE ISOLATED STYLING */
.contact-section-redesign {
    padding: 3rem 1rem !important;
    background: #1a1a2e !important;
}

.contact-section-redesign .contact-content {
    max-width: 900px !important;
    margin: 0 auto !important;
}

.contact-section-redesign .contact-form-wrapper {
    background: #16161a !important;
    padding: 2rem 1.5rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
}

.contact-section-redesign .contact-form-wrapper h2 {
    font-size: 2rem !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    font-weight: 800 !important;
}

.contact-section-redesign .form-subtitle {
    color: #a0a0a0 !important;
    margin-bottom: 2rem !important;
    font-size: 0.95rem !important;
}

.contact-section-redesign .contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.contact-section-redesign .form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.contact-section-redesign .form-group {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
}

.contact-section-redesign .form-group label {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.95rem !important;
}

.contact-section-redesign .form-group input,
.contact-section-redesign .form-group select,
.contact-section-redesign .form-group textarea {
    padding: 1rem !important;
    background: #16161a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-family: 'Noto Sans', sans-serif !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.contact-section-redesign .form-group input:focus,
.contact-section-redesign .form-group select:focus,
.contact-section-redesign .form-group textarea:focus {
    outline: none !important;
    border-color: #16db93 !important;
    box-shadow: 0 0 0 3px rgba(22, 219, 147, 0.1) !important;
}

.contact-section-redesign .form-group textarea {
    resize: vertical !important;
    min-height: 150px !important;
}

.contact-section-redesign .submit-btn {
    width: 100% !important;
    margin-top: 0.5rem !important;
}

.contact-section-redesign .contact-info-cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    margin-top: 3rem !important;
}

.contact-section-redesign .info-card {
    background: #1a1a2e !important;
    padding: 1.5rem 1rem !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
}

.contact-section-redesign .info-card:hover {
    border-color: #16db93 !important;
    transform: translateY(-3px) !important;
}

.contact-section-redesign .info-icon {
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
}

.contact-section-redesign .info-card h3 {
    font-size: 0.9rem !important;
    color: #16db93 !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
}

.contact-section-redesign .info-card a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
}

.contact-section-redesign .info-card a:hover {
    color: #16db93 !important;
}

.contact-section-redesign .info-card p {
    color: #a0a0a0 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

/* Desktop - 2 columns */
@media (min-width: 768px) {
    .contact-section-redesign {
        padding: 5rem 2rem !important;
    }
    
    .contact-section-redesign .contact-form-wrapper {
        padding: 3rem !important;
    }
    
    .contact-section-redesign .contact-form-wrapper h2 {
        font-size: 2.5rem !important;
    }
    
    .contact-section-redesign .form-row {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .contact-section-redesign .contact-info-cards {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
/* Scroll Fade-In Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section - Accordion */
.faq-section {
    padding: 5rem 2rem;
    background: var(--secondary-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1rem;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-subtitle a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-subtitle a:hover {
    color: #1ae8a5;
    text-decoration: underline;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    background: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--accent-green);
}

.faq-accordion-button {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.faq-accordion-button:hover {
    color: var(--accent-green);
}

.faq-accordion-button span:first-child {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-green);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-accordion-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 968px) {
    .faq-container h2 {
        font-size: 2rem;
    }
    
    .faq-accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-accordion-content {
        padding: 0 1.5rem;
    }
    
    .faq-accordion-item.active .faq-accordion-content {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* Footer Logo */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 250px;
    height: auto;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
    opacity: 0.8;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

.scroll-to-top {
    cursor: pointer;
}


/* Hero Image Caption */
.hero-image-caption {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    display: block;
    width: 100%;
    padding: 0 1rem;
}

@media (max-width: 968px) {
    .hero-image-caption {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
}

/* Internal Page Styles */
.internal-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.internal-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.internal-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(13, 90, 138, 0.7));
    z-index: 2;
}

.internal-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    max-width: 1200px;
    padding: 2rem;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1ae8a5;
}

.breadcrumb span {
    color: var(--text-light);
}

.internal-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

/* Article Content */
.internal-content {
    background: var(--secondary-dark);
    padding: 5rem 2rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin: 2.5rem 0 1rem 0;
    font-weight: 700;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.content-wrapper ul {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-wrapper ul li {
    margin-bottom: 1rem;
}

.content-wrapper ul li strong {
    color: var(--accent-green);
}

.content-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.content-cta .primary-btn {
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .internal-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .internal-hero h1 {
        font-size: 2rem;
    }
    
    .internal-content {
        padding: 3rem 1.5rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .content-wrapper p,
    .content-wrapper ul {
        font-size: 1rem;
    }
}

/* Internal Page Layout - Matches Example */
.internal-page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d5a8a 100%);
    padding: 8rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.internal-page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #f5f5f5;
    z-index: 1;
}

.internal-breadcrumb {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
    padding-top: 1rem !important;
    padding-bottom: 0.5rem !important;
    color: #ffffff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 100 !important;
}

.internal-breadcrumb a {
    color: var(--accent-green) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.internal-breadcrumb a:hover {
    color: #1ae8a5 !important;
}

.internal-breadcrumb span {
    color: var(--text-light) !important;
}

.internal-page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

.internal-hero-image-container {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.internal-hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.internal-page-header h1,
.internal-breadcrumb {
    position: relative;
    z-index: 10;
}

/* Article Content Section */
.internal-article {
    background: #f5f5f5;
    padding: 2.5rem 2rem 5rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.article-content h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 700;
    line-height: 1.3;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p {
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.article-content ul {
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content ul li {
    margin-bottom: 1rem;
}

.article-content ul li strong {
    color: #1a1a2e;
    font-weight: 600;
}

.article-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.article-cta .primary-btn {
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

/* Mobile Responsive for Internal Pages */
@media (max-width: 968px) {
    .internal-page-header {
        padding: 6rem 1.5rem 1rem;
    }
    
    .internal-page-header::before {
        height: 60px;
    }
    
    .internal-page-header h1 {
        font-size: 2rem;
    }
    
    .internal-breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .internal-hero-image-container {
        padding-bottom: 1rem;
    }
    
    .internal-hero-image {
        border-radius: 12px;
    }
    
    .internal-article {
        padding: 1.5rem 1.5rem 3rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .article-content p,
    .article-content ul {
        font-size: 1rem;
    }
    
    .article-content ul {
        padding-left: 1.5rem;
    }
}


/* Dropdown Navigation */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-dark);
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 8px;
    padding: 0.5rem 0;
}

.nav-links .dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    height: 10px;
    background: transparent;
    left: 0;
    right: 0;
}

.nav-links .dropdown:hover .dropdown-content {
    display: block;
}

.nav-links .dropdown-content a {
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: background 0.2s ease;
    font-size: 0.95rem;
}

.nav-links .dropdown-content a:hover {
    background: rgba(22, 219, 147, 0.1);
    color: var(--accent-green);
}

/* Footer Styling */
footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--accent-green);
}

footer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}


/* H3 Headings - Joomstore Blue */
article h3,
.article-content h3 {
    color: #1a1a2e !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}


/* Article Content Width Fix */
.article-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

article {
    background: #f5f5f5;
}

.internal-article {
    background: #f5f5f5;
}



/* Fix blue gutters - ensure article sections have proper background */
.internal-page-section {
    background: #f5f5f5 !important;
}

.internal-article {
    background: #f5f5f5 !important;
}

body {
    background: #f5f5f5;
}

/* Ensure main content area has white/off-white background */
main {
    background: #f5f5f5;
}



/* Footer Background Fix - Dark Background */
footer {
    background: #1a1a2e !important;
    color: white !important;
}

footer * {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer h4 {
    color: white !important;
}

footer a {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer a:hover {
    color: #16DB93 !important;
}

/* CTA section before footer */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d5a8a 50%, #1a1a2e 100%) !important;
    color: white !important;
}



/* AGGRESSIVE FOOTER GAP FIX */
footer {
    margin-top: 0 !important;
    padding-top: 3rem !important;
}

.cta-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove any gaps between sections and footer */
section:last-of-type {
    margin-bottom: 0 !important;
}

article + section {
    margin-top: 0 !important;
}



/* CTA Section - Better Vertical Centering */
.cta-section {
    padding: 5rem 2rem !important;
    margin: 0 !important;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    margin-bottom: 3rem;
}


/* Case Studies Page Background Fix removed - was causing gutters on all pages */

.case-studies-header {
    
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

/* SERVICE PAGES BACKGROUND FIX - NO BLUE GUTTERS */
.internal-page-section {
    background: #f5f5f5 !important;
}

article {
    background: #f5f5f5 !important;
}

/* Ensure no gradient leaks through */
body.service-page {
    background: #f5f5f5 !important;
}

/* Case Studies Page - Blue Gradient Background */
/* Case Studies Page Body - Match gradient */
body.case-studies-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d5a8a 50%, #1a1a2e 100%);
}

/* All other pages - Off-white background */
body:not(.case-studies-page) {
    background: #f5f5f5 !important;
}

/* Homepage - Blue Gradient */
body.homepage {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d5a8a 50%, #1a1a2e 100%) !important;
}

/* CASE STUDIES PAGE - GRID AND CARDS */
.case-studies-header {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.case-studies-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: white;
}

.case-studies-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 5rem auto;
    padding: 0 2rem;
}

@media (max-width: 968px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

.case-study-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.case-study-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
    transition: background 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.case-study-card:hover::before {
    background: rgba(0, 0, 0, 0.55);
}

.case-study-tags {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.case-study-content {
    position: relative;
    z-index: 2;
    color: white;
}

.case-study-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
}

.case-study-description {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: white;
}

.read-more-btn {
    display: inline-block;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.case-study-card:hover .read-more-btn {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
}


/* CASE STUDIES VIDEO BACKGROUND */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 122, 158, 0.7);
    z-index: 1;
}

/* Make sure content is above video */
.case-studies-header,
.case-studies-grid {
    position: relative;
    z-index: 2;
}
