    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    /*testing*/
    body {
        font-family: 'Poppins', sans-serif;
        scroll-behavior: smooth;
            background: linear-gradient(456deg, #3b82f6 0%, #22c55e 100%);
    }


    .container {
        max-width: 1536px;
        margin: 0 auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* navacation */
    header {
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        color: white;
        padding: 0.8rem 0;
        /* position: fixed; */
        width: 100%;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .logo i {
        color: #e74c3c;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 1.5rem;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.9rem;
        position: relative;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    /* Mega Menu */
    .mega-menu {
        position: relative;
    }

    .mega-menu-content {
        position: absolute;
        top: 100%;
        left: 100%;
        transform: translateX(-50%);
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        padding: 1.5rem;
        width: 600px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        margin-top: 1rem;
        z-index: 99;
    }

    .mega-menu:hover .mega-menu-content {
        opacity: 1;
        visibility: visible;
    }

    .mega-menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .mega-menu-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
        color: #333;
    }

    .mega-menu-item:hover {
        background: #f8f9fa;
        transform: translateX(5px);
    }

    .mega-menu-item i {
        font-size: 1.2rem;
        color: #3498db;
        width: 20px;
    }

    .mega-menu-item-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
        color: #2c3e50;
    }

    .mega-menu-item-content p {
        font-size: 0.75rem;
        color: #666;
        margin-bottom: 0px;
    }


    .dropdown-toggle {
        display: none;
    }

    .mega-menu {
        display: block;
    }

    .dropdown-toggle::after {
        display: none;
    }













    /* Modal Styles */
    .modal-float {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content-float {
        background-color: white;
        margin: 5% auto;
        padding: 30px;
        border-radius: 12px;
        width: 90%;
        max-width: 400px;
        position: relative;
    }

    .close-float {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 10px;
    }

    .close:hover {
        color: #000;
    }

    .modal-float h2 {
        margin-bottom: 20px;
        color: #333;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 13px;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: #667eea;
    }

    @media (max-width: 991px) {

        .mega-menu-content,
        .mega-menu {
            display: none;
        }

        .dropdown-toggle {
            display: block;
        }

    }

    .hero {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        padding: 100px 0 60px;
        /* margin-top: 60px; */
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    /* Medium screens (≤1024px) */
    @media (max-width: 1024px) {
        .hero-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    /* Small screens (≤768px) */
    @media (max-width: 768px) {
        .hero-content {
            gap: 20px;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }

    /* Extra small screens (≤480px) */
    @media (max-width: 480px) {
        .hero-content {
            padding: 10px;
            gap: 15px;
        }

        .services-grid {
            grid-template-columns: 1fr !important;
        }
    }

    .hero-text h1 {
        font-size: 32px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        gap: 12px;
    }



    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 1.5rem;
        padding-left: 10px;
        padding-right: 10px;
        max-width: 1200px;
        margin: 0 auto;
        perspective: 1000px;
    }

    .service-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        padding: 0.5rem;
        /* height: 180px; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transform-style: preserve-3d;
        justify-content: space-around;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
        border-radius: 24px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card.animate-bounce {
        animation: bounceIn 0.8s ease-out;
    }

    .service-card.animate-rotate {
        animation: rotateIn 0.8s ease-out;
    }

    .service-card.animate-scale {
        animation: scaleIn 0.8s ease-out;
    }

    .service-card.animate-slide-up {
        animation: slideUp 0.8s ease-out;
    }

    .service-card.animate-flip {
        animation: flipIn 0.8s ease-out;
    }

    .service-card.animate-zoom {
        animation: zoomIn 0.8s ease-out;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        /* margin-bottom: 1rem; */
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .card-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .service-card:hover .card-icon::before {
        transform: translateX(100%);
    }

    .service-card:nth-child(1) .card-icon {
        background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    }

    .service-card:nth-child(2) .card-icon {
        background: linear-gradient(135deg, #4ECDC4, #7FDBDA);
    }

    .service-card:nth-child(3) .card-icon {
        background: linear-gradient(135deg, #45B7D1, #78C7E8);
    }

    .service-card:nth-child(4) .card-icon {
        background: linear-gradient(135deg, #96CEB4, #B5D6C7);
    }

    .service-card:nth-child(5) .card-icon {
        background: linear-gradient(135deg, #FFEAA7, #FFE17D);
    }

    .service-card:nth-child(6) .card-icon {
        background: linear-gradient(135deg, #DDA0DD, #E6B3E6);
    }

    .service-card:nth-child(7) .card-icon {
        background: linear-gradient(135deg, #FFB347, #FFCB7A);
    }

    .service-card:nth-child(8) .card-icon {
        background: linear-gradient(135deg, #87CEEB, #B0E0E6);
    }







    @keyframes bounceIn {
        0% {
            transform: scale(0.3) translateY(50px);
            opacity: 0;
        }

        50% {
            transform: scale(1.05) translateY(-10px);
        }

        70% {
            transform: scale(0.9) translateY(5px);
        }

        100% {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
    }

    @keyframes rotateIn {
        0% {
            transform: rotate(-180deg) scale(0.5);
            opacity: 0;
        }

        100% {
            transform: rotate(0deg) scale(1);
            opacity: 1;
        }
    }

    @keyframes scaleIn {
        0% {
            transform: scale(0);
            opacity: 0;
        }

        50% {
            transform: scale(1.1);
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes slideUp {
        0% {
            transform: translateY(100px);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes flipIn {
        0% {
            transform: rotateY(-90deg);
            opacity: 0;
        }

        100% {
            transform: rotateY(0deg);
            opacity: 1;
        }
    }

    @keyframes zoomIn {
        0% {
            transform: scale(0.5) rotate(45deg);
            opacity: 0;
        }

        100% {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }
    }

    @keyframes float-particles {

        0%,
        100% {
            transform: translateY(0px) translateX(0px) rotate(0deg);
            opacity: 0.3;
        }

        33% {
            transform: translateY(-30px) translateX(20px) rotate(120deg);
            opacity: 0.8;
        }

        66% {
            transform: translateY(-10px) translateX(-20px) rotate(240deg);
            opacity: 0.5;
        }
    }

    .card-description {
        color: black;
        display: none;
    }

    /* Services Grid */
    .services {
        padding: 80px 0;
    }

    .section-title {
        text-align: center;
        font-size: 32px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 50px;
    }

    .services-grid1 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 40px;
    }

    .services-grid2 {
        /* display: grid; */
        /* grid-template-columns: repeat(3, 1fr); */
        display: flex;
        width: fit-content;
        gap: 24px;
        margin-bottom: 40px;
    }

    .services-grid2>.service-card {
        width: 180px;
        height: 120px;
        padding-top: 15px;
    }

    .service1-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
    }

    .service1-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    }

    .service1-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: white;
        font-size: 20px;
    }

    .service1-card h3 {
        font-size: 18px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .service1-card p {
        font-size: 13px;
        color: #64748b;
        margin-bottom: 20px;
    }

    .service1-features {
        list-style: none;
        margin-bottom: 20px;
    }

    .service1-features li {
        font-size: 12px;
        color: #64748b;
        margin-bottom: 8px;
        padding-left: 16px;
        position: relative;
    }

    .service1-features li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #10b981;
        font-weight: 600;
    }

    /* FOOTER */


    .footer {
        background: linear-gradient(135deg,
                rgba(15, 23, 42, 0.95) 0%,
                rgba(30, 41, 59, 0.98) 25%,
                rgba(51, 65, 85, 0.95) 50%,
                rgba(248, 250, 252, 0.98) 75%,
                rgba(241, 245, 249, 0.95) 100%);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(59, 130, 246, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 10;
    }

    /* .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg,
                #3b82f6 0%,
                #06b6d4 20%,
                #10b981 40%,
                #8b5cf6 60%,
                #f59e0b 80%,
                #ec4899 100%);
        animation: pulse-gradient 4s ease-in-out infinite;
    }

    @keyframes pulse-gradient {

        0%,
        100% {
            opacity: 0.8;
        }

        50% {
            opacity: 1;
        }
    } */


    .footer-section>ul {
        padding: 0;
    }

    .footer-hero {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        padding: 40px;
        border-radius: 24px;
        margin-top: 35px;
        background: linear-gradient(135deg,
                rgba(15, 23, 42, 0.9) 0%,
                rgba(30, 41, 59, 0.85) 50%,
                rgba(51, 65, 85, 0.9) 100%);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .footer-hero h2 {
        font-size: 32px;
        font-weight: 700;
        background: linear-gradient(135deg, #60a5fa, #34d399, #a78bfa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 18px;
        animation: text-shimmer 3s ease-in-out infinite;
    }

    @keyframes text-shimmer {

        0%,
        100% {
            filter: brightness(1);
        }

        50% {
            filter: brightness(1.3);
        }
    }

    .footer-hero p {
        color: #cbd5e1;
        font-size: 16px;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .footer-section {
        position: relative;
        padding: 25px;
        border-radius: 20px;
        transition: all 0.4s ease;
        animation: slide-up 0.6s ease-out;
    }

    /* Alternate between dark and light sections */
    .footer-section:nth-child(odd) {
        background: linear-gradient(135deg,
                rgba(15, 23, 42, 0.85) 0%,
                rgba(30, 41, 59, 0.8) 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .footer-section:nth-child(even) {
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.9) 0%,
                rgba(248, 250, 252, 0.95) 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(226, 232, 240, 0.5);
    }

    .footer-section:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

    .footer-section:nth-child(odd):hover {
        background: linear-gradient(135deg,
                rgba(15, 23, 42, 0.95) 0%,
                rgba(30, 41, 59, 0.9) 100%);
    }

    .footer-section:nth-child(even):hover {
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.95) 0%,
                rgba(248, 250, 252, 1) 100%);
    }

    .footer-section h3 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 12px;
    }

    .footer-section:nth-child(odd) h3 {
        color: #e2e8f0;
    }

    .footer-section:nth-child(even) h3 {
        color: #1e293b;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        right: 0%;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6, #10b981);
        border-radius: 2px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-section ul li {
        margin-bottom: 4px;
        position: relative;
    }


    .footer-section:nth-child(odd)>ul>li>a {
        color: white !important;
    }

    .footer-section:nth-child(even)>ul>li>a {
        color: black !important;
    }




    .footer-section ul li a {
        text-decoration: none;
        font-size: 12px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }


    .footer-section ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        transition: width 0.3s ease;
        z-index: -1;
    }

    .footer-section:nth-child(odd) ul li a::before {
        background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
    }

    .footer-section:nth-child(even) ul li a::before {
        background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    }

    .footer-section ul li a:hover::before {
        width: 100%;
    }

    .footer-section:nth-child(odd) ul li a:hover {
        color: #60a5fa;
        transform: translateX(8px);
    }


    .footer-section ul li a::after {
        content: '→';
        opacity: 0;
        transition: opacity 0.3s ease;
        font-size: 11px;
    }

    .footer-section ul li a:hover::after {
        opacity: 1;
    }

    .company-info {
        background: linear-gradient(135deg,
                rgba(15, 23, 42, 0.9) 0%,
                rgba(30, 41, 59, 0.85) 50%,
                rgba(51, 65, 85, 0.9) 100%) !important;
        border: 1px solid rgba(59, 130, 246, 0.3) !important;
    }

    .company-info .logo {
        font-size: 28px;
        font-weight: 800;
        background: linear-gradient(135deg, #60a5fa, #34d399);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .company-info .logo::before {
        content: '⚕️';
        font-size: 24px;
        animation: pulse-icon 2s ease-in-out infinite;
    }

    @keyframes pulse-icon {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.15);
        }
    }

    .company-info p {
        color: #cbd5e1;
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #94a3b8;
        font-size: 11px;
        padding: 10px;
        border-radius: 10px;
        background: rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        background: rgba(59, 130, 246, 0.2);
        transform: scale(1.03);
    }

    .contact-item .icon {
        font-size: 14px;
        width: 24px;
        text-align: center;
    }

    .social-links {
        display: flex;
        gap: 12px;
        justify-content: center;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 18px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .social-links a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        transition: all 0.4s ease;
        z-index: -1;
    }

    .social-links a:hover::before {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .social-links a:nth-child(1) {
        background: linear-gradient(135deg, #1877f2, #42a5f5);
        color: white;
    }

    .social-links a:nth-child(2) {
        background: linear-gradient(135deg, #1da1f2, #0ea5e9);
        color: white;
    }

    .social-links a:nth-child(3) {
        background: linear-gradient(135deg, #e4405f, #f56565);
        color: white;
    }

    .social-links a:nth-child(4) {
        background: linear-gradient(135deg, #0077b5, #0891b2);
        color: white;
    }

    .wellness-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin: 50px 0;
        padding: 40px;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.9) 0%,
                rgba(248, 250, 252, 0.95) 100%);
        border-radius: 24px;
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .stat-item {
        text-align: center;
        padding: 20px;
        border-radius: 16px;
        background: linear-gradient(135deg,
                rgba(15, 23, 42, 0.8) 0%,
                rgba(30, 41, 59, 0.75) 100%);
        transition: all 0.4s ease;
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .stat-number {
        font-size: 28px;
        font-weight: 700;
        background: linear-gradient(135deg, #60a5fa, #34d399);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 11px;
        color: #cbd5e1;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(59, 130, 246, 0.2);
        padding: 30px 0;
        background: linear-gradient(135deg,
                rgba(15, 23, 42, 0.9) 0%,
                rgba(30, 41, 59, 0.85) 100%);
        border-radius: 20px;
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 25px;
    }

    .footer-bottom-left {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .footer-bottom p {
        color: #94a3b8;
        font-size: 11px;
    }

    .certifications {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .cert-badge {
        background: linear-gradient(135deg, #022c22, #064e3b);
        color: #6ee7b7;
        padding: 6px 12px;
        border-radius: 25px;
        font-size: 9px;
        font-weight: 600;
        border: 1px solid rgba(52, 211, 153, 0.3);
        display: flex;
        align-items: center;
        gap: 5px;
        animation: badge-glow 4s ease-in-out infinite;
    }

    @keyframes badge-glow {

        0%,
        100% {
            box-shadow: 0 0 8px rgba(52, 211, 153, 0.3);
        }

        50% {
            box-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
        }
    }

    .footer-bottom-links {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }

    .footer-bottom-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 11px;
        transition: all 0.3s ease;
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid transparent;
    }

    .footer-bottom-links a:hover {
        color: #60a5fa;
        border-color: rgba(59, 130, 246, 0.3);
        background: rgba(59, 130, 246, 0.1);
    }
    .dropdown{
        display: none;
    }
    @media (max-width: 1024px) {
        .dropdown{
            display: block;
        }
        .footer-content {
            grid-template-columns: repeat(3, 1fr);
        }

        .wellness-stats {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
        }

        .wellness-stats {
            grid-template-columns: repeat(1, 1fr);
        }

        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }

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

    @keyframes slide-up {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-section:nth-child(1) {
        animation-delay: 0.1s;
    }

    .footer-section:nth-child(2) {
        animation-delay: 0.2s;
    }

    .footer-section:nth-child(3) {
        animation-delay: 0.3s;
    }

    .footer-section:nth-child(4) {
        animation-delay: 0.4s;
    }

    .footer-section:nth-child(5) {
        animation-delay: 0.5s;
    }

    .footer-section:nth-child(6) {
        animation-delay: 0.6s;
    }


























    .gradient-bg {
        background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    }

    .plan-card {
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .plan-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .testimonial-card {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        border-left: 4px solid #3b82f6;
    }

    .nav-link {
        position: relative;
        font-size: 14px;
    }

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #3b82f6;
        transition: width 0.3s ease;
    }

    .nav-link:hover:after {
        width: 100%;
    }

    .dropdown:hover .dropdown-menu {
        /*display: block;*/
    }

    .smalltext {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 5px;
        padding-top: 5px;
        font-weight: 600;
        color: white;
        border-radius: 0px 0px 0px 8px;

    }

    .card-img-top {
        border-radius: 8px;
        height: 160px;
        overflow: hidden;
    }

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

    .card-title {
        font-size: 1.25rem;
        font-weight: 600;
        line-height: 1.75rem;
        color: #000000;
        margin-top: 10px;
        margin-bottom: 0.5rem;
    }

    .cartLearnmore {
        text-decoration: none;
        font-weight: 500;
    }

    .card-body {
        padding: 0;
    }




    /* new hero text */
    .hero-text {
        color: white;
        animation: slideInLeft 1s ease-out;
    }

    .hero-text h1 {
        font-size: 32px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease-out 0.3s both;
        background: linear-gradient(45deg, #ffffff, #f0f0f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-text .highlight {
        background: linear-gradient(45deg, #89ff6b, #feca57);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: textGlow 2s ease-in-out infinite alternate;
    }

    @media screen and (max-width: 550px) {
    .hero-text .highlight {
        font-size: 28px;
    }
    }

    .hero-text p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 30px;
        opacity: 0.9;
        color: white;
        animation: fadeInUp 1s ease-out 0.6s both;
    }




















    .sliderwr{
                align-items: center;
                justify-content: center;
                padding: 20px;
    }

    .icon-slider {
        /* background-color: #022c22; */
                backdrop-filter: blur(20px);
                border-radius: 20px;
                padding: 30px;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
                border: 1px solid rgba(88, 88, 88, 0.932);
                max-width: 600px;
                width: 100%;
                /* max-height: 80vh; */
                display: flex;
                flex-direction: column;
            }

            .slider-header {
                text-align: center;
                margin-bottom: 25px;
            }

            .slider-title {
                font-size: 1.8rem;
                font-weight: 700;
                color: white;
                margin-bottom: 8px;
                /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
            }

            .slider-subtitle {
                font-size: 0.9rem;
                color: white;
                font-weight: 300;
            }

            .slider-main {
                display: flex;
                flex: 1;
                gap: 25px;
            }

            .icons-container {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 20px;
                position: relative;
                min-width: 120px;
            }

            .icon-item {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
                position: relative;
                background: rgba(65, 65, 65, 0.219);
                backdrop-filter: blur(10px);
                border: 2px solid rgba(255, 255, 255, 0.979);
                opacity: 0.6;
                transform: scale(0.8);
            }

            .icon-item.active {
                transform: scale(1.2);
                opacity: 1;
                background: rgb(255, 255, 255);
                border-color: rgb(0, 0, 0);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            }

            .icon-item:hover:not(.active) {
                transform: scale(0.9);
                opacity: 0.8;
                background: rgba(255, 255, 255, 0.15);
            }

            .icon-item .icon {
                font-size: 2.5rem;
                transition: all 0.3s ease;
            }

            .icon-item.active .icon {
                animation: pulse 2s infinite;
            }

            @keyframes pulse {
                0%, 100% { transform: scale(1); }
                50% { transform: scale(1.1); }
            }

            .icon-item::before {
                content: '';
                position: absolute;
                inset: -5px;
                border-radius: 50%;
                background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .icon-item.active::before {
                opacity: 1;
                animation: rotate 3s linear infinite;
            }

            @keyframes rotate {
                0% { transform: rotate(0deg); }
                100% { transform: rotate(360deg); }
            }

            .content-area {
                background: rgba(255, 255, 255, 0.479);
                border:  1px solid rgba(0, 0, 0, 0.226);
                border-radius: 15px;
                padding: 25px;
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                position: relative;
                overflow: hidden;
                min-height: 300px;
            }

            .content-area::before {
                content: '';
                position: absolute;
                top: -100%;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
                transition: top 0.6s ease;
            }

            .content-area.animate::before {
                top: 100%;
            }

            .content-title {
                font-size: 1.6rem;
                font-weight: 600;
                /* color: white; */
                margin-bottom: 15px;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.5s ease;
            }

            .content-description {
                font-size: 1rem;
                /* color: rgba(255, 255, 255, 0.8); */
                line-height: 1.6;
                margin-bottom: 20px;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.5s ease 0.1s;
            }

            .content-features {
                display: flex;
                flex-direction: column;
                gap: 10px;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.5s ease 0.2s;
            }

            .feature-item {
                background: rgba(196, 195, 195, 0.158);
                /* color: white; */
                padding: 10px 15px;
                border-radius: 10px;
                font-size: 0.9rem;
                font-weight: 500;
                border: 1px solid rgba(17, 17, 17, 0.349);
                backdrop-filter: blur(10px);
                display: flex;
                align-items: center;
                gap: 10px;
                transition: all 0.3s ease;
            }

            .feature-item:hover {
                background: rgba(255, 255, 255, 0.15);
                transform: translateX(5px);
            }

            .feature-item::before {
                content: "✓";
                color: #4CAF50;
                font-weight: bold;
                font-size: 1.1rem;
            }

            .content-area.show .content-title,
            .content-area.show .content-description,
            .content-area.show .content-features {
                opacity: 1;
                transform: translateY(0);
            }

            .navigation-dots {
                display: flex;
                flex-direction: column;
                gap: 10px;
                position: absolute;
                right: -15px;
                top: 50%;
                transform: translateY(-50%);
            }

            .nav-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .nav-dot.active {
                background: rgb(102, 97, 97);
                transform: scale(1.5);
                box-shadow: 0 0 10px rgba(94, 84, 84, 0.5);
            }

            .auto-progress {
                position: absolute;
                left: 0;
                bottom: 0;
                width: 3px;
                height: 100%;
                background: rgba(184, 17, 17, 0.6);
                border-radius: 2px;
                transform-origin: top;
                animation: progressVertical 4s linear infinite;
            }

            @keyframes progressVertical {
                0% { transform: scaleY(0); }
                100% { transform: scaleY(1); }
            }

            .scroll-indicator {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                width: 2px;
                height: 60px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 1px;
                overflow: hidden;
            }

            .scroll-indicator::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 20px;
                background: rgba(252, 127, 127, 0.6);
                border-radius: 1px;
                animation: scrollMove 2s ease-in-out infinite;
            }

            @keyframes scrollMove {
                0%, 100% { transform: translateY(0); }
                50% { transform: translateY(40px); }
            }

            .service-number {
                position: absolute;
                top: -14px;
                right: -14px;
                width: 24px;
                height: 24px;
                /* background: rgba(0, 0, 0, 0.9); */
                border: 1px solid black;
                color: #ffffff;
                border-radius: 50%;
                font-size: 0.8rem;
                font-weight: 500;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transform: scale(0);
                transition: all 0.3s ease;
            }

            .icon-item.active .service-number {
                opacity: 1;
                transform: scale(1);
            }

            @media (max-width: 768px) {
                .icon-slider {
                    padding: 20px;
                    /* max-height: 90vh; */
                }

                .slider-main {
                    flex-direction: column;
                    gap: 20px;
                }

                .icons-container {
                    flex-direction: row;
                    min-width: auto;
                    gap: 15px;
                    justify-content: center;
                }

                .icon-item {
                    width: 60px;
                    height: 60px;
                }

                .icon-item .icon {
                    font-size: 2rem;
                }

                .content-area {
                    min-height: 250px;
                    padding: 20px;
                }

                .content-title {
                    font-size: 1.3rem;
                }

                .content-description {
                    font-size: 0.9rem;
                }

                .navigation-dots {
                    flex-direction: row;
                    position: static;
                    transform: none;
                    justify-content: center;
                    margin-top: 15px;
                }

                .scroll-indicator {
                    display: none;
                }

                .auto-progress {
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 3px;
                    transform-origin: left;
                    animation: progress 4s linear infinite;
                }

                @keyframes progress {
                    0% { transform: scaleX(0); }
                    100% { transform: scaleX(1); }
                }
            }

            /* Health Insurance & Wellness Services - Onboarding */


            .formcontainer {
                max-width: 1200px;
                margin: 50px auto;
                background: white;
                border-radius: 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                overflow: hidden;
            }

            .headerh {
                background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
                padding: 30px;
                text-align: center;
                color: white;
            }

            .headerh h1 {
                font-size: 2.5em;
                margin-bottom: 10px;
                font-weight: 300;
            }

            .progress-bar {
                background: rgba(255, 255, 255, 0.2);
                height: 8px;
                border-radius: 4px;
                margin: 20px 0;
                overflow: hidden;
            }

            .progress-fill {
                height: 100%;
                background: white;
                border-radius: 4px;
                transition: width 0.3s ease;
            }

            .steps-nav {
                display: flex;
                justify-content: center;
                padding: 20px;
                background: #f8f9fa;
                border-bottom: 1px solid #e9ecef;
            }

            .step {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 15px;
                margin: 0 10px;
                border-radius: 12px;
                transition: all 0.3s ease;
                cursor: pointer;
                min-width: 120px;
            }

            .step.active {
                background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
                color: white;
                transform: translateY(-2px);
            }

            .step.completed {
                background: #28a745;
                color: white;
            }

            .step-number {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 8px;
                font-weight: bold;
            }

            .form-container {
                padding: 40px;
                max-height: 600px;
                overflow-y: auto;
            }

            .form-step {
                display: none;
                animation: fadeIn 0.5s ease-in-out;
            }

            .form-step.active {
                display: block;
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .form-group {
                margin-bottom: 25px;
            }

            .form-row {
                display: flex;
                gap: 20px;
                margin-bottom: 20px;
            }

            .form-col {
                flex: 1;
            }

            label {
                display: block;
                margin-bottom: 8px;
                font-weight: 600;
                color: #333;
            }

            input,
            select,
            textarea {
                width: 100%;
                padding: 12px 16px;
                border: 2px solid #e9ecef;
                border-radius: 8px;
                font-size: 16px;
                transition: border-color 0.3s ease;
            }

            input:focus,
            select:focus,
            textarea:focus {
                outline: none;
                border-color: #4facfe;
                box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
            }

            .error {
                color: #dc3545;
                font-size: 14px;
                margin-top: 5px;
            }

            .input-error {
                border-color: #dc3545;
            }

            .family-member {
                background: #f8f9fa;
                padding: 20px;
                border-radius: 12px;
                margin-bottom: 20px;
                border-left: 4px solid #4facfe;
            }

            .family-member-header {
                display: flex;
                justify-content: between;
                align-items: center;
                margin-bottom: 15px;
            }

            .plan-card {
                border: 2px solid #e9ecef;
                border-radius: 12px;
                padding: 20px;
                margin-bottom: 20px;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .plan-card:hover {
                border-color: #4facfe;
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(79, 172, 254, 0.15);
            }

            .plan-card.selected {
                border-color: #4facfe;
                background: rgba(79, 172, 254, 0.05);
            }

            .plan-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 15px;
            }

            .plan-name {
                font-size: 18px;
                font-weight: 600;
                color: #333;
            }

            .plan-price {
                font-size: 24px;
                font-weight: 700;
                color: #4facfe;
            }

            .plan-features {
                list-style: none;
            }

            .plan-features li {
                padding: 5px 0;
                color: #666;
            }

            .plan-features li:before {
                content: "✓";
                color: #28a745;
                font-weight: bold;
                margin-right: 8px;
            }

            .addon-service {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 15px;
                border: 1px solid #e9ecef;
                border-radius: 8px;
                margin-bottom: 10px;
            }

            .addon-service.selected {
                border-color: #4facfe;
                background: rgba(79, 172, 254, 0.05);
            }

            .pricing-summary {
                background: #f8f9fa;
                padding: 20px;
                border-radius: 12px;
                margin-top: 20px;
                border-left: 4px solid #28a745;
            }

            .pricing-row {
                display: flex;
                justify-content: space-between;
                margin-bottom: 10px;
            }

            .pricing-total {
                font-size: 18px;
                font-weight: 700;
                color: #28a745;
                border-top: 2px solid #28a745;
                padding-top: 10px;
                margin-top: 10px;
            }

            .terms-container {
                max-height: 300px;
                overflow-y: auto;
                border: 1px solid #e9ecef;
                padding: 20px;
                border-radius: 8px;
                background: #f8f9fa;
                margin-bottom: 20px;
            }

            .checkbox-group {
                display: flex;
                align-items: flex-start;
                margin-bottom: 15px;
            }

            .checkbox-group input[type="checkbox"] {
                width: auto;
                margin-right: 10px;
                margin-top: 2px;
            }

            .buttons {
                display: flex;
                justify-content: space-between;
                padding: 30px 40px;
                background: #f8f9fa;
                border-top: 1px solid #e9ecef;
            }

            /* .btn {
                padding: 12px 30px;
                border: none;
                border-radius: 8px;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                gap: 8px;
            } */

            /* .btn-primary {
                background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
                color: white;
            }

            .btn-primary:hover {
                background: #2196f3;
                transform: translateY(-2px);
            }

            .btn-secondary {
                background: #6c757d;
                color: white;
            }

            .btn-secondary:hover {
                background: #5a6268;
            }

            .btn-success {
                background: #28a745;
                color: white;
            }

            .btn-success:hover {
                background: #218838;
            }

            .btn:disabled {
                opacity: 0.6;
                cursor: not-allowed;
            } */

            .add-family-btn {
                background: #17a2b8;
                color: white;
                border: none;
                padding: 10px 20px;
                border-radius: 8px;
                cursor: pointer;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .remove-family-btn {
                background: #dc3545;
                color: white;
                border: none;
                padding: 8px 12px;
                border-radius: 6px;
                cursor: pointer;
                font-size: 14px;
            }

            .success-message {
                text-align: center;
                padding: 40px;
            }

            .success-icon {
                width: 80px;
                height: 80px;
                background: #28a745;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
                color: white;
                font-size: 40px;
            }

            @media (max-width: 768px) {
                .form-row {
                    flex-direction: column;
                    gap: 0;
                }

                .steps-nav {
                    flex-wrap: wrap;
                }

                .step {
                    min-width: auto;
                    margin: 5px;
                }
            }


            /* about */

        .containerAbout {
                max-width: 1200px;
                margin: 0 auto;
                padding: 20px;
            }

            .headerAbout {
                /*background: linear-gradient(456deg, #3b82f6 0%, #22c55e 100%);*/
                color: white;
                padding: 60px 0;
                text-align: center;
                margin-bottom: 40px;
                /*box-shadow: 0 4px 6px rgba(0,0,0,0.1);*/
            }

            .headerAbout h1 {
                font-size: 2.5em;
                margin-bottom: 10px;
                font-weight: 300;
            }

            .headerAbout p {
                font-size: 0.9em;
                opacity: 0.9;
                max-width: 600px;
                margin: 0 auto;
            }

            .content-sectionAbout {
                background: white;
                margin-bottom: 30px;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
                transition: transform 0.3s ease;
            }

            .content-sectionAbout:hover {
                transform: translateY(-5px);
            }

            .section-titleAbout {
                font-size: 1.6em;
                color: #667eea;
                margin-bottom: 20px;
                font-weight: 600;
                border-bottom: 2px solid #e8f2ff;
                padding-bottom: 10px;
            }

            .section-contentAbout {
                font-size: 0.85em;
                color: #555;
                margin-bottom: 20px;
            }

            .hero-imageAbout {
                width: 100%;
                height: 300px;
    
                background: linear-gradient(456deg, #3b82f6 0%, #22c55e 100%);
                background-size: cover;
                background-position: center;
                border-radius: 12px;
                margin-bottom: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .hero-textAbout {
                text-align: center;
                color: white;
                padding: 20px;
            }

            .hero-textAbout h2 {
                font-size: 2em;
                margin-bottom: 10px;
                font-weight: 300;
            }

            .hero-textAbout p {
                font-size: 0.9em;
                opacity: 0.9;
            }

            .stats-gridAbout {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
                margin: 30px 0;
            }

            .stat-cardAbout {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 25px;
                border-radius: 10px;
                text-align: center;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }

            .stat-numberAbout {
                font-size: 2em;
                font-weight: 600;
                margin-bottom: 5px;
            }

            .stat-labelAbout {
                font-size: 0.8em;
                opacity: 0.9;
            }

            .team-gridAbout {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
                margin: 30px 0;
            }

            .team-memberAbout {
                text-align: center;
                padding: 20px;
                background: #f8fafc;
                border-radius: 10px;
                transition: transform 0.3s ease;
            }

            .team-memberAbout:hover {
                transform: translateY(-5px);
            }

            .team-avatar {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                margin: 0 auto 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.8em;
                font-weight: 600;
            }

            .team-name {
                font-size: 1em;
                font-weight: 600;
                color: #333;
                margin-bottom: 5px;
            }

            .team-title {
                font-size: 0.8em;
                color: #667eea;
                margin-bottom: 10px;
            }

            .team-bio {
                font-size: 0.75em;
                color: #666;
                line-height: 1.5;
            }

            .values-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                margin: 30px 0;
            }

            .value-card {
                padding: 25px;
                background: #f8fafc;
                border-radius: 10px;
                border-left: 4px solid #667eea !important;
                border: 1px solid #667eea;
            }

            .value-icon {
                width: 50px;
                height: 50px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.2em;
                margin-bottom: 15px;
            }

            .value-title {
                font-size: 1.1em;
                font-weight: 600;
                color: #333;
                margin-bottom: 10px;
            }

            .value-description {
                font-size: 0.8em;
                color: #666;
                line-height: 1.5;
            }

            .footerAbout {
                background: #2c3e50;
                color: white;
                padding: 40px 0;
                text-align: center;
                margin-top: 50px;
            }

            .footerAbout p {
                font-size: 0.8em;
                opacity: 0.8;
            }

            @media (max-width: 768px) {
                .containerAbout {
                    padding: 10px;
                }
                
                .headerAbout h1 {
                    font-size: 2em;
                }
                
                .content-sectionAbout {
                    padding: 25px;
                }
                
                .stats-gridAbout {
                    grid-template-columns: repeat(2, 1fr);
                }
            }






            /* faq */

            

            .containerfaq {
                max-width: 1200px;
                margin: 0 auto;
                padding: 20px;
            }

            .headerfaq {
                text-align: center;
                margin-bottom: 40px;
                padding: 40px 0;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 20px;
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .headerfaq h1 {
                font-size: 3rem;
                color: white;
                margin-bottom: 10px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            }

            .headerfaq p {
                font-size: 1.2rem;
                color: rgba(255, 255, 255, 0.9);
            }

            .search-container {
                margin-bottom: 30px;
                text-align: center;
            }

            .search-box {
                width: 100%;
                max-width: 600px;
                padding: 15px 20px;
                border: none;
                border-radius: 50px;
                font-size: 1rem;
                background: rgba(255, 255, 255, 0.9);
                backdrop-filter: blur(10px);
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
            }

            .search-box:focus {
                outline: none;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
                transform: translateY(-2px);
            }

            .faq-section {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-radius: 20px;
                padding: 30px;
                margin-bottom: 30px;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .section-titlefaq {
                font-size: 2rem;
                color: #4a5568;
                margin-bottom: 20px;
                text-align: center;
                position: relative;
            }

            .section-titlefaq::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 3px;
                background: linear-gradient(135deg, #667eea, #764ba2);
                border-radius: 2px;
            }

            .faq-item {
                margin-bottom: 20px;
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
            }

            .faq-item:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            }

            .faq-question {
                background: linear-gradient(135deg, #f7fafc, #edf2f7);
                padding: 20px;
                cursor: pointer;
                border: none;
                width: 100%;
                text-align: left;
                font-size: 1.1rem;
                font-weight: 600;
                color: #2d3748;
                display: flex;
                justify-content: space-between;
                align-items: center;
                transition: all 0.3s ease;
            }

            .faq-question:hover {
                background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
            }

            .faq-question.active {
                background: linear-gradient(135deg, #667eea, #764ba2);
                color: white;
            }

            .faq-icon {
                font-size: 1.5rem;
                transition: transform 0.3s ease;
            }

            .faq-question.active .faq-icon {
                transform: rotate(180deg);
            }

            .faq-answer {
                padding: 0 20px;
                max-height: 0;
                overflow: hidden;
                transition: all 0.3s ease;
                background: white;
            }

            .faq-answer.active {
                padding: 20px;
                max-height: 1000px;
            }

            .faq-answer p {
                margin-bottom: 15px;
                color: #4a5568;
                line-height: 1.7;
            }

            .faq-answer ul {
                margin-left: 20px;
                margin-bottom: 15px;
            }

            .faq-answer li {
                margin-bottom: 8px;
                color: #4a5568;
            }

            .contact-section {
                background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
                color: white;
                text-align: center;
                padding: 40px;
                border-radius: 20px;
                margin-top: 40px;
            }

            .contact-section h2 {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .contact-section p {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }

            .contact-btn {
                display: inline-block;
                background: white;
                color: #3182ce;
                padding: 12px 30px;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }

            .contact-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            }

            @media (max-width: 768px) {
                .headerfaq h1 {
                    font-size: 2rem;
                }
                
                .container {
                    padding: 10px;
                }
                
                .faq-section {
                    padding: 20px;
                }
            }










            /* product */
            
            .containerPro  {
                max-width: 1200px;
                margin: 0 auto;
                padding: 2rem 1rem;
            }

            .headerPro {
                text-align: center;
                margin-bottom: 3rem;
            }

            .headerPro h1 {
                font-size: 2.2rem;
                font-weight: 700;
                color: #ffffff;
                margin-bottom: 0.5rem;
            }

            .headerPro p {
                font-size: 0.95rem;
                color: #ffffff;
                max-width: 600px;
                margin: 0 auto;
            }

            .products-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 1.5rem;
                margin-bottom: 2rem;
            }

            .product-card {
                background: rgba(255, 255, 255, 0.9);
                border-radius: 12px;
                padding: 1.5rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                border: 1px solid rgba(255, 255, 255, 0.2);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                backdrop-filter: blur(10px);
                position: relative;
                overflow: hidden;
            }

            .product-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 3px;
                background: linear-gradient(90deg, #4299e1, #63b3ed);
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .product-card:hover::before {
                transform: translateX(0);
            }

            .product-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            }

            .card-iconPro  {
                width: 48px;
                height: 48px;
                margin-bottom: 1rem;
                padding: 12px;
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .insurance-icon { background: linear-gradient(135deg, #e6f3ff, #cce7ff); }
            .wellness-icon { background: linear-gradient(135deg, #e6ffe6, #ccffcc); }
            .telehealth-icon { background: linear-gradient(135deg, #fff0e6, #ffe6cc); }
            .dental-icon { background: linear-gradient(135deg, #f0e6ff, #e6ccff); }
            .mental-icon { background: linear-gradient(135deg, #ffe6f0, #ffccdf); }
            .fitness-icon { background: linear-gradient(135deg, #e6fff0, #ccffe6); }

            .card-titlePro  {
                font-size: 1.1rem;
                font-weight: 600;
                color: #1a365d;
                margin-bottom: 0.5rem;
            }

            .card-descriptionPro  {
                font-size: 0.85rem;
                color: #4a5568;
                margin-bottom: 1rem;
                line-height: 1.5;
            }

            .card-features {
                list-style: none;
                margin-bottom: 1.5rem;
            }

            .card-features li {
                font-size: 0.8rem;
                color: #2d3748;
                padding: 0.2rem 0;
                position: relative;
                padding-left: 1rem;
            }

            .card-features li::before {
                content: '✓';
                position: absolute;
                left: 0;
                color: #48bb78;
                font-weight: bold;
                font-size: 0.7rem;
            }

            .card-price {
                display: flex;
                align-items: baseline;
                gap: 0.5rem;
                margin-bottom: 1rem;
            }

            .price-main {
                font-size: 1.2rem;
                font-weight: 700;
                color: #1a365d;
            }

            .price-period {
                font-size: 0.75rem;
                color: #718096;
            }

            .card-button {
                width: 100%;
                padding: 0.7rem 1rem;
                background: linear-gradient(135deg, #4299e1, #3182ce);
                color: white;
                border: none;
                border-radius: 8px;
                font-size: 0.85rem;
                font-weight: 500;
                cursor: pointer;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .card-button:hover {
                background: linear-gradient(135deg, #3182ce, #2c5282);
                transform: translateY(-1px);
                box-shadow: 0 4px 15px rgba(66, 153, 225, 0.4);
            }

            .card-button::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
                transform: translate(-50%, -50%);
                transition: width 0.6s, height 0.6s;
            }

            .card-button:active::after {
                width: 300px;
                height: 300px;
            }

            .section-titlePro  {
                font-size: 1.3rem;
                font-weight: 600;
                color: #ffffff;
                margin: 2.5rem 0 1.5rem 0;
                text-align: center;
                position: relative;
            }

            .section-titlePro ::after {
                content: '';
                position: absolute;
                bottom: -0.5rem;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 2px;
                background: linear-gradient(90deg, #4299e1, #63b3ed);
            }

            .disclaimer {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 12px;
                padding: 2rem;
                margin: 3rem 0 2rem 0;
                border-left: 4px solid #4299e1;
                backdrop-filter: blur(10px);
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }

            .disclaimer-title {
                font-size: 1rem;
                font-weight: 600;
                color: #1a365d;
                margin-bottom: 1rem;
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }

            .disclaimer-content {
                font-size: 0.8rem;
                color: #4a5568;
                line-height: 1.6;
                margin-bottom: 1rem;
            }

            .disclaimer-list {
                list-style: none;
                margin: 1rem 0;
            }

            .disclaimer-list li {
                font-size: 0.75rem;
                color: #718096;
                padding: 0.3rem 0;
                position: relative;
                padding-left: 1rem;
            }

            .disclaimer-list li::before {
                content: '•';
                position: absolute;
                left: 0;
                color: #4299e1;
                font-weight: bold;
            }

            .Pro-footer {
                text-align: center;
                padding: 2rem 1rem;
                background: rgba(255, 255, 255, 0.8);
                border-radius: 12px 12px 0 0;
                backdrop-filter: blur(10px);
                margin-top: 3rem;
            }

            .Pro-footer-content {
                font-size: 0.8rem;
                color: #4a5568;
                margin-bottom: 1rem;
            }

            .Pro-footer-links {
                display: flex;
                justify-content: center;
                gap: 2rem;
                flex-wrap: wrap;
                margin-bottom: 1rem;
            }

            .Pro-footer-links a {
                color: #4299e1;
                text-decoration: none;
                font-size: 0.8rem;
                transition: color 0.3s ease;
            }

            .Pro-footer-links a:hover {
                color: #3182ce;
            }

            .floating-elements {
                position: fixed;
                pointer-events: none;
                z-index: -1;
            }

            .floating-circle {
                position: absolute;
                border-radius: 50%;
                background: rgba(66, 153, 225, 0.1);
                animation: float 6s ease-in-out infinite;
            }

            .floating-circle:nth-child(1) {
                width: 80px;
                height: 80px;
                top: 10%;
                left: 10%;
                animation-delay: 0s;
            }

            .floating-circle:nth-child(2) {
                width: 60px;
                height: 60px;
                top: 20%;
                right: 15%;
                animation-delay: 2s;
            }

            .floating-circle:nth-child(3) {
                width: 100px;
                height: 100px;
                bottom: 20%;
                left: 5%;
                animation-delay: 4s;
            }

            .floating-circle:nth-child(4) {
                width: 70px;
                height: 70px;
                bottom: 30%;
                right: 10%;
                animation-delay: 1s;
            }

            @keyframes float {
                0%, 100% { transform: translateY(0px) rotate(0deg); }
                50% { transform: translateY(-20px) rotate(180deg); }
            }

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

            @keyframes slideInLeft {
                from {
                    opacity: 0;
                    transform: translateX(-50px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            .fade-in {
                animation: fadeInUp 0.8s ease-out forwards;
                opacity: 0;
            }

            .slide-in {
                animation: slideInLeft 0.6s ease-out forwards;
                opacity: 0;
            }

            .product-card {
                animation-delay: calc(var(--card-index) * 0.1s);
            }

            .shimmer {
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
                background-size: 200% 100%;
                animation: shimmer 2s infinite;
            }

            @keyframes shimmer {
                0% { background-position: -200% 0; }
                100% { background-position: 200% 0; }
            }

            .pulse-button {
                position: relative;
                overflow: hidden;
            }

            .pulse-button::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
                transform: translate(-50%, -50%);
                transition: width 0.6s, height 0.6s;
            }

            .pulse-button:active::after {
                width: 300px;
                height: 300px;
            }

            @media (max-width: 768px) {
                .containerPro  {
                    padding: 1rem;
                }
                
                .headerPro h1 {
                    font-size: 1.8rem;
                }
                
                .products-grid {
                    grid-template-columns: 1fr;
                    gap: 1rem;
                }

                .disclaimer {
                    padding: 1.5rem;
                    margin: 2rem 0 1rem 0;
                }

                .Pro-footer-links {
                    gap: 1rem;
                }

                .floating-circle {
                    display: none;
                }
            }










            /* testimonials */


        

            .testimonials-container {
                max-width: 1400px;
                margin: 50px auto;
                padding: 0px 15px;
            }

            .section-headertse {
                text-align: center;
                margin-bottom: 60px;
                color: white;
            }

            .section-headertse h2 {
                font-size: 3.5rem;
                margin-bottom: 20px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
                font-weight: 700;
            }

            .section-headertse p {
                font-size: 1.3rem;
                opacity: 0.9;
                max-width: 600px;
                margin: 0 auto;
                line-height: 1.6;
            }

            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
                gap: 30px;
                margin-bottom: 40px;
            }

            .testimonial-card {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                border-radius: 25px;
                padding: 40px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                transition: all 0.4s ease;
                position: relative;
                overflow: hidden;
            }

            .testimonial-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(135deg, #667eea, #764ba2);
            }

            .testimonial-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            }

            .testimonial-header {
                display: flex;
                align-items: center;
                margin-bottom: 25px;
            }

            .testimonial-avatar {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                margin-right: 20px;
                object-fit: cover;
                border: 3px solid #667eea;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

            .testimonial-info h3 {
                font-size: 1.3rem;
                color: #2d3748;
                margin-bottom: 5px;
                font-weight: 600;
            }

            .testimonial-role {
                color: #667eea;
                font-size: 0.95rem;
                font-weight: 500;
            }

            .testimonial-content {
                color: #4a5568;
                line-height: 1.8;
                font-size: 1.1rem;
                margin-bottom: 25px;
                font-style: italic;
                position: relative;
            }

            /* .testimonial-content::before {
                content: '"';
                font-size: 4rem;
                color: #667eea;
                position: absolute;
                top: -20px;
                left: -10px;
                opacity: 0.3;
                font-family: Georgia, serif;
            } */

            .testimonial-rating {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-bottom: 20px;
            }

            .stars {
                display: flex;
                gap: 3px;
            }

            .star {
                color: #ffd700;
                font-size: 1.2rem;
            }

            .rating-text {
                color: #667eea;
                font-weight: 600;
                font-size: 0.95rem;
            }

            .testimonial-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                margin-top: 20px;
            }

            .tag {
                background: linear-gradient(135deg, #667eea, #764ba2);
                color: white;
                padding: 6px 12px;
                border-radius: 20px;
                font-size: 0.85rem;
                font-weight: 500;
            }

            .carousel-container {
                position: relative;
                margin-bottom: 40px;
            }

            .carousel-track {
                overflow: hidden;
                position: relative;
                border-radius: 20px;
            }

            .carousel-slides {
                display: flex;
                transition: transform 0.5s ease;
            }

            .carousel-slide {
                min-width: 100%;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                padding: 50px;
                text-align: center;
                border-radius: 20px;
                margin: 0 10px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .carousel-nav {
                display: flex;
                justify-content: center;
                gap: 10px;
                margin-top: 30px;
            }

            .carousel-dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.5);
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .carousel-dot.active {
                background: white;
                transform: scale(1.2);
            }

            .stats-sectiontae {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 30px;
                margin-top: 60px;
            }

            .stat-card {
                text-align: center;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                padding: 30px;
                border-radius: 20px;
                color: white;
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .stat-number {
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 10px;
                color: #ffd700;
            }

            .stat-labetael {
                font-size: 1.1rem;
                opacity: 0.9;
            }

            .cta-section {
                text-align: center;
                margin-top: 60px;
                padding: 50px;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 25px;
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .cta-section h3 {
                font-size: 2.5rem;
                color: white;
                margin-bottom: 20px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            }

            .cta-section p {
                font-size: 1.2rem;
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 30px;
            }

            .cta-button {
                display: inline-block;
                background: linear-gradient(135deg, #ffd700, #ffed4e);
                color: #2d3748;
                padding: 15px 40px;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 700;
                font-size: 1.1rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                transition: all 0.3s ease;
                cursor: pointer;
                border: none;
            }

            .cta-button:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            }

            .form-modal {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.8);
                backdrop-filter: blur(5px);
                z-index: 1000;
                animation: fadeIn 0.3s ease;
            }

            .form-modal.active {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .form-container {
                background: white;
                border-radius: 25px;
                padding: 40px;
                /* max-width: 500px; */
                /* width: 90%; */
                /* max-height: 80vh; */
                overflow-y: auto;
                /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); */
                position: relative;
                animation: slideIn 0.3s ease;
            }

            .form-close {
                position: absolute;
                top: 20px;
                right: 25px;
                font-size: 2rem;
                color: #666;
                cursor: pointer;
                transition: color 0.3s ease;
            }

            .form-close:hover {
                color: #333;
            }

            .form-header {
                text-align: center;
                margin-bottom: 30px;
            }

            .form-header h3 {
                color: #2d3748;
                font-size: 2rem;
                margin-bottom: 10px;
            }

            .form-header p {
                color: #666;
                font-size: 1.1rem;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-group label {
                display: block;
                margin-bottom: 8px;
                color: #2d3748;
                font-weight: 600;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                width: 100%;
                padding: 12px 16px;
                border: 2px solid #e2e8f0;
                border-radius: 12px;
                font-size: 1rem;
                transition: all 0.3s ease;
                background: #f7fafc;
            }

            .form-group input:focus,
            .form-group select:focus,
            .form-group textarea:focus {
                outline: none;
                border-color: #667eea;
                box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
                background: white;
            }

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

            .form-row {
                display: flex;
                gap: 15px;
            }

            .form-row .form-group {
                flex: 1;
            }

            .checkbox-group {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-bottom: 20px;
            }

            .checkbox-group input[type="checkbox"] {
                width: auto;
                margin: 0;
            }

            .checkbox-group label {
                margin: 0;
                font-weight: normal;
                color: #4a5568;
            }

            .submit-button {
                width: 100%;
                background: linear-gradient(135deg, #667eea, #764ba2);
                color: white;
                padding: 15px;
                border: none;
                border-radius: 12px;
                font-size: 1.1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            }

            .submit-button:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            }

            .submit-button:disabled {
                opacity: 0.6;
                cursor: not-allowed;
                transform: none;
            }

            .success-message {
                display: none;
                background: #d4edda;
                color: #155724;
                padding: 15px;
                border-radius: 12px;
                margin-bottom: 20px;
                border: 1px solid #c3e6cb;
            }

            .success-message.show {
                display: block;
            }

            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }

            @keyframes slideIn {
                from { 
                    opacity: 0;
                    transform: translateY(-50px);
                }
                to { 
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @media (max-width: 768px) {
                .testimonials-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
                
                .testimonial-card {
                    padding: 30px;
                }
                
                .section-headertse h2 {
                    font-size: 2.5rem;
                }
                
                .carousel-slide {
                    padding: 30px;
                }
                
                .stats-sectiontae {
                    grid-template-columns: repeat(1, 1fr);
                }
            }



    /* Careers - Synck Health */




        .containerCareers {
                max-width: 1200px;
                margin: 50px auto;
                padding: 0 20px;
            }

        
            /* Main Content */
            mainCareers {
                margin-top: 80px;
                padding: 4rem 0;
            }

            .heroCareers {
                text-align: center;
                color: white;
                margin-bottom: 4rem;
            }

            .heroCareers h1 {
                font-size: 3.5rem;
                margin-bottom: 1rem;
                font-weight: 700;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            }

            .heroCareers p {
                font-size: 1.3rem;
                margin-bottom: 2rem;
                opacity: 0.9;
            }

            .careers-content {
                background: white;
                border-radius: 20px;
                padding: 3rem;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                margin-bottom: 3rem;
            }

            .section {
                margin-bottom: 3rem;
            }

            .section h2 {
                color: #667eea;
                font-size: 2.2rem;
                margin-bottom: 1rem;
                font-weight: 600;
            }

            .section p {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
                color: #666;
            }

            .benefits {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
                margin-top: 2rem;
            }

            .benefit-card {
                background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
                padding: 2rem;
                border-radius: 15px;
                text-align: center;
                border: 1px solid #e0e8ff;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .benefit-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
            }

            .benefit-icon {
                font-size: 3rem;
                margin-bottom: 1rem;
            }

            .benefit-card h3 {
                color: #667eea;
                margin-bottom: 1rem;
                font-size: 1.3rem;
            }

            .jobs-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
                margin-top: 2rem;
            }

            .job-card {
                background: white;
                border: 2px solid #e0e8ff;
                border-radius: 15px;
                padding: 2rem;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .job-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #667eea, #764ba2);
            }

            .job-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
                border-color: #667eea;
            }

            .job-title {
                font-size: 1.4rem;
                font-weight: 600;
                color: #333;
                margin-bottom: 0.5rem;
            }

            .job-department {
                color: #667eea;
                font-weight: 500;
                margin-bottom: 1rem;
            }

            .job-description {
                color: #666;
                margin-bottom: 1.5rem;
                line-height: 1.6;
            }

            .job-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
                margin-bottom: 1.5rem;
            }

            .job-tag {
                background: #e8f0ff;
                color: #667eea;
                padding: 0.3rem 0.8rem;
                border-radius: 20px;
                font-size: 0.9rem;
                font-weight: 500;
            }

            .apply-btn {
                background: linear-gradient(456deg, #3b82f6 0%, #22adc5 100%);
                color: white;
                padding: 0.8rem 2rem;
                border: none;
                border-radius: 25px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                width: 100%;
                font-size: 1rem;
            }

            .apply-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            }

            /* Modal Styles */
            .modal {
                display: none;
                position: fixed;
                z-index: 2000;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.7);
                backdrop-filter: blur(5px);
            }

            .modal-content {
                background-color: white;
                margin: 5% auto;
                padding: 0;
                border-radius: 20px;
                width: 90%;
                max-width: 600px;
                max-height: 80vh;
                overflow-y: auto;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
                animation: modalSlideIn 0.3s ease;
            }

            @keyframes modalSlideIn {
                from {
                    transform: translateY(-50px);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            .modal-header {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 2rem;
                border-radius: 20px 20px 0 0;
                position: relative;
            }

            .modal-header h2 {
                margin: 0;
                font-size: 1.8rem;
            }

            .close {
                position: absolute;
                right: 1.5rem;
                top: 1.5rem;
                color: white;
                font-size: 2rem;
                font-weight: bold;
                cursor: pointer;
                transition: opacity 0.3s ease;
            }

            .close:hover {
                opacity: 0.7;
            }

            .modal-body {
                padding: 2rem;
            }

            .form-groupCareers {
                margin-bottom: 1.5rem;
            }

            .form-groupCareers label {
                display: block;
                margin-bottom: 0.5rem;
                font-weight: 600;
                color: #333;
            }

            .form-groupCareers input,
            .form-groupCareers select,
            .form-groupCareers textarea {
                width: 100%;
                padding: 0.8rem;
                border: 2px solid #e0e8ff;
                border-radius: 10px;
                font-size: 1rem;
                transition: border-color 0.3s ease;
            }

            .form-groupCareers input:focus,
            .form-groupCareers select:focus,
            .form-groupCareers textarea:focus {
                outline: none;
                border-color: #667eea;
            }

            .form-groupCareers textarea {
                resize: vertical;
                min-height: 120px;
            }

            .file-upload {
                position: relative;
                display: inline-block;
                width: 100%;
            }

            .file-upload input[type="file"] {
                position: absolute;
                opacity: 0;
                width: 100%;
                height: 100%;
                cursor: pointer;
            }

            .file-upload-label {
                display: block;
                padding: 1rem;
                border: 2px dashed #667eea;
                border-radius: 10px;
                text-align: center;
                color: #667eea;
                font-weight: 500;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .file-upload-label:hover {
                background: #f8f9ff;
                border-color: #5a67d8;
            }

            .submit-btn {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 1rem 2rem;
                border: none;
                border-radius: 25px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                width: 100%;
                font-size: 1.1rem;
            }

            .submit-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .heroCareers h1 {
                    font-size: 2.5rem;
                }

                .heroCareers p {
                    font-size: 1.1rem;
                }

                .careers-content {
                    padding: 2rem;
                }

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

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

                .navCareers ul {
                    display: none;
                }
            }


            /* index testimonial */

            
            .testimonial-section {
                width: 100%;
                background: white;
                padding: 40px 20px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }

            .section-header-testimonial {
                text-align: center;
                margin-bottom: 30px;
            }

        

            .section-subtitle {
                font-size: 1rem;
                color: #666;
                max-width: 600px;
                margin: 0 auto;
                line-height: 1.6;
            }

            .testimonial-slider {
                position: relative;
                padding-bottom: 30px;
                overflow: hidden;
                border-radius: 8px;
                background: #f8f9fa;
                border: 1px solid #e9ecef;
            }

            .testimonial-container {
                display: flex;
                transition: transform 0.5s ease;
            }

            .testimonial-slide {
                min-width: 100%;
                padding: 30px;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .testimonial-content {
                max-width: 700px;
                margin-bottom: 20px;
            }

            .testimonial-text {
                font-size: 1rem;
                line-height: 1.6;
                color: #333;
                margin-bottom: 15px;
                font-style: italic;
                position: relative;
            }

            .testimonial-text::before {
                content: '"';
                font-size: 3rem;
                color: #e9ecef;
                position: absolute;
                top: -15px;
                left: -25px;
                font-family: serif;
            }

            .testimonial-author {
                display: flex;
                align-items: center;
                gap: 15px;
                justify-content: center;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background: linear-gradient(45deg, #007bff, #6f42c1);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.2rem;
                color: white;
                font-weight: bold;
                border: 2px solid #e9ecef;
            }

            .author-info {
                text-align: left;
            }

            .author-name {
                font-size: 1rem;
                color: #333;
                font-weight: 600;
                margin-bottom: 3px;
            }

            .author-title {
                font-size: 0.85rem;
                color: #666;
            }

            .service-tag {
                display: inline-block;
                background: #e3f2fd;
                color: #1976d2;
                padding: 4px 12px;
                border-radius: 15px;
                font-size: 0.75rem;
                margin-top: 8px;
                border: 1px solid #bbdefb;
            }

            .star-rating {
                display: flex;
                gap: 3px;
                margin-bottom: 15px;
                justify-content: center;
            }

            .star {
                color: #ffc107;
                font-size: 1.2rem;
            }

            .slider-nav {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-top: 20px;
            }

            .nav-button {
                background: #007bff;
                border: none;
                color: white;
                padding: 8px 12px;
                border-radius: 50%;
                cursor: pointer;
                transition: all 0.3s ease;
                font-size: 1rem;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .nav-button:hover {
                background: #0056b3;
                transform: translateY(-1px);
            }

            .nav-button:disabled {
                background: #6c757d;
                cursor: not-allowed;
                transform: none;
            }

            .dots-container {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 15px;
            }

            .dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #dee2e6;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .dot.active {
                background: #007bff;
                transform: scale(1.2);
            }

            @media (max-width: 768px) {
                .testimonial-section {
                    padding: 30px 15px;
                }

                

                .testimonial-slide {
                    padding: 20px 15px;
                }

                .testimonial-text {
                    font-size: 0.95rem;
                }

                .author-avatar {
                    width: 45px;
                    height: 45px;
                    font-size: 1.1rem;
                }

                .testimonial-text::before {
                    font-size: 2.5rem;
                    top: -12px;
                    left: -18px;
                }

                .nav-button {
                    width: 35px;
                    height: 35px;
                    font-size: 0.9rem;
                }
            }


            /* health-insurance-builder */


            .containerInsur {
                max-width: 1200px;
                margin: 0 auto;
                background: white;
                border-radius: 20px;
                box-shadow: 0 20px 40px rgba(0,0,0,0.1);
                overflow: hidden;
            }

            .headerInsur  {
                background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
                color: white;
                padding: 40px;
                text-align: center;
            }

            .headerInsur  h1 {
                font-size: 2.5rem;
                margin-bottom: 10px;
                font-weight: 700;
            }

            .headerInsur  p {
                font-size: 1.1rem;
                opacity: 0.9;
            }

            .main-contentInsur  {
                padding: 40px;
                display: grid;
                grid-template-columns: 2fr 1fr;
                gap: 40px;
            }

            .form-sectionInsur  {
                background: #f8faff;
                padding: 30px;
                border-radius: 15px;
                border: 1px solid #e2e8f0;
            }

            .form-groupInsur  {
                margin-bottom: 30px;
            }

            .form-groupInsur  label {
                display: block;
                margin-bottom: 12px;
                font-weight: 600;
                color: #2d3748;
                font-size: 1.1rem;
            }

            .plan-cards {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 15px;
                margin-top: 15px;
            }

            .plan-cardInsur  {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 12px;
                padding: 20px;
                text-align: center;
                cursor: pointer;
                transition: all 0.3s ease;
                position: relative;
            }

            .plan-cardInsur:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            }

            .plan-cardInsur.selected {
                border-color: #4facfe;
                background: linear-gradient(135deg, #4facfe10, #00f2fe10);
            }

            .plan-cardInsur.selected::after {
                content: '✓';
                position: absolute;
                top: -8px;
                right: -8px;
                background: #4facfe;
                color: white;
                border-radius: 50%;
                width: 24px;
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: bold;
            }

            .plan-title {
                font-weight: 700;
                font-size: 1.2rem;
                margin-bottom: 10px;
                color: #2d3748;
            }

            .plan-coverage {
                color: #4a5568;
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            .plan-featuresInsur  {
                list-style: none;
                text-align: left;
                padding-left: 10px;
            }

            .plan-featuresInsur  li {
                margin-bottom: 8px;
                color: #718096;
                font-size: 0.9rem;
                display: flex;
                align-items: center;
            }

            .plan-featuresInsur  li::before {
                content: '✓';
                color: #48bb78;
                font-weight: bold;
                margin-right: 8px;
            }

            .select-group {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
                margin-top: 15px;
            }

            .select-option {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 10px;
                padding: 15px;
                text-align: center;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .select-option:hover {
                border-color: #4facfe;
                background: #f7faff;
            }

            .select-option.selected {
                border-color: #4facfe;
                background: #4facfe;
                color: white;
            }

            .addon-section {
                margin-top: 30px;
            }

            .addon-grid {
                display: grid;
                gap: 15px;
                margin-top: 15px;
            }

            .addon-item {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 10px;
                padding: 20px;
                display: flex;
                align-items: center;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .addon-item:hover {
                border-color: #4facfe;
                background: #f7faff;
            }

            .addon-item.selected {
                border-color: #48bb78;
                background: #48bb7810;
            }

            .addon-checkbox {
                width: 20px;
                height: 20px;
                margin-right: 15px;
                accent-color: #48bb78;
            }

            .addon-info h4 {
                color: #2d3748;
                margin-bottom: 5px;
            }

            .addon-info p {
                color: #718096;
                font-size: 0.9rem;
                margin-bottom: 5px;
            }

            .addon-price {
                color: #4facfe;
                font-weight: 600;
            }

            .summary-section {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 30px;
                border-radius: 15px;
                height: fit-content;
                position: sticky;
                top: 20px;
            }

            .summary-title {
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 25px;
                text-align: center;
            }

            .summary-item {
                display: flex;
                justify-content: space-between;
                margin-bottom: 15px;
                padding-bottom: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.2);
            }

            .summary-item:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }

            .summary-total {
                background: rgba(255,255,255,0.1);
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
                text-align: center;
            }

            .total-amount {
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 10px;
            }

            .get-quote-btn {
                background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
                color: white;
                border: none;
                padding: 15px 30px;
                border-radius: 10px;
                font-size: 1.1rem;
                font-weight: 600;
                cursor: pointer;
                width: 100%;
                margin-top: 20px;
                transition: all 0.3s ease;
            }

            .get-quote-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 20px rgba(72, 187, 120, 0.3);
            }

            .benefits-grid {
                display: grid;
                gap: 10px;
                margin-top: 15px;
            }

            .benefit-item {
                background: rgba(255,255,255,0.1);
                padding: 10px;
                border-radius: 8px;
                font-size: 0.9rem;
            }

            @media (max-width: 768px) {
                .main-contentInsur  {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
                
                .plan-cards {
                    grid-template-columns: 1fr;
                }
                
                .headerInsur  h1 {
                    font-size: 2rem;
                }
            }
            
            
            
            /* calculater */

            .containerCal {
                max-width: 950px;
                margin: 30px auto;
                /* margin-top: 50px; */
                background: white;
                border-radius: 12px;
                box-shadow: 0 20px 40px rgba(0,0,0,0.1);
                overflow: hidden;
            }

            .headerCal {
                background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
                color: white;
                padding: 40px 30px;
                text-align: center;
            }

            .headerCal h1 {
                font-size: 2.5rem;
                margin-bottom: 10px;
                font-weight: 700;
            }

            .headerCal p {
                font-size: 1.1rem;
                opacity: 0.9;
            }

            .nav-tabs-Cal {
                display: flex;
                background: #f8f9fa;
                border-bottom: 2px solid #e9ecef;
                flex-wrap: wrap;
            }

            .nav-tab-Cal {
                flex: 1;
                padding: 20px;
                text-align: center;
                cursor: pointer;
                background: #f8f9fa;
                border: none;
                font-size: 1rem;
                font-weight: 600;
                color: #6c757d;
                transition: all 0.3s ease;
                min-width: 150px;
            }

            .nav-tab-Cal:hover {
                background: #e9ecef;
                color: #495057;
            }

            .nav-tab-Cal.active {
                background: white;
                color: #007bff;
                border-bottom: 3px solid #007bff;
            }

            .calculator-content {
                padding: 40px 30px;
                min-height: 600px;
            }

            .calculator-section {
                display: none;
                animation: fadeIn 0.5s ease-in;
            }

            .calculator-section.active {
                display: block;
            }

            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(20px); }
                to { opacity: 1; transform: translateY(0); }
            }

            .form-group-Cal {
                margin-bottom: 25px;
            }

            .form-row-Cal {
                display: flex;
                gap: 20px;
                margin-bottom: 25px;
                flex-wrap: wrap;
            }

            .form-row-Cal .form-group-Cal {
                flex: 1;
                margin-bottom: 0;
                min-width: 200px;
            }

            label {
                display: block;
                margin-bottom: 8px;
                font-weight: 600;
                color: #333;
            }

            input, select {
                width: 100%;
                padding: 12px 15px;
                border: 2px solid #e9ecef;
                border-radius: 10px;
                font-size: 16px;
                transition: border-color 0.3s ease;
            }

            input:focus, select:focus {
                outline: none;
                border-color: #007bff;
                box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
            }

            .unit-toggle {
                display: flex;
                background: #f8f9fa;
                border-radius: 10px;
                padding: 5px;
                margin-bottom: 20px;
            }

            .unit-toggle button {
                flex: 1;
                padding: 10px;
                border: none;
                background: transparent;
                border-radius: 8px;
                cursor: pointer;
                font-weight: 600;
                transition: all 0.3s ease;
            }

            .unit-toggle button.active {
                background: #007bff;
                color: white;
            }

            .calculate-btn {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                border: none;
                padding: 15px 30px;
                border-radius: 10px;
                font-size: 1.1rem;
                font-weight: 600;
                cursor: pointer;
                transition: transform 0.3s ease;
                width: 100%;
            }

            .calculate-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }

            .result {
                margin-top: 30px;
                padding: 25px;
                background: #f8f9fa;
                border-radius: 15px;
                border-left: 5px solid #007bff;
                display: none;
            }

            .result.show {
                display: block;
                animation: slideIn 0.5s ease-out;
            }

            @keyframes slideIn {
                from { opacity: 0; transform: translateX(-20px); }
                to { opacity: 1; transform: translateX(0); }
            }

            .result-value {
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 10px;
            }

            .result-category {
                font-size: 1.2rem;
                font-weight: 600;
                margin-bottom: 15px;
            }

            .result-description {
                color: #6c757d;
                line-height: 1.6;
            }

            .bmi-ranges {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 15px;
                margin-top: 20px;
            }

            .bmi-range {
                padding: 15px;
                border-radius: 10px;
                text-align: center;
                color: white;
                font-weight: 600;
            }

            .underweight { background: #17a2b8; }
            .normal { background: #28a745; }
            .overweight { background: #ffc107; color: #212529; }
            .obese { background: #dc3545; }

            .info-box {
                background: #e3f2fd;
                border-left: 4px solid #2196f3;
                padding: 20px;
                margin-top: 20px;
                border-radius: 0 10px 10px 0;
            }

            .info-box h3 {
                color: #1976d2;
                margin-bottom: 10px;
            }

            .info-box p {
                color: #424242;
                line-height: 1.6;
            }

            @media (max-width: 768px) {
                .headerCal h1 {
                    font-size: 2rem;
                }
                
                .nav-tabs-Cal {
                    flex-direction: column;
                }
                
                .nav-tab-Cal {
                    min-width: auto;
                }
                
                .form-row-Cal {
                    flex-direction: column;
                }
                
                .calculator-content {
                    padding: 20px 15px;
                }
            }
            
            /* privacy */

            .privacy>li{
                margin: 10px 0px;
            }

            .privacycontainer{
                color: #212529 !important;
                background: #f3f6fd;
                margin-bottom: 80px;
            }
            
            /* plans */





 .container-plans {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .heroPlans {
            text-align: center;
            padding: 60px 0 80px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
        }

        .heroPlans h1 {
            font-size: 36px;
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .heroPlans p {
            font-size: 16px;
            color: white;
            max-width: 600px;
            margin: 0 auto 25px;
        }

        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .toggle-container {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
        }

        .toggle-input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #cbd5e1;
            transition: 0.3s;
            border-radius: 26px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .toggle-input:checked + .toggle-slider {
            background-color: #3b82f6;
        }

        .toggle-input:checked + .toggle-slider:before {
            transform: translateX(24px);
        }

        .billing-label {
            font-size: 13px;
            font-weight: 500;
            color: white;
        }

        .billing-label.active {
            color: #0f172a;
        }

        .savings-badge {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            margin-left: 8px;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 0 0 80px;
            margin-top: -40px;
        }

        .plan-card-plans {
            background: white;
            border-radius: 16px;
            padding: 25px 22px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            border: 1px solid #f1f5f9;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
            min-height: 340px;
            display: flex;
            flex-direction: column;
        }

        .plan-card-plans:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .plan-card-plans.featured {
            border: 2px solid #3b82f6;
        }

        .plan-card-plans.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
        }

        .plan-header-pnans {
            text-align: center;
            margin-bottom: 20px;
        }

        .plan-name {
            font-size: 20px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 6px;
        }

        .plan-description {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 18px;
        }

        .plan-price-plans {
            font-size: 28px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 4px;
        }

        .plan-price-plans .currency {
            font-size: 16px;
            vertical-align: top;
        }

        .plan-billing {
            font-size: 11px;
            color: #94a3b8;
        }

        .plan-features-plans {
            list-style: none;
            margin: 20px 0;
            flex-grow: 1;
        }

        .main-features {
            display: block;
        }

        .additional-features {
            display: none;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f1f5f9;
        }

        .plan-features-plans li {
            display: flex;
            align-items: center;
            padding: 6px 0;
            font-size: 12px;
            color: #475569;
        }

        .plan-features-plans li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            margin-right: 10px;
            width: 14px;
            text-align: center;
            font-size: 13px;
        }

        .plan-features-plans li.unavailable {
            color: #94a3b8;
        }

        .plan-features-plans li.unavailable::before {
            content: '×';
            color: #ef4444;
        }

        .plan-actions {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .plan-button {
            width: 100%;
            padding: 11px 18px;
            border: none;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .plan-button.primary {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
        }

        .plan-button.primary:hover {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            transform: translateY(-1px);
        }

        .plan-button.secondary {
            background: #f8fafc;
            color: #475569;
            border: 1px solid #e2e8f0;
        }

        .plan-button.secondary:hover {
            background: #f1f5f9;
            border-color: #cbd5e1;
        }

        .know-more-btn {
            background: transparent;
            color: #3b82f6;
            border: 1px solid #3b82f6;
            font-size: 12px;
            padding: 8px 16px;
        }

        .know-more-btn:hover {
            background: #3b82f6;
            color: white;
        }

        .expanded {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .expanded.show {
            display: flex;
        }

        .expanded-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #64748b;
            cursor: pointer;
            padding: 5px;
        }

        .close-btn:hover {
            color: #374151;
        }

        .expanded-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .expanded-header .plan-name {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .expanded-header .plan-price-plans {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .feature-category {
            margin-bottom: 25px;
        }

        .category-title {
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 12px;
            padding-bottom: 5px;
            border-bottom: 2px solid #f1f5f9;
        }

        .faq-plans{
            padding: 40px 0 80px;
        }

        .faq-plansh2 {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 40px;
        }

        .faq-item-plans {
            background: white;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
            border: 1px solid #f1f5f9;
        }

        .faq-question-plans {
            padding: 20px 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            color: #374151;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer-plans {
            padding: 0 25px 20px;
            font-size: 13px;
            color: #64748b;
            display: none;
        }

        .faq-answer-plans.show {
            display: block;
        }

        .faq-plans{
            color: white;
        }
    
.coleer {
        display: flex;
        flex-direction: row;
         gap: 18px;
        justify-content: space-between;
    }
    @media (max-width: 768px) {

        .coleer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
        .heroPlans h1 {
            font-size: 28px;
        }

        .plans-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .expanded-content {
            margin: 10px;
            padding: 30px 25px;
        }
    }
    
            