     /* Base styles and variables */
        :root {
            --primary-blue: #0b3a77;
            --secondary-blue: #0e2955;
            --light-blue: #e8f0fe;
            --dark-blue: #0d47a1;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --text-dark: #333333;
            --text-light: #666666;
            --glass-bg: rgba(255, 255, 255, 0.25);
            --glass-border: rgba(255, 255, 255, 0.18);
            --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            color: var(--text-dark);
            overflow-x: hidden;
        }

        section {
            position: relative;
            width: 100%;
            padding: 100px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            display: inline-block;
            padding: 12px 30px;
            background-color: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-blue);
            border-radius: 2px;
        }

        /* Hero Section */
        #hero {
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            transition: opacity 0.8s ease;
        }

        .h1-prevent{font-family: "Noto Sans",Sans-Serif;
   background-image: url(img/food1.png);
   background-position: cover;
   background-clip:text;
   color: transparent;
   animation: animate 20s linear infinite;}

   @keyframes animate{
  to{background-position:-500px;}
}

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -2;
        }

        .video-background iframe {
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
            animation: fadeIn 1.5s ease-out;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .hero-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .hero-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 20px;
            width: 150px;
            box-shadow: var(--shadow);
            animation: pulse 3s infinite ease-in-out, resizeCards 8s infinite ease-in-out;
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .hero-card:hover {
            transform: translateY(-10px);
        }

        .hero-card:nth-child(2) {
            animation-delay: 0.5s, 2s;
        }

        .hero-card:nth-child(3) {
            animation-delay: 1s, 4s;
        }

        .hero-card i {
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: block;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 2rem;
            color: white;
        }

        /* Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(-50px);
            opacity: 0;
            transition: all 0.4s ease;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .popup-overlay.active .popup-content {
            transform: translateY(0);
            opacity: 1;
        }

        .popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-blue);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            background: var(--dark-blue);
            transform: rotate(90deg);
        }

        .popup-video {
            width: 100%;
            height: 400px;
            border-radius: 20px 20px 0 0;
            overflow: hidden;
        }

        .popup-video iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .popup-text {
            padding: 30px;
        }

        .popup-text h2 {
            text-align: left;
            margin-bottom: 15px;
            color: var(--primary-blue);
        }

        .popup-text p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* About Section */
        #about {
            color: var(--white);
            margin-top: 100vh;
            position: relative;
            z-index: 20;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
            animation: slideFromBottom 1s ease-out;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            animation: zoomIn 1s ease-out;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Services Section */
        #services {
            color: white;
            position: relative;
        }

     .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#services {
    position: relative;
    width: 100%;
    min-height: 100vh; /* forces auto height on mobile */
    display: flex;
    align-items: center;
    padding: 0;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    #services {
        min-height: 120vh; /* increases mobile height automatically */
    }

    .background-video {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}


        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .service-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .service-card i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--light-blue);
            transition: all 0.3s ease;
        }

        .service-card:hover i {
            transform: scale(1.2);
        }

        .service-card h3 {
            margin-bottom: 15px;
            color: white;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.8);
        }

      

        /* Features Section */
        #features {
            position: relative;
            padding: 0px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }

.features-bg {
  background: #F3FBFF;
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

.features-bg .bubble {
  position: absolute;
  bottom: -50px;
  width: 20px;
  height: 20px;
  background: rgba(21, 119, 180, 0.4);
  border-radius: 50%;
  animation: bubbleUp 2s infinite ease-in;
}

@keyframes bubbleUp {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-800px) scale(1.5); opacity: 0; }
}



     

        .features-container {
            position: relative;
            z-index: 1;
            padding: 0 20px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.95);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            background: var(--primary-blue);
        }

        .feature-icon i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon i {
            color: white;
            transform: scale(1.1);
        }

        .feature-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .feature-content p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .features-cta {
            text-align: center;
            margin-top: 40px;
        }

        /* Feature-specific animations */
        .feature-water .feature-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top: 2px solid var(--primary-blue);
            animation: waterRotate 3s linear infinite;
        }

        .feature-air .feature-icon {
            animation: airGlow 3s ease-in-out infinite alternate;
        }

        .feature-food .feature-icon {
            animation: foodPulse 2s ease-in-out infinite;
        }

        .feature-score .feature-icon {
            position: relative;
        }

        .feature-score .feature-icon::before {
            content: '95%';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1rem;
            font-weight: bold;
            color: var(--primary-blue);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-score .feature-icon::before {
            color: white;
        }

        .feature-plan .feature-icon {
            animation: planSlide 4s ease-in-out infinite;
        }

        /* Modern Wellness Sections */
        .wellness-section {
            padding: 100px 0;
            position: relative;
        }

        .wellness-water {
            background: linear-gradient(135deg, rgb(0,168,255), rgb(0,242,254));
        }

        .wellness-air {
            background: linear-gradient(135deg, rgb(0,94,184), rgb(0,163,255));
        }

        .wellness-food {
            background: linear-gradient(135deg, rgb(23,205,255), rgb(165,243,255));
        }

        .wellness-container {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .wellness-content {
            flex: 1;
        }

        .wellness-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .wellness-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .wellness-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
        }

        .water-card::before {
            background: linear-gradient(to right, #013983, #4285f4);
        }

        .air-card::before {
            background: linear-gradient(to right, #00bcd4, #0097a7);
        }

        .food-card::before {
            background: linear-gradient(to right, #4caf50, #2e7d32);
        }

        .wellness-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2.5rem;
            color: white;
        }

        .water-icon {
            background: linear-gradient(135deg, #09356e, #244986);
            box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
        }

        .air-icon {
            background: linear-gradient(135deg, #00bcd4, #0097a7);
            box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
        }

        .food-icon {
            background: linear-gradient(135deg, #4caf50, #2e7d32);
            box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
        }

        .wellness-stats {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .water-stat .stat-number {
            color: #1a73e8;
        }

        .air-stat .stat-number {
            color: #00bcd4;
        }

        .food-stat .stat-number {
            color: #4caf50;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .wellness-visual-image {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
        }

        .wellness-visual-image:hover {
            transform: scale(1.03);
        }

        /* Testimonials Section */
        #testimonials {
            background-color: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .testimonials-container {
            position: relative;
            height: 400px;
            perspective: 1000px;
            align-items: center;
        }

        .testimonial-card {
            position: absolute;
            width: 300px;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease, opacity 0.5s ease;
            opacity: 0;
        }

        .testimonial-card.active {
            opacity: 1;
            transform: translateZ(0);
        }

        .testimonial-card.prev {
            transform: translateX(-100%) rotateY(-5deg) scale(0.9);
            opacity: 0.7;
        }

         .testimonial-card.prev {
            transform: translateX(-100%) rotateY(-10deg) scale(0.9);
            opacity: 0.7;
        }

        .testimonial-card.next {
            transform: translateX(100%) rotateY(10deg) scale(0.9);
            opacity: 0.7;
        }

        .testimonial-content {
            text-align: center;
        }

        .customer-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
        }

        .customer-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .customer-name {
            font-weight: 600;
        }

        /* Why Choose Section */
        #why-choose {
            background-color: var(--white);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--primary-blue);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 50%;
            padding: 0 40px;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-icon {
            position: absolute;
            top: 0;
            width: 60px;
            height: 60px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .timeline-item:nth-child(odd) .timeline-icon {
            right: -30px;
        }

        .timeline-item:nth-child(even) .timeline-icon {
            left: -30px;
        }

        .timeline-content {
            background: var(--light-gray);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-content {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        /* CTA Section */
        #cta {
           
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            margin-bottom: 20px;
            animation: fadeIn 1s ease-out;
        }

        .cta-content p {
            margin-bottom: 30px;
            font-size: 1.2rem;
        }

        .ripple-btn {
            position: relative;
            overflow: hidden;
        }

        .ripple-btn span {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            border-radius: 50%;
            animation: ripple 1s linear infinite;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideFromBottom {
            from { 
                opacity: 0;
                transform: translateY(50px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from { 
                opacity: 0;
                transform: scale(0.9);
            }
            to { 
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }

        @keyframes ripple {
            0% {
                width: 0;
                height: 0;
                opacity: 0.5;
            }
            100% {
                width: 500px;
                height: 500px;
                opacity: 0;
            }
        }

        /* Hero Card Auto-Resizing Animation */
        @keyframes resizeCards {
            0% { 
                transform: scale(1); 
                box-shadow: var(--shadow);
            }
            25% { 
                transform: scale(1.05); 
                box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
            }
            50% { 
                transform: scale(1); 
                box-shadow: var(--shadow);
            }
            75% { 
                transform: scale(1.05); 
                box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
            }
            100% { 
                transform: scale(1); 
                box-shadow: var(--shadow);
            }
        }

        /* Feature Animations */
        @keyframes waterRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes airGlow {
            0% { box-shadow: 0 0 5px rgba(66, 133, 244, 0.5); }
            100% { box-shadow: 0 0 20px rgba(66, 133, 244, 0.8); }
        }

        @keyframes foodPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes planSlide {
            0% { transform: translateX(0); }
            50% { transform: translateX(5px); }
            100% { transform: translateX(0); }
        }

        /* Responsive Styles - Text Size Adjustments */
        @media (max-width: 1200px) {
            .container {
                max-width: 95%;
            }
            
            .hero-card {
                width: 140px;
            }
            
            .wellness-container {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            /* Tablet Text Size Adjustments */
            h1 {
                font-size: 3rem;
            }
            
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            h3 {
                font-size: 1.5rem;
            }
            
            p {
                font-size: 1rem;
            }
            
            .hero-content p {
                font-size: 1.3rem;
            }
            
            .feature-content h3 {
                font-size: 1.3rem;
            }
            
            .stat-number {
                font-size: 1.7rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .wellness-container {
                flex-direction: column;
                gap: 40px;
            }
            
            .wellness-water .wellness-container,
            .wellness-food .wellness-container {
                flex-direction: column;
            }
            
            .wellness-air .wellness-container {
                flex-direction: column-reverse;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 80px;
                padding-right: 0;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-icon {
                left: 10px !important;
            }
            
            .hero-card {
                width: 130px;
                padding: 15px;
            }
            
            .hero-card i {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            /* Mobile Text Size Adjustments */
            h1 {
                font-size: 2.5rem;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            h3 {
                font-size: 1.3rem;
            }
            
            p {
                font-size: 0.95rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .feature-content h3 {
                font-size: 1.2rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .cta-content p {
                font-size: 1rem;
            }
            
            .hero-cards {
                flex-direction: row;
                align-items: center;
                gap: 15px;
            }
            
            .hero-card {
                width: 120px;
                padding: 12px;
            }
            
            .hero-card i {
                font-size: 1.8rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .feature-card {
                padding: 25px;
            }
            
            .feature-icon {
                width: 80px;
                height: 80px;
            }
            
            .feature-icon i {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .testimonials-container {
                height: 450px;
            }
            
            .testimonial-card {
                width: 280px;
            }
            
            .wellness-card {
                padding: 30px;
            }
            
            .popup-video {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            /* Small Mobile Text Size Adjustments */
            h1 {
                font-size: 2.2rem;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            h3 {
                font-size: 1.2rem;
            }
            
            p {
                font-size: 0.9rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .feature-content h3 {
                font-size: 1.1rem;
            }
            
            .stat-number {
                font-size: 1.3rem;
            }
            
            .hero-cards {
                gap: 10px;
            }
            
            .hero-card {
                width: 100px;
                padding: 10px;
            }
            
            .hero-card i {
                font-size: 1.5rem;
            }
            
            .hero-card h3 {
                font-size: 1rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .testimonials-container {
                height: 500px;
            }
            
            .testimonial-card {
                width: 260px;
                padding: 20px;
            }
            
            .wellness-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .wellness-card {
                padding: 25px;
            }
            
            .popup-video {
                height: 250px;
            }
        }

        @media (max-width: 400px) {
            .hero-cards {
                gap: 8px;
            }
            
            .hero-card {
                width: 90px;
                padding: 8px;
            }
            
            .hero-card i {
                font-size: 1.3rem;
            }
            
            .hero-card h3 {
                font-size: 0.9rem;
            }
        }

        /*---------------------------AI--------------------------*/
       .a1 {
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.a1-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.a1-content {
  opacity: 0;
  animation: a1-slide-in 1.2s ease-out 0.3s forwards;
  text-align: center;
  max-width: 800px;
}

.a1-title {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #fff 30%, #26d0ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.a1-subtitle {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #b3e0ff;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.a1-desc {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.a1-ai {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.a1-ai-icon {
  font-size: 2rem;
  animation: a1-pulse 2s ease-in-out infinite;
}

.a1-ai span {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
}

.a1-button-container {
  position: relative;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  opacity: 0;
  animation: a1-slide-in 1s ease-out 1s forwards;
  margin-left: auto;
  margin-right: auto;
}

.a1-btn-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.a1-button-container:hover .a1-btn-image {
  transform: scale(1.05);
}

.a1-btn {
  width: 100%;
  background: linear-gradient(45deg, #26d0ce, #1a2980);
  color: white;
  border: none;
  padding: 20px 40px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.a1-btn:hover {
  background: linear-gradient(45deg, #1a2980, #26d0ce);
  letter-spacing: 2px;
}

@keyframes a1-slide-in {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes a1-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 968px) {
  .a1-container {
    text-align: center;
  }
  
  .a1-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .a1 {
    padding: 40px 15px;
  }
  
  .a1-title {
    font-size: 2.5rem;
  }
  
  .a1-ai {
    flex-direction: column;
    text-align: center;
  }
  
  .a1-btn-image {
    height: 150px;
  }
  
  .a1-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

/*--------Book----------------------*/
.book1 {
  display: inline-block;
  padding: 12px 28px;
  background: #0077ff;        /* Button color */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
  margin: 0 auto;
  display: block;             /* Makes center alignment work */
}

/* Hover Effect */
.book1:hover {
 background: linear-gradient(135deg, rgb(0,94,184), rgb(0,163,255));
  transform: translateY(-3px); /* Lift animation */
  box-shadow: 0 8px 18px rgba(0, 119, 255, 0.3);
}


    /* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}
.whatsapp-float img {
  width: 35px;
  height: 35px;
} 
