
    .modern-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        /* Updated gradient background to match desktop */
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        /* keep slight separation/shadow to lift header above content */
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid rgba(0,0,0,0.04);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modern-header.scrolled {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        background: linear-gradient(135deg, rgba(79, 172, 254, 0.95) 0%, rgba(0, 242, 254, 0.95) 100%);
    }

    .navbar-premium {
       /*  padding: 1rem 0; */
        transition: all 0.3s ease;
        /* ensure the visible navbar block uses the header's white */
        background: transparent;
    }

    .modern-header.scrolled .navbar-premium {
        padding: 0.75rem 0;
    }

    /* Brand Logo */
    .navbar-brand-premium {
        display: flex;
        align-items: center;
        padding: 0;
        margin-right: 2rem;
        transition: all 0.3s ease;
    }

    .navbar-brand-premium:hover {
        transform: scale(1.05);
    }

    .brand-logo-img {
        width: 300px;
        height: auto;
        max-width: 45vw;
        transition: all 0.3s ease;
    }

    .modern-header.scrolled .brand-logo-img {
        width: 180px;
    }

    /* Mobile Hamburger Toggle */
    .navbar-toggler-premium {
        border: none;
        padding: 0.5rem;
        background: transparent;
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
    }

    .navbar-toggler-premium:focus {
        outline: none;
        box-shadow: none;
    }

    .hamburger-line {
        width: 28px;
        height: 3px;
        background: #ffffff;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    /* Hamburger Animation */
    .navbar-toggler-premium[aria-expanded="true"] .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .navbar-toggler-premium[aria-expanded="true"] .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .navbar-toggler-premium[aria-expanded="true"] .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    /* Navigation Menu */
    .navbar-nav-premium {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-item-premium {
        position: relative;
    }

    .nav-link-premium {
        display: flex;
        align-items: center;
        padding: 0.75rem 1.25rem;
        color: #ffffff;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .nav-link-premium i {
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .nav-link-premium::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #198754, #20c997);
        transform: translateX(-50%);
        border-radius: 3px 3px 0 0;
        transition: width 0.3s ease;
    }

    .nav-link-premium:hover,
    .nav-link-premium.active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-link-premium:hover::before,
    .nav-link-premium.active::before {
        width: 80%;
    }

    .nav-link-premium:hover i {
        transform: scale(1.1);
    }

    /* Dropdown Styles */
    .dropdown-premium {
        position: relative;
    }

    .dropdown-toggle-premium {
        cursor: pointer;
    }

    .chevron-icon {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
    }

    .dropdown-premium.show .chevron-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu-premium {
        position: absolute;
        top: calc(100% + 1rem);
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        min-width: 340px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.05);
        padding: 1rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        list-style: none;
        z-index: 1000;
        margin: 0;
    }

    /* Standard dropdown menu styling for About and other simple dropdowns */
    .dropdown-menu {
        background: white !important;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.05);
        padding: 0.75rem 0;
        margin-top: 0.5rem;
        z-index: 1000;
        min-width: 200px;
    }

    /* Desktop-specific dropdown overrides */
    @media (min-width: 992px) {
        .dropdown-menu {
            background: white !important;
            border: 1px solid rgba(0, 0, 0, 0.05) !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
            padding: 0.75rem 0 !important;
        }
        
        /* Override white text for desktop dropdown items with higher specificity */
        .navbar-premium .navbar-collapse .dropdown-menu .dropdown-item,
        .navbar-premium .navbar-collapse .dropdown-menu .dropdown-item-premium {
            color: #1a1a1a !important;
            background: transparent !important;
        }
        
        .navbar-premium .navbar-collapse .dropdown-menu .dropdown-item:hover,
        .navbar-premium .navbar-collapse .dropdown-menu .dropdown-item-premium:hover {
            background: rgba(79, 172, 254, 0.1) !important;
            color: #4facfe !important;
        }
    }

    .dropdown-item {
        display: block;
        padding: 0.75rem 1.5rem;
        color: #1a1a1a !important;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        text-decoration: none;
        width: 100%;
        background: transparent;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(79, 172, 254, 0.1) !important;
        color: #4facfe !important;
        text-decoration: none;
    }

    /* Ensure all dropdown items are visible with dark text */
    .dropdown-menu .dropdown-item {
        color: #1a1a1a !important;
        font-size: 0.95rem;
        background: transparent !important;
    }

    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus {
        background: rgba(79, 172, 254, 0.1) !important;
        color: #4facfe !important;
    }

    .dropdown-premium.show .dropdown-menu-premium {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-item-premium,
    .dropdown-item {
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-bottom: 0.5rem;
        border-radius: 12px;
        background: white;
        color: #2d3748;
    }

    .dropdown-item-premium:last-child,
    .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .dropdown-item-wrapper {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .dropdown-item-premium:hover .dropdown-item-wrapper {
        background: rgba(255, 255, 255, 0.95);
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .dropdown-item-premium:hover .dropdown-item-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .gradient-green-bg {
        background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    }

    .gradient-purple-bg {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .dropdown-item-content {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .dropdown-item-title {
        font-weight: 700;
        color: #1a1a1a;
        font-size: 1rem;
    }

    .dropdown-item-desc {
        font-size: 0.8rem;
        color: #4a5568;
    }

    /* Override Bootstrap active states for dropdown items */
    .dropdown-item.active,
    .dropdown-item:active {
        background: rgba(255, 255, 255, 0.98) !important;
        color: #1a1a1a !important;
    }

    .dropdown-item.active .dropdown-item-wrapper,
    .dropdown-item:active .dropdown-item-wrapper {
        background: rgba(79, 172, 254, 0.1) !important;
        border: 1px solid rgba(79, 172, 254, 0.3) !important;
    }

    /* CTA Button */
    .cta-item {
        margin-left: 0.5rem;
    }

    .btn-cta-premium {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #198754 0%, #20c997 100%);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 0.875rem 2rem;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 24px rgba(25, 135, 84, 0.3);
    }

    .btn-cta-premium:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(25, 135, 84, 0.4);
    }

    .btn-cta-premium:active {
        transform: translateY(0);
    }

    .btn-cta-icon {
        display: flex;
        align-items: center;
        font-size: 1.1rem;
    }

    .btn-cta-text {
        position: relative;
        z-index: 2;
    }

    .btn-cta-shine {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
        transform: rotate(45deg);
        animation: shine-effect 3s infinite;
    }

    @keyframes shine-effect {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    /* ========================================
       MOBILE RESPONSIVE STYLES
    ======================================== */
    
    @media (max-width: 991px) {
        .navbar-premium {
            padding: 0.75rem 0;
        }

        .navbar-collapse {
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.3) 0%, rgba(0, 242, 254, 0.3) 100%);
            margin-top: 1rem;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navbar-nav-premium {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link-premium {
            justify-content: flex-start;
            padding: 1rem 1.25rem;
        }

        .dropdown-menu-premium {
           /* position: static;*/
            transform: none;
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(0, 242, 254, 0.2) 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            margin-top: 0.5rem;
            min-width: 100%;
        }

        .dropdown-premium.show .dropdown-menu-premium {
            transform: none;
        }

        .btn-cta-premium {
            width: 100%;
            justify-content: center;
            margin-top: 0.5rem;
        }

        .cta-item {
            margin-left: 0;
        }

        /* Mobile Menu Overlay */
        .navbar-collapse.show {
            max-height: 80vh;
            overflow-y: auto;
        }

        /* Smooth scrollbar for mobile menu */
        .navbar-collapse::-webkit-scrollbar {
            width: 4px;
        }

        .navbar-collapse::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .navbar-collapse::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.5);
            border-radius: 10px;
        }
    }

    @media (max-width: 576px) {
        .navbar-collapse {
            /* make sure the expanded mobile menu uses lighter gradient */
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.25) 0%, rgba(0, 242, 254, 0.25) 100%) !important;
            margin-top: 0.75rem;
            padding: 1rem;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: slideDown 0.22s ease;
        }
        .brand-logo-img {
            width: 150px;
        }

        .modern-header.scrolled .brand-logo-img {
            width: 140px;
        }

        .btn-cta-premium {
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
        }
        
        /* Mobile Typography Improvements */
        .nav-link-premium {
            font-size: 1rem !important;
            padding: 1rem 1.25rem;
            line-height: 1.5;
        }

        .dropdown-item-wrapper {
            padding: 1rem;
        }

        .dropdown-item-title {
            font-size: 1rem;
            line-height: 1.4;
        }

        .dropdown-item-desc {
            font-size: 0.85rem;
            line-height: 1.3;
        }
        
        /* Fix dropdown active states for small mobile */
        .dropdown-item.active,
        .dropdown-item:active {
            background: rgba(255, 255, 255, 0.98) !important;
            color: #1a1a1a !important;
        }
        
        .dropdown-item.active .dropdown-item-wrapper,
        .dropdown-item:active .dropdown-item-wrapper {
            background: rgba(79, 172, 254, 0.1) !important;
            border: 1px solid rgba(79, 172, 254, 0.3) !important;
        }
    }
    
    @media (max-width: 380px) {
        .nav-link-premium {
            font-size: 1rem !important;
            padding: 1rem 1.25rem;
            line-height: 1.5;
        }

        .dropdown-item-wrapper {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.95) !important;
            margin-bottom: 0.5rem !important;
            border: 1px solid rgba(255, 255, 255, 0.4) !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        }

        .dropdown-item-icon {
            width: 45px;
            height: 45px;
            font-size: 1.25rem;
        }

        .dropdown-item-title {
            font-size: 1rem;
            line-height: 1.4;
        }

        .dropdown-item-desc {
            font-size: 0.85rem;
            line-height: 1.3;
        }
        
        /* Fix dropdown active states for extra small mobile */
        .dropdown-item.active,
        .dropdown-item:active {
            background: rgba(255, 255, 255, 0.98) !important;
            color: #1a1a1a !important;
        }
        
        .dropdown-item.active .dropdown-item-wrapper,
        .dropdown-item:active .dropdown-item-wrapper {
            background: rgba(79, 172, 254, 0.1) !important;
            border: 1px solid rgba(79, 172, 254, 0.3) !important;
        }
    }

    /* ========================================
       ACCESSIBILITY IMPROVEMENTS
    ======================================== */
    
    .nav-link-premium:focus,
    .btn-cta-premium:focus,
    .navbar-toggler-premium:focus {
        outline: 2px solid #198754;
        outline-offset: 2px;
    }

    /* Dark mode support (optional) */
    @media (prefers-color-scheme: dark) {
        .modern-header {
            background: rgba(26, 32, 44, 0.98);
        }

        .navbar-collapse {
            background: #1a202c;
        }

        .nav-link-premium {
            color: #e2e8f0;
        }

        .dropdown-menu-premium {
            background: #1a202c;
            border-color: rgba(255, 255, 255, 0.1);
        }

        .dropdown-item-title {
            color: #e2e8f0;
        }

        .dropdown-item-desc {
            color: #a0aec0;
        }
    }

    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }

/* ========================================
   MOBILE TYPOGRAPHY OPTIMIZATION
======================================== */

/* Base mobile improvements */
@media (max-width: 991px) {
    /* Headings optimization */
    h1, .main-title, .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    h2, .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3, .feature-heading {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    /* Body text improvements */
    p, .lead-text, .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Navigation improvements */
    .nav-link-premium {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 1rem 1.5rem;
    }
    
    /* Button improvements */
    .btn-cta-premium, .btn-primary-custom {
        font-size: 1rem;
        line-height: 1.4;
        min-height: 44px;
        padding: 0.875rem 2rem;
    }
    
    /* Card content improvements */
    .feature-card-premium .feature-heading {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .feature-card-premium .feature-desc {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    /* Enhanced mobile typography */
    .welcome-text, .brand-gradient {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .product-main-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .product-main-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Feature list improvements */
    .feature-list-item {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Modal typography */
    .modal-left-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .modal-left-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Form improvements */
    .premium-form-input {
        font-size: 1.1rem;
        line-height: 1.5;
        min-height: 44px;
    }
    
    .premium-form-label {
        font-size: 1rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    /* Maximum readability for small screens */
    .top-badge, .section-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }
    
    .main-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .lead-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Team member cards */
    .member-name {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .member-position {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Trust indicators */
    .trust-item span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}




      .welcome-section-modern {
        padding: 8rem 0 6rem;
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    }

    .welcome-bg-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        overflow: hidden;
    }

    .welcome-gradient-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 60%);
    }

    .floating-circle {
        position: absolute;
        border-radius: 50%;
        opacity: 0.15;
        animation: float-smooth 20s ease-in-out infinite;
    }

    .circle-1 {
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        top: 10%;
        left: 10%;
    }

    .circle-2 {
        width: 350px;
        height: 350px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        bottom: 10%;
        right: 10%;
        animation-delay: -10s;
    }

    .grid-pattern {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.02;
        background-image: repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(0,0,0,.1) 35px, rgba(0,0,0,.1) 36px);
    }

    @keyframes float-smooth {
        0%, 100% { transform: translate(0, 0) translateZ(0); }
        33% { transform: translate(30px, -40px) translateZ(0); }
        66% { transform: translate(-20px, 20px) translateZ(0); }
    }

    .top-badge {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 0.7rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    }

    .main-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.2;
    }

    .welcome-text {
        color: #1a1a1a;
    }

    .brand-gradient {
        background: linear-gradient(135deg, #198754 0%, #20c997 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .lead-text {
        font-size: 1.15rem;
        color: #4a5568;
        line-height: 1.8;
    }

    .highlight-green {
        color: #198754;
        font-weight: 700;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(25, 135, 84, 0.1);
        color: #198754;
        padding: 0.6rem 1.5rem;
        border-radius: 50px;
        font-weight: 700;
        border: 2px dashed #198754;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        color: #1a1a1a;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #6c757d;
        /* max-width: 800px; */
        line-height: 1.7;
    }

    /* ========================================
       FEATURES SECTION
    ======================================== */
    .features-section-modern {
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    }

    .feature-card-premium {
        background: white;
        border-radius: 24px;
        padding: 2.5rem 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        border: 2px solid transparent;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-card-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #198754, #20c997);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .feature-card-premium:hover {
        transform: translateY(-8px) translateZ(0);
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        border-color: rgba(25, 135, 84, 0.2);
    }

    .feature-card-premium:hover::before {
        transform: scaleX(1);
    }

    .feature-icon-box {
        position: relative;
        width: fit-content;
        margin-bottom: 1.5rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        position: relative;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .feature-card-premium:hover .icon-wrapper {
        transform: scale(1.1) rotate(5deg) translateZ(0);
    }

    .gradient-bg-1 { background: linear-gradient(135deg, #198754 0%, #20c997 100%); }
    .gradient-bg-2 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
    .gradient-bg-3 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
    .gradient-bg-4 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
    .gradient-bg-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
    .gradient-bg-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
    .gradient-bg-7 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }

    .icon-glow {
        position: absolute;
        width: 80px;
        height: 80px;
        border-radius: 20px;
        top: 0;
        left: 0;
        opacity: 0.3;
        z-index: 1;
    }

    .feature-heading {
        font-size: 1.35rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .feature-desc {
        color: #6c757d;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .feature-metric {
        display: inline-flex;
        align-items: center;
        background: rgba(25, 135, 84, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #198754;
    }

    /* ========================================
       PRODUCT SHOWCASE SECTION
    ======================================== */
    .product-showcase-section {
        padding: 6rem 0;
    }

    .patient-connect-theme {
        background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    }

    .job-portal-theme {
        background: linear-gradient(135deg, #f3e7f6 0%, #f8f9fa 100%);
    }

    .product-bg-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .product-gradient {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .gradient-green-theme {
        background: radial-gradient(circle at 30% 50%, rgba(25, 135, 84, 0.06) 0%, transparent 60%);
    }

    .gradient-purple-theme {
        background: radial-gradient(circle at 70% 50%, rgba(102, 126, 234, 0.06) 0%, transparent 60%);
    }

    .product-shape {
        position: absolute;
        width: 300px;
        height: 300px;
        opacity: 0.08;
    }

    .shape-left {
        background: linear-gradient(135deg, #25D366, #128C7E);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        top: 20%;
        left: 0;
    }

    .shape-right {
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        top: 20%;
        right: 0;
    }

    .product-image-showcase {
        position: relative;
        max-width: 550px;
        margin: 0 auto;
    }

    .image-decorations {
        position: relative;
    }

    .deco-ring {
        position: absolute;
        border-radius: 30px;
        border: 2px dashed rgba(25, 135, 84, 0.2);
        animation: rotate-deco 20s linear infinite;
    }

    .ring-primary {
        width: 100%;
        height: 100%;
        top: -20px;
        left: -20px;
    }

    .ring-secondary {
        width: 90%;
        height: 90%;
        top: 0;
        left: 20px;
        animation-direction: reverse;
    }

    .ring-purple-variant {
        border-color: rgba(102, 126, 234, 0.2);
    }

    @keyframes rotate-deco {
        from { transform: rotate(0deg) translateZ(0); }
        to { transform: rotate(360deg) translateZ(0); }
    }

    .main-image-wrapper {
        position: relative;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        animation: float-image 6s ease-in-out infinite;
    }

    @keyframes float-image {
        0%, 100% { transform: translateY(0) translateZ(0); }
        50% { transform: translateY(-20px) translateZ(0); }
    }

    .product-img {
        border-radius: 30px;
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .overlay-green {
        background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, transparent 50%);
    }

    .overlay-purple {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    }

    .floating-metric {
        position: absolute;
        background: white;
        border-radius: 16px;
        padding: 1rem 1.25rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        gap: 1rem;
        animation: float-metric 4s ease-in-out infinite;
        z-index: 10;
    }

    .metric-1 {
        top: 10%;
        right: -10%;
    }

    .metric-2 {
        bottom: 15%;
        left: -10%;
        animation-delay: -2s;
    }

    @keyframes float-metric {
        0%, 100% { transform: translateY(0) translateZ(0); }
        50% { transform: translateY(-15px) translateZ(0); }
    }

    .metric-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    .bg-gradient-green {
        background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    }

    .bg-gradient-purple {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .metric-value {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1a1a1a;
    }

    .metric-label {
        font-size: 0.8rem;
        color: #6c757d;
        font-weight: 600;
    }

    .product-category-badge {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .badge-green {
        background: rgba(25, 135, 84, 0.1);
        color: #198754;
        border: 2px dashed #198754;
    }

    .badge-purple {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        border: 2px dashed #667eea;
    }

    .product-main-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        color: #1a1a1a;
    }

    .product-main-description {
        font-size: 1.1rem;
        color: #4a5568;
        line-height: 1.8;
    }

    .product-features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .feature-list-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 1rem;
        color: #2d3748;
        font-weight: 500;
    }

    .feature-list-item i {
        font-size: 1.25rem;
        color: #198754;
    }

    .btn-primary-custom {
        background: linear-gradient(135deg, #198754 0%, #20c997 100%);
        border: none;
        border-radius: 50px;
        padding: 1rem 2.5rem;
        font-size: 1.05rem;
        font-weight: 700;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(25, 135, 84, 0.3);
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px) translateZ(0);
        box-shadow: 0 12px 32px rgba(25, 135, 84, 0.4);
    }

    .btn-purple-variant {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    }

    .btn-purple-variant:hover {
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
    }

    .btn-secondary-custom {
        background: white;
        border: 2px solid #198754;
        border-radius: 50px;
        padding: 1rem 2.5rem;
        font-size: 1.05rem;
        font-weight: 700;
        color: #198754;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .btn-secondary-custom:hover {
        background: #198754;
        color: white;
        transform: translateY(-3px) translateZ(0);
    }

    .btn-purple-outline {
        border-color: #667eea;
        color: #667eea;
    }

    .btn-purple-outline:hover {
        background: #667eea;
    }

    /* ========================================
       TEAM SECTION
    ======================================== */
    .team-showcase-section {
        padding: 6rem 0;
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    }

    .team-bg-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .team-gradient {
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 60%);
    }

    .team-grid-pattern {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.02;
        background-image: repeating-linear-gradient(90deg, transparent, transparent 35px, rgba(0,0,0,.1) 35px, rgba(0,0,0,.1) 36px);
    }

    .team-member-card {
        background: white;
        border-radius: 24px;
        padding: 2.5rem 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        border: 2px solid transparent;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        /* Ensure cards take full column height and keep content aligned */
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .team-member-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4facfe, #00f2fe);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .team-member-card:hover {
        transform: translateY(-8px) translateZ(0);
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        border-color: rgba(79, 172, 254, 0.2);
    }

    .team-member-card:hover::before {
        transform: scaleX(1);
    }

    .member-avatar-wrapper {
        position: relative;
        width: fit-content;
        margin: 0 auto 2rem;
    }

    /* Make inner wrapper stretch so footer/info area can be sized consistently */
    .team-member-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        flex: 1 1 auto;
    }

    .member-avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
        position: relative;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .team-member-card:hover .member-avatar {
        transform: scale(1.1) translateZ(0);
    }

    .gradient-avatar-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
    .gradient-avatar-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
    .gradient-avatar-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

    .avatar-ring {
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        top: 0;
        left: 0;
        opacity: 0.25;
        z-index: 1;
    }

    .member-info {
        text-align: center;
        /* Reserve vertical space for name + position so long names don't change card height */
        min-height: 72px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .member-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }

    .member-position {
        color: #6c757d;
        margin-bottom: 1.5rem;
    }

    .member-skills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .skill-tag {
        background: rgba(79, 172, 254, 0.1);
        color: #4facfe;
        padding: 0.4rem 1rem;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .member-social-links {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .social-icon-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(79, 172, 254, 0.1);
        color: #4facfe;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-icon-link:hover {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        color: white;
        transform: translateY(-3px) translateZ(0);
    }

    /* ========================================
       PREMIUM MODAL
    ======================================== */
    .premium-modal-content {
        border: none;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    }

    .premium-modal-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 100;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .premium-modal-close:hover {
        background: #f8f9fa;
        transform: rotate(90deg) translateZ(0);
    }

    .premium-modal-left {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 3rem 2rem;
        display: flex;
        align-items: center;
    }

    .modal-left-inner {
        color: white;
        text-align: center;
        width: 100%;
    }

    .decoration-circle {
        width: 100px;
        height: 100px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        margin: 0 auto;
    }

    .modal-left-title {
        font-size: 1.75rem;
        font-weight: 800;
        color: white;
    }

    .modal-left-subtitle {
        color: rgba(255,255,255,0.9);
    }

    .modal-trust-indicators {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .trust-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        background: rgba(255,255,255,0.1);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        color: white;
    }

    .premium-modal-right {
        padding: 3rem 2.5rem;
        background: white;
    }

    .modal-tab-selector {
        display: flex;
        gap: 0.5rem;
        background: #f8f9fa;
        padding: 0.5rem;
        border-radius: 12px;
    }

    .modal-tab-button {
        flex: 1;
        background: transparent;
        border: none;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-weight: 600;
        color: #6c757d;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .modal-tab-button.active {
        background: white;
        color: #667eea;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .premium-form-label {
        display: block;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .premium-form-input {
        width: 100%;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

    .premium-form-input:focus {
        outline: none;
        background: white;
        border-color: #667eea;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }

    .premium-phone-group {
        position: relative;
    }

    .phone-flag-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.25rem;
        z-index: 10;
    }

    .premium-submit-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        border-radius: 12px;
        padding: 1rem 2rem;
        font-size: 1.05rem;
        font-weight: 700;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    }

    .premium-submit-btn:hover {
        transform: translateY(-2px) translateZ(0);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
    }

    .premium-submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    /* ========================================
       RESPONSIVE
    ======================================== */
    @media (max-width: 992px) {
        .welcome-section-modern {
            padding: 5rem 0 3rem;
        }

        .product-showcase-section {
            padding: 4rem 0;
        }

        .team-showcase-section {
            padding: 4rem 0;
        }

        .floating-metric {
            display: none;
        }

        .metric-1, .metric-2 {
            display: flex;
        }
    }

    @media (max-width: 768px) {
        .main-title {
            font-size: 2rem;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .product-main-title {
            font-size: 1.75rem;
        }

        .btn-primary-custom,
        .btn-secondary-custom {
            width: 100%;
            justify-content: center;
        }

        .premium-modal-left {
            padding: 2rem 1.5rem;
        }

        .premium-modal-right {
            padding: 2rem 1.5rem;
        }

        .modal-tab-selector {
            flex-direction: column;
        }
    }

/* .navbar-toggler-premium {
  display: none !important;
} */

/* @media (max-width: 991.98px) {
  .navbar-toggler-premium {
    display: block !important;
  }
} */


 /* Nav links and dropdown items contrast on the light background */
    .navbar-premium .nav-link,
    .navbar-premium .nav-link-premium,
    .navbar-premium .dropdown-item,
    .navbar-premium .dropdown-item-premium {
       /*  color: #0b3b5a !important; */ /* dark teal/blue for readability */
        color: #fff !important;
    }
 
    .navbar-premium .nav-link:hover,
    .navbar-premium .nav-link-premium:hover,
    .navbar-premium .dropdown-item:hover,
    .navbar-premium .dropdown-item-premium:hover {
        color: #072a3b !important;
    }
 
    /* CTA button styling to stand out on the light blue bar */
    .navbar-premium .btn-cta-premium {
        background-color: #0b85ff;
        color: #ffffff;
        border: none;
    }
 
    .navbar-premium .btn-cta-premium:hover {
        background-color: #066fd6;
    }
 
    /* Ensure brand logo spacing looks good on the colored bar */
    .navbar-premium .brand-logo-img {
        /* max-height: 44px; */
    }
 

/* === Base Navbar Styling === */
    .navbar-premium {
      /* background-color:  #dff7ee;
      background-color:  #30639e; */
    background: linear-gradient(to left, #033c7e 0%, #d2d4df 100%);
    
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     /*  padding: 0.8rem 1rem; */
    }

    .navbar-brand-premium img {
     /*  height: 50px; */
    }

    .navbar-nav-premium {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 1.2rem;
    }

    .nav-link-premium {
      color: #333;
      font-weight: bolder;
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
    }

    .nav-link-premium:hover,
    .nav-link-premium.active {
      color: #0d6efd;
    }

    /* === Dropdown Styling === */
    .dropdown-menu-premium {
      border: none;
      border-radius: 10px;
      padding: 0.6rem 0;
    }

    .dropdown-item-premium {
      padding: 0.5rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: #333;
      text-decoration: none;
    }

    .dropdown-item-premium:hover {
      background-color: #f8f9fa;
    }

    /* === CTA Button === */
    .btn-cta-premium {
      position: relative;
      background: #0d6efd;
      color: #fff;
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 30px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn-cta-premium:hover {
      background: #0b5ed7;
    }

    /* === Mobile Toggle Button === */
    .navbar-toggler-premium {
      background: none;
      border: none;
      outline: none;
      cursor: pointer;
      padding: 0.4rem;
      display: none; /* Hidden by default */
    }

    .hamburger-line {
      display: block;
      width: 25px;
      height: 2px;
      background-color: #333;
      margin: 5px 0;
      transition: all 0.3s;
    }

    /* Show toggle on mobile */
    @media (max-width: 991.98px) {
      .navbar-toggler-premium {
        display: block;
      }

      .navbar-nav-premium {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding-top: 1rem;
      }

      .btn-cta-premium {
        width: 100%;
        justify-content: center;
      }

        .dropdown-menu {
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(0, 242, 254, 0.2) 100%) !important;
            border: 1px solid rgba(255, 255, 255, 0.3) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
            margin-top: 0;
            padding: 0;
            width: 100%;
        }        .dropdown-item {
            color: #ffffff;
            padding: 0.75rem 1rem;
            background: transparent;
        }        .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }      .navbar-collapse {
        background: white;
      }

      .dropdown-item-wrapper {
        background: white;
      }
    }

    /* Premium dropdown styling (still works with Bootstrap) */
.dropdown-menu-premium {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

/* Dropdown items */
.dropdown-item-premium {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #333;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.dropdown-item-premium:hover {
  background-color: #f8f9fa;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .dropdown-menu-premium {
    position: static;
    box-shadow: none;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .dropdown-item-premium:hover {
    background-color: rgba(25, 135, 84, 0.05);
  }
}


/* .desktop-closed-message-avatar{
    right:100px !important;
} */


 /* CTA Badge */
    .cta-badge {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #198754 0%, #20c997 100%);
        color: white;
        font-size: 1.1rem;
        font-weight: 700;
        padding: 0.7rem 2rem;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 2px;
        box-shadow: 0 10px 30px rgba(25, 135, 84, 0.3);
        animation: bounce-badge 2s ease-in-out infinite;
    }

    @keyframes bounce-badge {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }

    /* Main Card */
    .cta-card {
        background: white;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.8);
    }

    .cta-card-header {
        background: linear-gradient(135deg, rgba(25, 135, 84, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    /* Modern Input Styles */
    .input-group-modern {
        position: relative;
    }

    .input-group-modern label {
        display: block;
        margin-bottom: 0.5rem;
        color: #2d3748;
        font-size: 0.9rem;
    }

    .modern-input {
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

    .modern-input:focus {
        background: white;
        border-color: #198754;
        box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.1);
        outline: none;
    }

    .modern-input::placeholder {
        color: #a0aec0;
    }

    /* Interest Checkboxes */
    .interest-checkbox {
        position: relative;
    }

    .interest-checkbox input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .interest-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .interest-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(25, 135, 84, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .interest-card:hover {
        border-color: #198754;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    }

    .interest-icon {
        width: 45px;
        height: 45px;
        background: #f8f9fa;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .interest-text {
        flex: 1;
        font-weight: 600;
        color: #2d3748;
        position: relative;
        z-index: 1;
    }

    .interest-check {
        width: 24px;
        height: 24px;
        border: 2px solid #e2e8f0;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .interest-check i {
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s ease;
        color: white;
        font-size: 0.9rem;
        font-weight: bold;
    }

    /* Checked State */
    .interest-checkbox input[type="checkbox"]:checked + label .interest-card {
        border-color: #198754;
        background: white;
    }

    .interest-checkbox input[type="checkbox"]:checked + label .interest-card::before {
        opacity: 1;
    }

    .interest-checkbox input[type="checkbox"]:checked + label .interest-icon {
        background: linear-gradient(135deg, #198754 0%, #20c997 100%);
        transform: scale(1.1) rotate(5deg);
    }

    .interest-checkbox input[type="checkbox"]:checked + label .interest-icon i {
        color: white;
    }

    .interest-checkbox input[type="checkbox"]:checked + label .interest-check {
        background: linear-gradient(135deg, #198754 0%, #20c997 100%);
        border-color: #198754;
    }

    .interest-checkbox input[type="checkbox"]:checked + label .interest-check i {
        opacity: 1;
        transform: scale(1);
    }

    /* Modern Button */
    .btn-modern {
        position: relative;
        background: linear-gradient(135deg, #198754 0%, #20c997 100%);
        border: none;
        border-radius: 12px;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(25, 135, 84, 0.3);
    }

    .btn-modern:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(25, 135, 84, 0.4);
    }

    .btn-modern:active {
        transform: translateY(-1px);
    }

    .btn-text {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-shine {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        transform: rotate(45deg);
        animation: shine 3s infinite;
    }

    @keyframes shine {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    /* Trust Indicators */
    .trust-indicators {
        opacity: 0.9;
    }

    .trust-badge {
        background: white;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .trust-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .trust-badge i {
        font-size: 1.5rem;
        display: block;
        margin-bottom: 0.5rem;
    }

    .trust-badge small {
        display: block;
        font-weight: 600;
        color: #4a5568;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .cta-section {
            min-height: auto;
            padding: 3rem 0 !important;
        }

        .cta-badge {
            font-size: 0.9rem;
            padding: 0.6rem 1.5rem;
        }

        .cta-card-header {
            padding: 2rem 1.5rem 1.5rem !important;
        }

        .card-body {
            padding: 2rem 1.5rem !important;
        }

        .display-6 {
            font-size: 1.75rem;
        }

        .interest-card {
            padding: 1rem;
        }

        .interest-icon {
            width: 38px;
            height: 38px;
            font-size: 1.1rem;
        }

        .btn-modern {
            padding: 1rem 1.5rem;
            font-size: 1rem;
        }
    }

 .icon-circle {
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 0.5rem 1.5rem rgba(139, 195, 74, 0.25);
    }

    .read-more {
        text-decoration: none;
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .read-more::after {
        content: "→";
        margin-left: 6px;
        transition: transform 0.3s ease;
    }

    .read-more:hover::after {
        transform: translateX(4px);
    }

    .bg-gradient {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-group .btn {
    border-radius: 50px !important;
}
.btn-group .btn-check:checked + .btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border: none;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

#supportCategoryWrapper {
    transition: all 0.3s ease;
}

/* ========================================
   ADDITIONAL MOBILE GRADIENT HEADER FIXES
======================================== */

@media (max-width: 991px) {
    /* Make dropdown menu container transparent on mobile */
    .dropdown-menu-premium {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0.5rem !important;
    }
    
    /* Fix dropdown active states */
    .dropdown-item.active,
    .dropdown-item:active {
        background: rgba(255, 255, 255, 0.98) !important;
        color: #1a1a1a !important;
    }
    
    .dropdown-item.active .dropdown-item-wrapper,
    .dropdown-item:active .dropdown-item-wrapper {
        background: rgba(79, 172, 254, 0.1) !important;
        border: 1px solid rgba(79, 172, 254, 0.3) !important;
    }
    
    /* Ensure dropdown items are properly styled for gradient background */
    .dropdown-item-wrapper {
        background: rgba(255, 255, 255, 0.95) !important;
        margin-bottom: 0.5rem !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .dropdown-item-title {
        color: #1a1a1a !important;
    }
    
    .dropdown-item-desc {
        color: #4a5568 !important;
    }
    
    .dropdown-item-icon {
        background: linear-gradient(135deg, #198754 0%, #20c997 100%) !important;
    }
    
    /* Fix any remaining navbar elements for gradient */
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(79, 172, 254, 0.3) 0%, rgba(0, 242, 254, 0.3) 100%) !important;
    }
    
    .navbar-nav-premium .nav-link-premium {
        color: #ffffff !important;
    }
    
    .navbar-nav-premium .nav-link-premium:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
    }
}

/* Social Share Buttons */
.social-share-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.share-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.share-btn i {
    font-size: 1.1rem;
}

/* Social Media Brand Colors */
.facebook-btn {
    background: #1877f2;
    color: white;
}

.facebook-btn:hover {
    background: #166fe5;
    color: white;
}

.twitter-btn {
    background: #1da1f2;
    color: white;
}

.twitter-btn:hover {
    background: #1a91da;
    color: white;
}

.linkedin-btn {
    background: #0077b5;
    color: white;
}

.linkedin-btn:hover {
    background: #006ba1;
    color: white;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    color: white;
}

.email-btn {
    background: #6c757d;
    color: white;
}

.email-btn:hover {
    background: #5a6268;
    color: white;
}

.copy-btn {
    background: #6f42c1;
    color: white;
}

.copy-btn:hover {
    background: #5a32a3;
    color: white;
}

/* Mobile Responsive Share Buttons */
@media (max-width: 576px) {
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .share-btn span {
        font-size: 0.85rem;
    }
    
    .social-share-section {
        padding: 1rem;
    }
}

/* Copy Success Animation */
.copy-success {
    background: #28a745 !important;
    animation: pulse 0.3s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
