 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

 :root {
     --primary-blue: #2563eb;
     --light-blue: #dbeafe;
     --primary-green: #059669;
     --light-green: #d1fae5;
     --secondary-teal: #0891b2;
     --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
     --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
     --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
     --text-dark: #1f2937;
     --text-light: #6b7280;
     --bg-light: #f8fafc;
     --white: #ffffff;
 }

 :root {
     --white: #FFFFFF;
     --deep-blue: #223038;
     --teal: #1751d6;
     --teal-light: #C6F1E7;
     --sky-blue: #0EA5E9;
     --sky-light: #D9ECFF;
     --purple: #1751d6;
     --mint: #10B981;
     --mint-light: #F7FFFA;
     --orange: #F97316;
     --pink: #c0cef4;
     --silver: #E8E8E8;
     --gray-600: #4B5563;
     --gray-400: #9CA3AF;
     --header-height: 60px;
 }

 body {
     /* background-color: black; */
     font-family: "Poppins", sans-serif;
 }




 /* Header Styles */
 header {
     position: sticky;
     top: 0;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--silver);
     z-index: 1000;
     padding: 0;
     height: var(--header-height);
 }

 .header-container {
     max-width: 1600px;
     margin: 0 auto;
     padding: 10px 16px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     height: 100%;
 }

 /* Logo Styles */
 .logo {
     font-size: 16px;
     font-weight: 700;
     color: var(--deep-blue);
     text-decoration: none;
     letter-spacing: -0.5px;
     display: flex;
     align-items: center;
     gap: 8px;
     position: relative;
 }

 .logo-icon {
     width: 32px;
     height: 32px;
     background: linear-gradient(135deg, var(--teal) 0%, var(--sky-blue) 50%, var(--purple) 100%);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     animation: pulse 3s ease-in-out infinite;
 }

 .logo-icon::before {
     content: '';
     position: absolute;
     width: 12px;
     height: 12px;
     background: white;
     border-radius: 50%;
     top: 6px;
     left: 6px;
     animation: heartbeat 1.5s ease-in-out infinite;
 }

 .logo-icon::after {
     content: '';
     position: absolute;
     width: 8px;
     height: 8px;
     background: rgba(255, 255, 255, 0.6);
     border-radius: 50%;
     bottom: 6px;
     right: 6px;
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }
 }

 @keyframes heartbeat {

     0%,
     100% {
         transform: scale(1);
         opacity: 1;
     }

     50% {
         transform: scale(1.1);
         opacity: 0.8;
     }
 }

 .logo-text {
     background: linear-gradient(135deg, var(--teal), var(--sky-blue), var(--purple));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 /* Navigation Styles */
 .nav-wrapper {
     position: relative;
     flex: 1;
     display: flex;
     justify-content: center;
 }

 .nav-desktop {
     display: flex;
     gap: 20px;
     align-items: center;
     justify-content: center;
 }

 .nav-item {
     position: relative;
     cursor: pointer;
     font-size: 14px;
     font-weight: 500;
     color: var(--deep-blue);
     transition: all 0.3s;
     padding: 6px 12px;
     border-radius: 6px;
     white-space: nowrap;
 }

 .nav-item:hover {
     background: var(--mint-light);
     color: var(--teal);
 }






 /* Mega Menu Styles - Centered on Screen */
 .mega-menu {
     position: fixed;
     top: calc(var(--header-height) - 20px);
     /* Pull up slightly to create overlap */
     left: 50%;
     transform: translateX(-50%);
     background: white;
     border-radius: 16px;
     box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
     /*padding: 20px 0 0;*/
     /* Add top padding to create bridge */
     min-width: 700px;
     max-width: 90vw;
     display: none;
     border: 1px solid var(--silver);
     border-top: none;
     /* Remove top border */
     z-index: 999;
     overflow: visible;
     margin-top: 0;
 }

 /* Create a transparent bridge between nav item and mega menu */


 .nav-item:hover .mega-menu {
     display: block;
 }

 .mega-menu-content {
     display: grid;
     grid-template-columns: 1fr 280px;
     border-radius: 16px;
     overflow: hidden;
 }

 .mega-menu-left {
     padding: 32px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 28px;
 }

 .mega-menu-left1 {
     padding: 32px;
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 28px;
 }

 .mega-menu-section h4 {
     font-size: 10px;
     font-weight: 600;
     color: var(--teal);
     text-transform: uppercase;
     letter-spacing: 0.8px;
     margin-bottom: 14px;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .mega-menu-section h4::before {
     content: '';
     width: 3px;
     height: 12px;
     background: linear-gradient(180deg, var(--teal), var(--sky-blue));
     border-radius: 2px;
 }

 .mega-menu-item {
     padding: 8px 0;
     font-size: 11px;
     color: var(--deep-blue);
     transition: all 0.2s;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .mega-menu-item::before {
     content: '→';
     opacity: 0;
     transform: translateX(-8px);
     transition: all 0.2s;
     color: var(--teal);
 }

 .mega-menu-item:hover {
     color: var(--teal);
     padding-left: 4px;
 }

 .mega-menu-item:hover::before {
     opacity: 1;
     transform: translateX(0);
 }

 .mega-menu-item-desc {
     font-size: 10px;
     color: var(--gray-400);
     margin-top: 2px;
     display: block;
 }

 .mega-menu-right {
     background: linear-gradient(135deg, var(--teal-light) 0%, var(--sky-light) 100%);
     padding: 32px 24px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .mega-menu-image {
     width: 100%;
     height: 100px;
     overflow: hidden;
     background: white;
     border-radius: 12px;
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 10px;
     color: var(--gray-400);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 }

 .mega-menu-message {
     font-size: 11px;
     color: var(--gray-600);
     font-style: italic;
     line-height: 1.6;
 }

 .mega-menu-cta {
     /* margin-top: 16px; */
     padding: 8px 16px;
     background: white;
     border: 1px solid var(--teal);
     border-radius: 6px;
     font-size: 11px;
     font-weight: 500;
     color: var(--teal);
     text-align: center;
     cursor: pointer;
     transition: all 0.3s;
 }

 .mega-menu-cta:hover {
     background: var(--teal);
     color: white;
 }

 .tagline {
     font-size: 10px;
     color: var(--gray-400);
     text-align: center;
     font-style: italic;
     margin-top: 0;
     margin-bottom: 0;
     padding-bottom: 10px;
     grid-column: 1 / -1;
     padding-top: 10px;
     border-top: 1px solid var(--silver);
     border-bottom: 1px solid var(--silver);
 }

 /* Header CTAs */
 .header-ctas {
     display: flex;
     gap: 8px;
     align-items: center;
 }

 .btn-login,
 .btn-primary,
 .btn-secondary,
 .btn-doctor {
     padding: 6px 14px;
     border-radius: 6px;
     font-size: 16px;
     font-weight: 400;
     text-decoration: none;
     transition: all 0.3s;
     border: none;
     cursor: pointer;
     white-space: nowrap;
 }

 .btn-login {
     background: transparent;
     color: var(--deep-blue);
     border: 1px solid var(--silver);
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--teal), var(--sky-blue));
     color: white;
     box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
 }

 .btn-doctor {
     background: linear-gradient(135deg, var(--purple), var(--pink));
     color: white;
     box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
 }

 .btn-login:hover {
     background: var(--mint-light);
     border-color: var(--teal);
 }

 .btn-primary:hover,
 .btn-doctor:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
 }

 .lang {
     font-size: 10px;
     color: var(--deep-blue);
     padding: 6px 10px;
     border: 1px solid var(--silver);
     border-radius: 6px;
     cursor: pointer;
     transition: all 0.3s;
 }

 .lang:hover {
     border-color: var(--teal);
     background: var(--mint-light);
 }

 /* Mobile Navigation */
 .mobile-nav {
     display: none;
 }

 .mobile-menu-item {
     padding: 12px 16px;
     border-bottom: 1px solid var(--silver);
 }

 .mobile-menu-item h5 {
     font-size: 14px;
     font-weight: 600;
     color: var(--deep-blue);
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .mobile-menu-item ul {
     list-style: none;
     padding-left: 16px;
 }

 .mobile-menu-item ul li {
     padding: 6px 0;
     font-size: 12px;
     color: var(--gray-600);
 }

 .mobile-menu-item ul li a {
     color: var(--gray-600);
     text-decoration: none;
 }

 .mobile-menu-item ul li a:hover {
     color: var(--teal);
 }

 .mobile-ctas {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-top: 16px;
     padding: 0 16px 16px;
 }

 .mobile-ctas .btn {
     flex: 1;
     min-width: 120px;
     justify-content: center;
 }

 /* Modal Styles */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(4px);
     z-index: 2000;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .modal.active {
     display: flex !important ;
 }

 .modal-content {
     background: white;
     border-radius: 16px;
     padding: 40px;
     max-width: 500px;
     width: 100%;
     max-height: 90vh;
     overflow-y: auto;
     position: relative;
     animation: modalSlideIn 0.3s ease-out;
 }

 .modal-content1 {
     background: white;
     border-radius: 16px;
     padding: 40px;
     max-width: 900px;
     width: 100%;
     max-height: 90vh;
     overflow-y: auto;
     position: relative;
     animation: modalSlideIn 0.3s ease-out;
 }

 @keyframes modalSlideIn {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .modal-close {
     position: absolute;
     top: 16px;
     right: 16px;
     background: transparent;
     border: none;
     font-size: 24px;
     cursor: pointer;
     color: var(--gray-400);
     transition: color 0.3s;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 6px;
 }

 .modal-close:hover {
     color: var(--deep-blue);
     background: var(--silver);
 }

 .modal h2 {
     font-size: 22px;
     margin-bottom: 8px;
 }

 .modal p {
     font-size: 12px;
     color: var(--gray-600);
     margin-bottom: 24px;
 }

 /* Form Styles */
 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     font-size: 11px;
     font-weight: 500;
     margin-bottom: 6px;
     color: var(--deep-blue);
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 10px 12px;
     border: 1px solid var(--silver);
     border-radius: 8px;
     font-size: 12px;
     font-family: 'Inter', sans-serif;
     transition: all 0.3s;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: var(--teal);
     box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 100px;
 }

 /* Responsive Styles */
 @media (max-width: 992px) {
     .nav-desktop {
         display: none;
     }

     .mobile-nav {
         display: block;
         background-color: white;
     }

     .mega-menu {
         display: none !important;
     }

     .header-ctas {
         display: none;
     }

     .mobile-ctas {
         display: flex !important;
     }
 }

 @media (max-width: 768px) {
     .mega-menu-content {
         grid-template-columns: 1fr;
     }

     .mega-menu-left {
         grid-template-columns: 1fr;
     }
     .mega-menu-left1 {
         grid-template-columns: 1fr;
     }

     :root {
         --header-height: 70px;
     }
 }

 @media (max-width: 576px) {
     .header-container {
         padding: 10px;
     }

     .logo-text {
         display: none;
     }

     .mega-menu {
         min-width: 95vw;
     }

     :root {
         --header-height: 80px;
     }
 }

 /* 
 .mega-menu-link {
     min-width: 220px;
     font-size: 16px;
     text-decoration: none;
     color: var(--text-dark);
     font-size: 0.8rem;
     font-weight: 400;
     padding: 0.6rem;
     border-radius: 8px;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.8rem;
 }

 .mega-menu-icon {
     width: 40px;
     height: 40px;
     background: var(--gradient-2);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 0.75rem;
     flex-shrink: 0;
 }

 .mega-menu-icon i {
     font-size: 15px;
 }

 .mega-menu-text p {
     margin-bottom: 0;
     font-size: 13px;
     text-wrap: auto;
     line-height: 1rem;
 }

 .mega-menu-text h5 {
     margin-bottom: 5px;
     font-size: 16px;
 }

 .magamenu.show {
     display: grid;
 }

 .magamenu {
     grid-template-columns: 1fr 1fr 1fr;
     gap: 12px;
     padding: 2rem;

 }

 .mega-menu-section {
     padding-left: 0;
 }

 .mega-menu-section h4 {
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--primary-blue);
     margin-bottom: 1rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .navbar-brand img {
     height: 30px;
 }

 .dropdown-toggle::after {
     transition: transform 0.3s ease;
 }

 .dropdown-toggle.show::after {
     transform: rotate(180deg);
 }

 .dropdown-item {
     padding: 10px;
     transition: background-color 1s ease, border-radius 1s ease;
 }

 .dropdown-item:hover {
     background-color: #c0cef4;
     border-radius: 4px;

 }

 .nav-item a {
     font-size: 14px;
 }


 @media (max-width: 850px) {
     .magamenu {
         
         grid-template-columns: 1fr;
         gap: 12px;
         padding: 1rem;

     }
 } */


 /* @media all and (min-width: 992px) {
     .dropdown-menu {
         width: 13rem;
     }

     .mega-submenu {
         left: 100%;
         top: 0;
         min-width: 25rem;
     }

     .ktm-mega-menu {
         position: static;
     }

     .mega-menu {
         left: 0;
         right: 0;
         width: 100%;
     }

     .dropdown-menu li {
         position: relative;
     }

     .dropdown-menu .submenu {
         display: none;
         left: 100%;
         top: 0;
     }

     .dropdown-menu>li:hover>.submenu,
     .dropdown:hover>.dropdown-menu {
         display: block;
     }
 } */



 /* .megamenu-content {
    background-color: white;
    border: 1px solid black;
     max-width: 950px;
     cursor: pointer;
     font-size: 11px;
     font-weight: 500;
     color: var(--deep-blue);
     transition: all 0.3s;
     padding: 6px 12px;
     border-radius: 6px;
     white-space: nowrap;
 }

.menu-box{
    width: 280px;
} */

 /* .mega-link {
            padding: 4px 0;
            font-size: 11px;
            color: var(--deep-blue);
            transition: all 0.2s;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        } */















 /* Hero Section */
 .hero {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: var(--white);
     padding: 60px 0;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
 }

 .hero-content {
     position: relative;
     z-index: 2;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
 }

 .hero-text h1 {
     font-size: 38px;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 15px;
 }

 .hero-text p {
     font-size: 16px;
     margin-bottom: 25px;
     opacity: 0.9;
 }

 .hero-stats {
     display: flex;
     gap: 30px;
     margin-top: 25px;
 }

 .stat {
     text-align: center;
 }

 .stat-number {
     font-size: 24px;
     font-weight: 700;
 }

 .stat-label {
     font-size: 11px;
     opacity: 0.8;
 }

 .hero-visual {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .hero-card {
     /* background: rgba(255,255,255,0.15); */
     /* backdrop-filter: blur(10px); */
     /* padding: 25px; */
     border-radius: 15px;
     overflow: hidden;
     /* border: 1px solid rgba(255,255,255,0.2); */
 }

 /* Quick Services */
 .quick-services {
     padding: 50px 0;
     background: var(--bg-light);
 }

 .section-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .section-title {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--text-dark);
 }

 .section-subtitle {
     font-size: 14px;
     color: var(--text-light);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
 }

 .service-card {
     background: var(--white);
     padding: 25px;
     border-radius: 12px;
     text-align: center;
     transition: all 0.3s;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .service-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
 }

 .service-icon {
     width: 50px;
     height: 50px;
     margin: 0 auto 15px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     color: var(--white);
 }

 .service-card:nth-child(1) .service-icon {
     background: var(--gradient-1);
 }

 .service-card:nth-child(2) .service-icon {
     background: var(--gradient-2);
 }

 .service-card:nth-child(3) .service-icon {
     background: var(--gradient-3);
 }

 .service-card:nth-child(4) .service-icon {
     background: var(--gradient-4);
 }

 .service-card:nth-child(5) .service-icon {
     background: var(--gradient-1);
 }

 .service-card:nth-child(6) .service-icon {
     background: var(--gradient-2);
 }

 .service-card:nth-child(7) .service-icon {
     background: var(--gradient-3);
 }

 .service-card:nth-child(8) .service-icon {
     background: var(--gradient-4);
 }

 .service-card h3 {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 8px;
     color: var(--text-dark);
 }

 .service-card p {
     font-size: 12px;
     color: var(--text-light);
     margin-bottom: 15px;
 }

 .service-card .btn {
     font-size: 11px;
     padding: 6px 12px;
 }

 /* Corporate Section */
 .corporate-section {
     padding: 60px 0;
     background: var(--white);
 }

 .corporate-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
 }

 .corporate-visual img {
     max-width: 380px;
     height: 100%;
 }

 .corporate-text h2 {
     font-size: 32px;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--text-dark);
 }

 .corporate-text p {
     font-size: 14px;
     color: var(--text-light);
     margin-bottom: 20px;
 }

 .features-list {
     list-style: none;
     margin-bottom: 25px;
 }

 .features-list li {
     padding: 8px 0;
     font-size: 13px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .features-list i {
     color: var(--primary-green);
     font-size: 12px;
 }

 .corporate-visual {
     display: grid;
     grid-template-columns: 1fr;
     justify-items: center;
     gap: 15px;
 }

 .corporate-visual img {
     width: 100%;
     border-radius: 8px;
 }

 .metric-card {
     background: linear-gradient(135deg, var(--light-blue), var(--light-green));
     padding: 20px;
     border-radius: 10px;
     text-align: center;
 }

 .metric-number {
     font-size: 22px;
     font-weight: 700;
     color: var(--primary-blue);
 }

 .metric-label {
     font-size: 11px;
     color: var(--text-light);
     margin-top: 5px;
 }

 /* Pricing Section */
 .pricing-section {
     padding: 60px 0;
     background: var(--bg-light);
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
     margin-top: 40px;
 }

 .pricing-card {
     background: var(--white);
     border-radius: 15px;
     padding: 30px;
     text-align: center;
     position: relative;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
     transition: all 0.3s;
     display: flex;
     justify-content: space-between;
     flex-direction: column;
 }

 .pricing-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .pricing-card.popular {
     border: 2px solid var(--primary-blue);
     transform: scale(1.05);
 }

 .popular-badge {
     position: absolute;
     top: -10px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--gradient-3);
     color: var(--white);
     padding: 5px 15px;
     border-radius: 15px;
     font-size: 10px;
     font-weight: 600;
 }

 .pricing-card h3 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .price {
     font-size: 32px;
     font-weight: 700;
     color: var(--primary-blue);
     margin-bottom: 15px;
 }

 .price-period {
     font-size: 12px;
     color: var(--text-light);
 }

 .features {
     list-style: none;
     margin: 20px 0;
     text-align: left;
 }

 .features li {
     padding: 6px 0;
     font-size: 12px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .features i {
     color: var(--primary-green);
     font-size: 10px;
 }

 /* Partners Section */
 .partners-section {
     padding: 50px 0;
     background: var(--white);
 }

 .partners-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin-top: 30px;
 }

 .partner-card {
     background: var(--bg-light);
     padding: 20px;
     border-radius: 10px;
     text-align: center;
     transition: all 0.3s;
 }

 .partner-card:hover {
     background: var(--white);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

 .partner-icon {
     width: 120px;
     height: 120px;
     margin: 0 auto 10px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     color: var(--white);
 }


 /* Footer */
 .footer {
     background: var(--text-dark);
     color: var(--white);
     padding: 40px 0 20px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin-bottom: 30px;
 }

 .footer-section h4 {
     font-size: 14px;
     font-weight: 600;
     margin-bottom: 15px;
 }

 .footer-section ul {
     list-style: none;
     padding: 0;
 }

 .footer-section ul li {
     margin-bottom: 8px;
 }

 .footer-section ul li div{
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     font-size: 12px;
     transition: color 0.3s;
     cursor: pointer;
 }
 .footer-section ul li a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     font-size: 12px;
     transition: color 0.3s;
     cursor: pointer;
 }

 .footer-section ul li div:hover {
     color: var(--white);
 }
 .footer-section ul li a:hover {
     color: var(--white);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
     text-align: center;
     font-size: 11px;
     color: rgba(255, 255, 255, 0.5);
 }

 @media (max-width: 1024px) {
     .corporate-content {
         display: flex;
         flex-direction: column-reverse;
     }
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {
     .nav-menu {
         display: none;
     }

     .hero-content {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .hero-text h1 {
         font-size: 28px;
     }

     .hero-stats {
         justify-content: center;
     }

     .corporate-content {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .services-grid {
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     }

     .pricing-grid {
         grid-template-columns: 1fr;
     }

     .pricing-card.popular {
         transform: none;
     }
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .service-card,
 .pricing-card,
 .partner-card {
     animation: fadeInUp 0.6s ease-out;
 }

 .service-card:nth-child(even) {
     animation-delay: 0.1s;
 }

 .pricing-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .pricing-card:nth-child(3) {
     animation-delay: 0.4s;
 }

 /* Chatbot */
 .chatbot {
     position: fixed;
     bottom: 20px;
     right: 20px;
     width: 50px;
     height: 50px;
     background: var(--gradient-3);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
     transition: all 0.3s;
     z-index: 1000;
 }

 .chatbot:hover {
     transform: scale(1.1);
     box-shadow: 0 6px 20px rgba(79, 172, 254, 0.6);
 }


 .form-container {
     display: none;
     top: 0;
     width: 100vw;
     background-color: #000000d0;
     height: 100vh;
     position: fixed;
     z-index: 5;
     scroll-behavior: none;
     justify-content: center;
     align-items: center;
 }

 .form {
     max-width: 380px;
     width: 100%;
     position: relative;
     background-color: white;
     border: 1px solid black;
     padding: 20px;
     border-radius: 8px;
     z-index: 5;


 }

 .close {
     position: absolute;
     right: 15px;
     border-radius: 4px;
     border: 1px solid black;
     /* background-color: red; */
     /* color: white; */
     width: 25px;
     height: 25px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .form h2 {
     font-size: 24px;
     text-transform: uppercase;
 }

 .onboardingforms {
     display: none;
     justify-content: center;
     z-index: 5;
     position: fixed;
     width: 100vw;
     height: 100vh;
     top: 0;
     background-color: black;
 }

 .footermenuy {
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 15px;
     padding-bottom: 20px;

 }

 .footermenuy a {
     color: white;
     text-decoration: none;
     font-size: 13px;
 }

 .footermenuy:nth-child(odd) {
     font-size: 18px;
 }


 /* --------------- */

 .active {
     display: block !important;
 }

 #wellness-services,
 #protection-services {
     display: none
 }

 .btn-outline-primar {
     background: linear-gradient(135deg, var(--purple), var(--pink));
     color: white;
     box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
     border: none !important;
 }

 .btn:hover,
 .btn-outline-primar:hover {
     background-color: var(--purple) !important;
     color: white;
     border-color: white !important;
 }

 .teams-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
     margin-top: 40px;
 }

 .team-icon {
     height: 280px;
     border-radius: 12px;
     overflow: hidden;
     background: linear-gradient(135deg, #C6F1E7, #D9ECFF);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     margin: 0 auto 20px;
 }

 .hero-section {
            background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
      
        
        .wellness-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 2;
            border: none;
        }
        
        .wellness-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }
        
        .card-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .icon-mental {
            background-color: #E3F2FD;
            color: var(--primary-color);
        }
        
        .icon-analytics {
            background-color: #E8F5E9;
            color: #2E7D32;
        }
        
        .icon-fitness {
            background-color: #FFF3E0;
            color: #E65100;
        }
        
        .wellness-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-text);
        }
        
        .wellness-desc {
            color: #546E7A;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .wellness-tag {
            display: inline-block;
            background-color: var(--light-bg);
            color: var(--dark-text);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        
        .wellness-image {
            border-radius: 12px;
            overflow: hidden;
            height: 200px;
            margin-bottom: 20px;
        }
        
        .wellness-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }
        
        .section-title h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #546E7A;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .platform-features {
            background: white;
            padding: 60px 0;
        }
        
        .feature-item {
            text-align: center;
            padding: 25px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            background-color: var(--light-bg);
            border-radius: 12px;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .feature-desc {
            color: #546E7A;
            font-size: 0.95rem;
        }

       