html, body {
    overflow-x: hidden;
}

        :root {
            --primary: #0369a1;
            --primary-light: #0ea5e9;
            --secondary: #10b981;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --white: #ffffff;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --gradient: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
        }

        
        /* --- HEADER --- */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .header-scrolled { transform: translateY(-45px); }

        .header-top {
            background: linear-gradient(
                45deg,
                rgba(255, 255, 255, 0.85),
                rgba(255, 179, 179, 0.85),
                rgba(255, 77, 77, 0.85)
            );
            padding: 10px 0;
            color: var(--white);
        }

        .header-top-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-icon { font-size: 2rem; color: #000000; }
        .logo-text {
            color: black;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.6rem;
            letter-spacing: -0.5px;
        }
        .logo-text span { color: #d61010; }

        .header-info { display: flex; gap: 25px; font-size: 0.9rem; font-weight: 500; }
        .info-item { display: flex; align-items: center; gap: 8px; }
        .info-item i { color: #ff0015; }

        /* Navigation */
        .header-main {
            background: var(--white);
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            position: relative;
        }

        /* FIXED: Centered Nav Logic */
        .nav-links {
            display: flex;
            gap: 8px;
            list-style: none;
            margin: 0 auto; /* This centers the links on desktop */
        }

        .nav-links > li { position: relative; }

        .nav-links a {
            padding: 10px 16px;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
            background: rgba(3, 105, 161, 0.06);
        }

        /* Dropdowns */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 260px;
            background: var(--white);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-radius: 12px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition);
            border-top: 3px solid var(--primary);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a { 
            padding: 12px 20px; 
            font-weight: 500; 
            border-radius: 0; 
            display: block;
            width: 100%;
        }

        /* Buttons */
        .btn-cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-cta:hover {
    background: red !important;
    color: #ffffff !important;
}

        /* FIXED: Hidden on desktop */
        .close-btn { display: none; } 
        .menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; padding: 10px; }

        /* --- MOBILE STYLES --- */
        @media (max-width: 1100px) {
            body { padding-top: 80px; }
            .header-top { display: none; }
            .header-scrolled { transform: none; }
            
            #mobileLogo { display: flex !important; }
            .menu-toggle { display: block; margin-left: auto; }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                margin: 0;
                padding: 80px 20px;
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
                transition: 0.4s ease-in-out;
                z-index: 1001;
            }

            .nav-links.active { right: 0; }
            .nav-links a { width: 100%; border-bottom: 1px solid #f1f5f9; }

            .dropdown-menu {
                position: static;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: var(--light);
                border-top: none;
                padding-left: 15px;
            }

            .dropdown.active .dropdown-menu { 
                display: block;
                animation: slideDown 0.3s ease;
            }
            
            .close-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 1.8rem;
                cursor: pointer;
                color: var(--dark);
            }
            
            .dropdown > a .fa-chevron-down {
                transition: transform 0.3s ease;
            }
            
            .dropdown.active > a .fa-chevron-down {
                transform: rotate(180deg);
            }
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ===== CSS RESET ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        :root {
            --primary-blue: #0284c7;
            --accent-red: #ef4444;
            --dark-gray: #1f2937;
            --medium-gray: #4b5563;
            --white: #ffffff;
            --light-bg: #f8fafc;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        body {
            background: var(--light-bg);
            min-height: 200vh;
            
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden !important;
            

        }

        h1, h2, h3, h4, .section-title, .hero-content h1 {
            font-family: 'Playfair Display', serif;
        }

        /* ===== PULSE BACKGROUND ===== */
        .pulse-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .pulse-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
            animation: pulse 10s infinite ease-in-out;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.3); opacity: 0.6; }
        }

        
        /* ===== ANIMATION UTILITIES ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }

        /* Card Animation */
        .card-animated {
            opacity: 0;
            transform: translateX(-120px);
            animation: slideLeft 0.8s ease-out forwards;
            animation-play-state: paused;
        }

        @keyframes slideLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .card-animated:nth-child(1) { animation-delay: 0.2s; }
        .card-animated:nth-child(2) { animation-delay: 0.4s; }
        .card-animated:nth-child(3) { animation-delay: 0.6s; }
        .card-animated:nth-child(4) { animation-delay: 0.8s; }
        .card-animated:nth-child(5) { animation-delay: 1.0s; }
        .card-animated:nth-child(6) { animation-delay: 1.2s; }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 120px;
        }

        .hero video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

         /* Mobile Hero */
        @media (max-width: 767px) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0;   /* remove extra space */
    }
}

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            text-align: center;
            max-width: 90%;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #ddd;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .btn-get-in-touch {
            background: #0284c7;
            color: #ffffff;
            padding: 14px 40px;
            font-weight: 700;
            border-radius: 30px;
            text-transform: uppercase;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-get-in-touch:hover {
           background: #ef4444;
            color: white;
        }

        /* Mobile Hero Text */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .btn-get-in-touch {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.75rem;
            }
            .hero-content p {
                font-size: 0.9rem;
            }
            .hero {
                height: 60vh;
            }
        }

        /* ===== SECTIONS COMMON STYLES ===== */
        .content-section, .features-section, .process-section, .team-section, .faq-section, .blog-section {
            padding: 5rem 0;
        }

        @media (max-width: 768px) {
            .content-section, .features-section, .process-section, .team-section, .faq-section, .blog-section {
                padding: 3rem 0;
            }
        }

        /* ===== ABOUT SECTION ===== */
        .about-wrapper {
            display: flex;
            align-items: center;
            gap: 160px;
            padding: 5rem 0;
        }

        @media (max-width: 1199px) {
            .about-wrapper {
                gap: 80px;
            }
        }

        @media (max-width: 991px) {
            .about-wrapper {
                flex-direction: column;
                gap: 40px;
                padding: 3rem 0;
            }
        }

        .subtitle {
            color: #925C98;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        h2 {
            font-weight: 900;
            color: #ef4444;
            font-size: 2.3rem;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        @media (max-width: 768px) {
            h2 {
                font-size: 1.8rem;
            }
        }

        .btn-about {
            background: #0284c7;
            color: #fff;
            font-weight: 700;
            padding: 12px 26px;
            border-radius: 30px;
            border: none;
            margin-top: 20px;
            transition: background-color 0.3s;
            cursor: pointer;
        }

        .btn-about:hover {
            background: #ef4444;
            color: #fff;
        }

        .image-wrapper {
            position: relative;
            width: 50%;
        }

        @media (max-width: 991px) {
            .image-wrapper {
                width: 100%;
                margin-top: 2rem;
            }
        }

        .main-image {
            width: 100%;
            height: 550px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .main-image {
                height: 400px;
            }
        }

        .testimonial-card {
            position: absolute;
            left: -140px;
            top: 50%;
            transform: translateY(-50%);
            width: 250px;
            background: white;
            padding: 35px;
            box-shadow: var(--shadow);
            border-radius: 10px;
        }

        @media (max-width: 1199px) {
            .testimonial-card {
                left: -100px;
            }
        }

        @media (max-width: 991px) {
            .testimonial-card {
                position: relative;
                left: 0;
                top: 0;
                transform: none;
                margin: -70px auto 0 auto;
                width: 80%;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .testimonial-card {
                width: 100%;
                padding: 25px;
            }
        }

        .quote {
            color: #925C98;
            font-size: 1rem;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .author {
            font-weight: 700;
            color: #ef4444;
            margin-top: 15px;
        }

        /* ===== VIDEO SECTION ===== */
        .video-section {
            background-image: url('https://i.pinimg.com/1200x/1f/44/e7/1f44e7a17893ad67bd604a4854c8a173.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: #fff;
            position: relative;
        }

        @media (max-width: 768px) {
            .video-section {
                padding: 60px 0;
            }
        }

        .video-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(255, 255, 255, 0.85),
                rgba(255, 179, 179, 0.85),
                rgba(255, 77, 77, 0.85)
            );
            z-index: 1;
        }

        .video-section * {
            position: relative;
            z-index: 2;
        }

        .video-title {
            font-weight: 700;
            color: #fff;
            font-size: 2.3rem;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        @media (max-width: 768px) {
            .video-title {
                font-size: 1.8rem;
            }
        }

        .video-text {
            font-size: 1.3rem;
            line-height: 1.7;
            max-width: 550px;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .video-text {
                font-size: 1rem;
            }
        }

        .btn-discover {
            background: #0284c7;
            color: #fff;
            padding: 0.45rem 1.2rem;
            font-weight: 600;
            font-size: 0.85rem;
            border-radius: 20px;
            text-transform: uppercase;
            border: none;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-discover:hover {
            background: #ef4444;
            color: white;
        }

        .play-button-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .play-button {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            position: relative;
            text-decoration: none;
        }

        .play-button i {
            color: #fff;
            font-size: 1.5rem;
            transform: translateX(2px);
        }

        .play-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(255,255,255,0.9);
            border-radius: 50%;
            animation: pulse-ring 2s infinite;
        }

        @keyframes pulse-ring {
            to { transform: scale(1.5); opacity: 0; }
        }

        /* ===== SERVICES SECTION ===== */
        .service-card {
            background-color: #d8e7ec;
            color: #333;
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0,0,0,0.05);
            height: 100%;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            margin-bottom: 30px;
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .service-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(
                120deg,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.35) 50%,
                rgba(255,255,255,0) 100%
            );
            transform: skewX(-25deg);
            transition: 0.6s;
        }

        .service-card:hover::after {
            left: 140%;
        }

        .card-img-top {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .card-body {
            padding: 2rem 1.5rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1C2B36;
            margin-bottom: 0.75rem;
        }

        @media (max-width: 768px) {
            .card-title {
                font-size: 1.3rem;
            }
        }

        .card-text {
            color: black;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .learn-more {
            color: #ef4444;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }

        .learn-more:hover {
            color: #1e93f3;
        }

        .main-title {
            font-weight: 900;
            color: #ef4444;
            font-size: 2.3rem;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .header-text {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            text-align: right;
        }

        @media (max-width: 991px) {
            .header-text {
                text-align: center;
            }
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            background: linear-gradient(45deg, #0057e7, #ff0000);
            color: #ffffff;
            padding: 3.5rem 0;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin: 2rem 0;
        }

        @media (max-width: 768px) {
            .stats-section {
                padding: 2rem 0;
                margin: 1rem 0;
            }
        }

        .stats-background-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://via.placeholder.com/1920x200/FFFFFF/F0F0F0?text=Blurred+Flower+Texture');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            filter: blur(5px);
            z-index: 1;
        }

        .stats-container {
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 1rem 0;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .stat-number {
                font-size: 2.5rem;
            }
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.9;
            padding: 0 5px;
        }

        /* ===== FEATURES SECTION ===== */
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-subtitle {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ef4444;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-weight: 900;
            color: #ef4444;
            font-size: 2.3rem;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
        }

        .title-divider {
            width: 40px;
            height: 2px;
            background-color: #0057e7;
            margin: 0.5rem auto 0;
        }

        .feature-card {
            background: linear-gradient(45deg, #acc5ee, #eb9c9c);
            padding: 2.5rem 2rem;
            text-align: center;
            border-radius: 0.5rem;
            height: 100%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0 15px 30px 15px;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .feature-card {
                margin: 0 5px 20px 5px;
            }
        }

        .feature-card.highlight {
            background: linear-gradient(45deg, #0057e7, #ff0000);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            padding: 3.5rem 2rem;
        }

        @media (max-width: 768px) {
            .feature-card.highlight {
                transform: none;
            }
        }

        .feature-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .feature-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(
                120deg,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.35) 50%,
                rgba(255,255,255,0) 100%
            );
            transform: skewX(-25deg);
            transition: 0.6s;
        }

        .feature-card:hover::after {
            left: 140%;
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #0057e7;
        }

        .feature-card.highlight i,
        .feature-card.highlight h4,
        .feature-card.highlight p {
            color: white;
        }

        .highlight .learn-more {
            color: white;
            border-bottom: 1px solid white;
            padding-bottom: 2px;
        }

        .highlight .learn-more:hover {
            color: #f0f0f0;
        }

        /* ===== PROCESS SECTION ===== */
        .step-card {
            background-color: #d8e7ec;
            padding: 2rem 1.5rem;
            border-radius: 0.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0,0,0,0.03);
            text-align: left;
            transition: transform 0.3s;
            margin-bottom: 20px;
        }

        .step-card:hover {
            transform: translateY(-5px);
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><path d="M40 0v80M0 40h80" stroke="%23e9f5f5" stroke-width="1.5" opacity="0.8"/></svg>');
            opacity: 0.7;
            pointer-events: none;
            z-index: 1;
        }

        .step-content {
            position: relative;
            z-index: 2;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
            padding-right: 5rem;
            position: relative;
        }

        .step-text {
            font-size: 0.95rem;
        }

        .step-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: #0284c7;
            color: white;
            padding: 0.5rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            border-bottom-left-radius: 0.5rem;
            z-index: 3;
        }

        /* ===== TESTIMONIAL SECTION ===== */
        .testimonial-section {
            background: linear-gradient(45deg, #ffffff, #ffb3b3, #ff4d4d);
            padding: 80px 0;
            display: flex;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .testimonial-section {
                padding: 50px 15px;
            }
        }

        .testimonial-container {
            max-width: 1100px;
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(18px);
            box-shadow: 0 8px 40px rgba(0,0,0,0.12);
            border-radius: 22px;
            padding: 3rem 2.5rem;
            width: 100%;
        }

        @media (max-width: 768px) {
            .testimonial-container {
                padding: 2rem 1.5rem;
            }
        }

        .testimonial-image-col {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-image {
            max-height: 50vh;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
            transform: translateX(-10px);
        }

        @media (max-width: 991px) {
            .testimonial-image {
                max-height: 250px;
                transform: none;
                margin-bottom: 30px;
            }
        }

        .testimonial-content-col {
            padding-left: 3rem;
            position: relative;
        }

        @media (max-width: 991px) {
            .testimonial-content-col {
                padding-left: 1rem;
                margin-top: 1rem;
            }
        }

        .quote-icon {
            font-size: 6rem;
            font-weight: 900;
            color: rgba(0,0,0,0.15);
            position: absolute;
            top: -20px;
            left: -10px;
        }

        .stats-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }

        .small-text {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 1rem;
        }

        .testimonial-quote {
            font-size: 1.2rem;
            font-style: italic;
            color: #444;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }

        @media (max-width: 768px) {
            .testimonial-quote {
                font-size: 1rem;
            }
        }

        .author-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 2px;
        }

        .author-title {
            font-size: 0.9rem;
            color: #777;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeUp 1s ease forwards;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== TEAM SECTION ===== */
        .team-card {
            background-color: white;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
            transition: transform 0.3s;
            margin-bottom: 30px;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .member-image-wrapper {
            position: relative;
            overflow: hidden;
            display: block;
            height: 350px;
        }

        @media (max-width: 768px) {
            .member-image-wrapper {
                height: 300px;
            }
        }

        .member-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .team-card:hover .member-image {
            transform: scale(1.05);
        }

        .member-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.15),
                rgba(0, 0, 0, 0.75)
            );
            opacity: 0;
            transition: opacity 0.35s ease;
            z-index: 2;
        }

        .text-overlay {
            position: absolute;
            inset: 0;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: all 0.45s ease;
        }

        .text-overlay p {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: #ffffff;
            font-size: 15px;
            line-height: 1.6;
            font-weight: 500;
            padding: 18px 20px;
            border-radius: 16px;
            max-width: 90%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
            text-align: center;
        }

        .team-card:hover .member-image-wrapper::before {
            opacity: 1;
        }

        .team-card:hover .text-overlay {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .member-info-banner {
            background: #ef4444;
            color: white;
            text-align: center;
            padding: 1rem 0.5rem;
            position: relative;
            bottom: 0;
            left: 0;
            width: 100%;
        }

        .team-card:hover .member-info-banner {
            background: #1e93f3;
        }

        .member-name {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        .member-title {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* ===== FAQ SECTION ===== */
        .image-container {
            height: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .faq-image {
            width: 100%;
            height: 80%;
            object-fit: cover;
            border-radius: 0.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .accordion-flush {
            border-radius: 0;
            border-top: 1px solid #e9ecef;
        }

        .accordion-item {
            border: none;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .accordion-button {
            background-color: transparent;
            color: #ef4444;
            font-weight: 600;
            padding: 1.25rem 1.5rem;
            box-shadow: none;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 0 !important;
        }

        @media (max-width: 768px) {
            .accordion-button {
                padding: 1rem 1.25rem;
                font-size: 0.95rem;
            }
        }

        .accordion-button:hover {
            background: linear-gradient(45deg, #96b8ee, #f1a2a2);
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(45deg, #96b8ee, #f1a2a2);
            color: white;
            padding-bottom: 1.25rem;
            box-shadow: 0 4px 12px rgba(28, 124, 140, 0.2);
        }

        .accordion-button:focus {
            outline: none;
            box-shadow: none;
        }

        .accordion-button::after {
            background-image: none !important;
            font-family: "Font Awesome 6 Free";
            content: "\f078";
            font-weight: 900;
            font-size: 0.9rem;
            width: auto;
            height: auto;
            transform: rotate(0deg);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: #ef4444;
            position: absolute;
            right: 1.5rem;
        }

        @media (max-width: 768px) {
            .accordion-button::after {
                right: 1.25rem;
            }
        }

        .accordion-button:not(.collapsed)::after {
            content: "\f077";
            transform: rotate(0deg);
            color: white;
        }

        .accordion-button:hover::after {
            transform: scale(1.2);
        }

        .accordion-button:not(.collapsed):hover::after {
            transform: scale(1.2);
        }

        .accordion-body {
            background-color: white;
            color: #6c757d;
            padding: 1.5rem 1.5rem 2rem;
            font-size: 0.95rem;
            line-height: 1.7;
            animation: fadeIn 0.4s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== BLOG SECTION ===== */
        .blog-section .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            text-align: left;
        }

        @media (max-width: 991px) {
            .blog-section .section-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        }

        .blog-section .section-title {
            margin-bottom: 0;
        }

        .btn-more-article {
            background: #0284c7;
            color: white;
            padding: 10px 20px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 30px;
            transition: background-color 0.3s;
            display: inline-block;
        }

        .btn-more-article:hover {
            background: #ef4444;
            color: white;
        }

        .blog-post {
            margin-bottom: 2rem;
        }

        .post-image-container {
            height: 100%;
            overflow: hidden;
        }

        .post-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 0.25rem;
            transition: transform 0.3s ease;
        }

        .post-image:hover {
            transform: scale(1.03);
        }

        .post-content {
            padding-left: 1.5rem;
        }

        @media (max-width: 768px) {
            .post-content {
                padding-left: 0;
                padding-top: 1rem;
            }
            
            .blog-post .row {
                flex-direction: column;
            }
            
            .blog-post .col-5,
            .blog-post .col-7 {
                width: 100%;
            }
        }

        .post-title a {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ef4444;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .post-title a:hover {
            color: red;
        }

        .post-meta {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 0.75rem;
            display: block;
        }

        .post-meta span {
            margin-right: 10px;
        }

        .post-meta i {
            margin-right: 5px;
        }

        .post-excerpt {
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
            color: #6c757d;
        }

        .read-more-link {
            font-weight: 600;
            text-decoration: none;
            color: #ef4444;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .read-more-link:hover {
            color: #1e93f3;
        }

        /* ===== FOOTER ===== */
        .main-footer {
            background: linear-gradient(45deg, #0284c7, #1e93f3);
            color: white;
            padding-top: 5rem;
            font-size: 0.95rem;
            border-radius: 70px 70px 0 0;
        }

        @media (max-width: 768px) {
            .main-footer {
                border-radius: 50px 50px 0 0;
                padding-top: 3rem;
            }
        }

        .footer-logo-col {
            padding-right: 3rem;
        }

        @media (max-width: 768px) {
            .footer-logo-col {
                padding-right: 0;
                margin-bottom: 2rem;
            }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .footer-links h5,
        .footer-contact h5 {
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links ul li {
            margin-bottom: 0.5rem;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links ul li a:hover {
            color: #ffffff;
        }

        .footer-contact a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.2s ease;
            display: block;
            margin-bottom: 5px;
        }

        .footer-contact a:hover {
            color: #ffffff;
        }

        .footer-contact p {
            color: rgba(255, 255, 255, 0.8);
            margin-top: 10px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .social-icons a:hover {
            color: #ffffff;
            border-color: #ffffff;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
            margin-top: 3rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        }

        /* ===== GLANCE SLIDER ===== */
        .glance-slider-section {
            padding: 40px;
        }

        @media (max-width: 768px) {
            .glance-slider-section {
                padding: 20px;
            }
        }

        .glance-card {
            display: flex;
            background: #0077b6;
            border-radius: 90px 0 90px 0;
            overflow: hidden;
            height: 330px;
        }

        @media (max-width: 991px) {
            .glance-card {
                flex-direction: column;
                height: auto;
                border-radius: 50px 0 50px 0;
            }
        }

        .glance-left {
            width: 60%;
            position: relative;
        }

        @media (max-width: 991px) {
            .glance-left {
                width: 100%;
                height: 250px;
            }
        }

        .glance-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .glance-left-text {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: white;
        }

        .glance-left-text h2 {
            font-size: 34px;
            font-weight: 700;
            line-height: 1.2;
            color: white;
        }

        @media (max-width: 576px) {
            .glance-left-text h2 {
                font-size: 24px;
            }
            
            .glance-left-text {
                bottom: 15px;
                left: 15px;
            }
        }

        .glance-right {
            width: 40%;
            background: #0284c7;
            padding: 40px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (max-width: 991px) {
            .glance-right {
                width: 100%;
                padding: 30px;
            }
        }

        .glance-stat h3 {
            font-size: 44px;
            margin: 0;
            font-weight: 700;
            border-bottom: 3px solid rgba(255,255,255,0.4);
            display: inline-block;
            padding-bottom: 5px;
        }

        @media (max-width: 576px) {
            .glance-stat h3 {
                font-size: 34px;
            }
        }

        .glance-stat p {
            font-size: 16px;
            opacity: .9;
            margin-top: 6px;
        }

        .inner-slider-wrapper {
            height: 100px;
            margin-top: 20px;
            overflow: hidden;
        }

        /* ===== SOCIAL BAR ===== */
        .social-bar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border-radius: 12px 0 0 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .social-bar {
                display: none; /* Hide on mobile for better UX */
            }
        }

        .social-bar a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            color: #fff;
            font-weight: 500;
            font-size: 15px;
            text-decoration: none;
            background: #0059ff;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-bar a.facebook:hover {
            background: #1877f2;
        }

        .social-bar a.instagram:hover {
            background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
        }

        .social-bar a.linkedin:hover {
            background: #0077b5;
        }

        .social-bar a.youtube:hover {
            background: #ff0000;
        }

        /* ===== RED & WHITE THEME POPUP FORM ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    z-index: 9999;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(145deg, #ffffff 0%, #fff5f5 100%);
    padding: 0;
    width: 420px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(220, 0, 0, 0.25),
                0 10px 30px rgba(0, 0, 0, 0.22);
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    overflow: hidden;
    border: 2px solid #ff4444;
}

.popup.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Popup Header with Red Theme */
.popup-header {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    padding: 30px 40px 25px;
    text-align: center;
    position: relative;
    border-bottom: 3px solid #ff3333;
}

.popup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.popup-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.popup-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
}

/* Form Content */
.popup-content {
    padding: 35px 40px 40px;
}

.close-btn-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.close-btn-popup:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    transform: rotate(90deg);
    color: #fff;
}

.input-group {
    position: relative;
    margin-bottom: 28px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    resize: none;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.input-group textarea {
    height: 110px;
    font-family: inherit;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #ff4444;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.2);
    background: #fff9f9;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #aaa;
    font-weight: 400;
}

.input-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 16px;
    color: #888;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #fff;
    padding: 0 8px;
    border-radius: 4px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 13px;
    color: #ff4444;
    font-weight: 700;
    background: linear-gradient(to bottom, #fff 50%, #fff9f9 50%);
    transform: translateY(0);
}

/* Floating label animation */
.input-group.focused label {
    top: -10px;
    font-size: 13px;
    color: #ff4444;
    font-weight: 700;
    background: linear-gradient(to bottom, #fff 50%, #fff9f9 50%);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #cc0000 0%, #a30000 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.submit-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 60px;
    color: #00cc66;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.success-message h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.success-message p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .popup {
        width: 90%;
        max-width: 380px;
        margin: 20px;
        transform: translate(-50%, -50%) scale(0.9) !important;
    }
    
    .popup.show {
        transform: translate(-50%, -50%) scale(1) !important;
    }
    
    .popup-header {
        padding: 25px 30px 20px;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .popup-content {
        padding: 25px 30px 30px;
    }
    
    .input-group {
        margin-bottom: 24px;
    }
    
    .input-group input,
    .input-group textarea {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .input-group label {
        font-size: 15px;
        left: 18px;
        top: 14px;
    }
    
    .input-group input:focus + label,
    .input-group input:not(:placeholder-shown) + label,
    .input-group textarea:focus + label,
    .input-group textarea:not(:placeholder-shown) + label {
        top: -10px;
        font-size: 12px;
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 15px;
    }
    
    .close-btn-popup {
        width: 32px;
        height: 32px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .popup {
        width: 95%;
        max-width: 340px;
        border-radius: 16px;
    }
    
    .popup-header {
        padding: 20px 25px 15px;
    }
    
    .popup-title {
        font-size: 22px;
    }
    
    .popup-content {
        padding: 20px 25px 25px;
    }
    
    .input-group {
        margin-bottom: 20px;
    }
    
    .input-group input,
    .input-group textarea {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 14px;
        border-radius: 10px;
    }
}

/* For very small devices */
@media (max-width: 360px) {
    .popup {
        width: 98%;
        max-width: 320px;
    }
    
    .popup-header {
        padding: 18px 20px 12px;
    }
    
    .popup-content {
        padding: 18px 20px 22px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .popup {
        max-height: 90vh;
        overflow-y: auto;
        transform: translate(-50%, -50%) scale(0.8) !important;
    }
    
    .popup.show {
        transform: translate(-50%, -50%) scale(0.9) !important;
    }
    
    .popup-header {
        padding: 15px 30px 12px;
    }
    
    .popup-content {
        padding: 20px 30px;
    }
    
    .input-group {
        margin-bottom: 15px;
    }
    
    .input-group textarea {
        height: 80px;
    }
}

        /* Ensure images don't overflow on mobile */
        img {
            max-width: 100%;
            height: auto;
        }

/* ===== DESKTOP DROPDOWN FIX ===== */
@media (min-width: 1101px) {
    .dropdown.hover-active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Ensure dropdown menu stays visible when hovering over it */
    .dropdown-menu:hover {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    /* Remove any mobile-specific dropdown styles on desktop */
    .dropdown-menu {
        display: block !important;
        position: absolute !important;
        z-index: 1001;
    }
}

/* Fix for dropdown transition delay */
.dropdown-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
}

/* Ensure dropdown links are properly styled on desktop */
@media (min-width: 1101px) {
    .dropdown-menu a {
        padding: 12px 20px !important;
        font-weight: 500 !important;
        border-radius: 0 !important;
        display: block !important;
        width: 100% !important;
        transition: background-color 0.2s ease !important;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(3, 105, 161, 0.06) !important;
        color: var(--primary) !important;
    }
}
  