
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0066cc;
            --secondary-blue: #0088ff;
            --dark-blue: #004d99;
            --light-blue: #e6f2ff;
            --ocean-blue: #00a8e8;
            --white: #ffffff;
            --off-white: #f8f9fa;
            --text-dark: #333333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --menu-bg: rgba(0, 0, 0, 0.92);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            background: linear-gradient(to bottom, #e0f7ff, #ffffff);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 1rem;
            text-align: center;
        }

   

        /* Header Styles */
        header {
           background: rgba(0, 38, 77, 0.7); /* Deep blue with 70% opacity */
  backdrop-filter: blur(8px);       /* Optional for frosted glass effect */
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

       .logo-immg{width: 62px;
               height: 62px;}

     

        /* Navigation */
        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            position: relative;
            margin-left: clamp(1rem, 2vw, 2rem);
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: clamp(0.9rem, 3vw, 1.1rem);
            transition: var(--transition);
            padding: 0.5rem 0;
            position: relative;
            display: flex;
            align-items: center;
        }

        .nav-links a i {
            margin-left: 5px;
            font-size: 0.8rem;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .nav-links a.active {
            color: whitesmoke;
            font-weight: 600;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-blue);
            border-radius: 2px;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            box-shadow: var(--shadow);
            border-radius: 8px;
            width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content li {
            margin: 0;
            padding: 0;
        }

        .dropdown-content a {
            display: block;
            padding: 0.8rem 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: var(--text-dark);
            font-size: 1rem;
        }

        .dropdown-content a:hover {
            background: var(--light-blue);
            color: var(--primary-blue);
            padding-left: 1.8rem;
        }

        /* Mobile Navigation */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: clamp(1.3rem, 5vw, 1.5rem);
            color:white;
            z-index: 1001;
        }

        

        /* Hero Section */
      
.hero {margin-top: 100px;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  padding: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://glowwelljournal.com/wp-content/uploads/2025/08/ionjal.png'); /* 🔁 Replace with your image path */
  background-size: cover;
  background-position: center;

  z-index: -1;
}
.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* black with 50% opacity */
  backdrop-filter: blur(1px); /* blur effect */
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

       

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            width: 100%;
            z-index: 1;
        }

        .hero h1 {
            font-size: clamp(2rem, 7vw, 3.5rem);
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
            color: white;
            text-shadow: 0 2px 10px rgba(180, 13, 13, 0.445);
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1rem, 3.5vw, 1.4rem);
            max-width: 800px;
            color: white;
           text-shadow: 0 2px 10px rgb(180, 13, 13);
            margin: 0 auto clamp(1.5rem, 5vw, 2.5rem);
            font-weight: 700;
            line-height: 1.5;
        }

        .btn {
            display: inline-block;
            background: var(--white);
            color: var(--primary-blue);
            padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(0.9rem, 3vw, 1.1rem);
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            background: var(--light-blue);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            margin-left: clamp(0.5rem, 2vw, 15px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Features Section */
        .features {
            padding: clamp(60px, 8vw, 100px) 5%;
            background: var(--off-white);
        }

        .section-title {
            text-align: center;
            margin-bottom: clamp(30px, 6vw, 60px);
        }

        .section-title h2 {
            font-size: clamp(1.3rem, 5vw, 2.5rem);
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--text-dark);
            max-width: 700px;
            margin: 0 auto;
            font-size: clamp(0.95rem, 3vw, 1.1rem);
            padding: 0 10px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(20px, 3vw, 30px);
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: clamp(2.5rem, 7vw, 3.5rem);
            color: var(--primary-blue);
            margin-bottom: clamp(1rem, 2vw, 1.5rem);
        }

        .feature-card h3 {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            color: var(--dark-blue);
        }

        .feature-card p {
            font-size: clamp(0.9rem, 3vw, 1rem);
        }

        /* About Section */
        .about {
            padding: clamp(60px, 8vw, 100px) 5%;
            background: linear-gradient(to bottom, var(--light-blue) 0%, var(--white) 100%);
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(30px, 4vw, 50px);
            align-items: center;
        }

        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: clamp(300px, 50vw, 500px);
            background: linear-gradient(45deg, var(--primary-blue), var(--ocean-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            font-weight: 500;
            position: relative;
        }
     
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            opacity: 0.2;
        }

        .about-text h2 {
            font-size: clamp(1.3rem, 5vw, 2.5rem);
            color: var(--primary-blue);
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
        }

        .about-text p {
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
            font-size: clamp(0.95rem, 3vw, 1.1rem);
        }

        /* Contact Section */
        .contact {
            padding: clamp(60px, 8vw, 100px) 5%;
            background: var(--off-white);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(30px, 4vw, 50px);
        }

        .contact-form {
            background: var(--white);
            border-radius: 12px;
            padding: clamp(25px, 4vw, 40px);
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: clamp(1rem, 2vw, 1.5rem);
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-dark);
            font-size: clamp(0.9rem, 3vw, 1rem);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: clamp(10px, 2vw, 12px) clamp(12px, 2vw, 15px);
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(0.9rem, 3vw, 1rem);
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info h2 {
            font-size: clamp(1.3rem, 5vw, 2.5rem);
            color: var(--primary-blue);
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
        }

        .contact-info p {
            margin-bottom: clamp(1.5rem, 4vw, 2rem);
            font-size: clamp(0.95rem, 3vw, 1.1rem);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: clamp(1rem, 2vw, 1.5rem);
        }

        .info-icon {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            color: var(--primary-blue);
            margin-right: clamp(10px, 2vw, 15px);
            min-width: 30px;
        }

        .info-item h3 {
            font-size: clamp(1rem, 3vw, 1.2rem);
            margin-bottom: 0.3rem;
        }

        .info-item p {
            font-size: clamp(0.9rem, 3vw, 1rem);
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: var(--white);
            padding: clamp(40px, 6vw, 70px) 5% clamp(20px, 3vw, 30px);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: clamp(25px, 4vw, 40px);
            margin-bottom: clamp(30px, 5vw, 50px);
        }

        .footer-column h3 {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--ocean-blue);
            border-radius: 2px;
        }

        .footer-column p {
            font-size: clamp(0.9rem, 3vw, 1rem);
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: clamp(0.5rem, 1.5vw, 0.8rem);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            font-size: clamp(0.85rem, 3vw, 0.95rem);
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding-top: clamp(15px, 3vw, 30px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: clamp(0.75rem, 2.5vw, 0.9rem);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }}

        @media (max-width: 768px) { 
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--menu-bg);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 20px 40px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 999;
                overflow-y: auto;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 0 0 1.5rem 0;
                width: 100%;
            }
            
            .nav-links a {
                color: rgba(255, 255, 255, 0.9);
                font-size: 1.1rem;
                padding: 0.8rem 0;
            }
            
            .nav-links a:hover,
            .nav-links a.active {
                color: var(--white);
            }
            
            .nav-links a.active::after {
                background: var(--white);
            }
            
            .dropdown-content {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                margin-top: 10px;
                display: none;
                background: transparent;
                max-height: 200px;
                overflow-y: auto;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
            
            .dropdown-content li {
                margin-bottom: 0;
            }
            
            .dropdown-content a {
                padding: 0.6rem 0 0.6rem 1.5rem;
                font-size: 0.95rem;
                color: rgba(255, 255, 255, 0.8);
            }
            
            .dropdown-content a:hover {
                background: transparent;
                color: var(--white);
            }
            
            .btn {
                display: block;
                width: 80%;
                margin: 0 auto 15px;
                text-align: center;
            }
            
            .btn-secondary {
                margin-left: 0;
            }
        }

        @media (max-width: 480px) {
            .features-grid,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                width: 100%;
                right: -100%;
            }
            
            .nav-links.active {
                right: 0;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes waveAnimation {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .animate {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Water drop animation */
        @keyframes waterDrop {
            0% {
                transform: translateY(-20px) scale(0.9);
                opacity: 0.6;
            }
            100% {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .water-drop {
            animation: waterDrop 0.8s ease-out forwards;
        }

        /* Mobile dropdown arrow rotation */
        .dropdown-arrow {
            transition: transform 0.3s ease;
        }
        
        .dropdown.active .dropdown-arrow {
            transform: rotate(180deg);
        }

    html {
    scroll-behavior: smooth;
  } 

 /*------------------Health Benifits---------------------------*/
         .benefits-showcase {
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            padding: 60px 20px;
            color: #fff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
        }
        
        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .benefits-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .benefits-title {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 15px;
            background: linear-gradient(90deg, #fff, #a0e9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }
        
        .benefits-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00c6ff, #0072ff);
            border-radius: 2px;
        }
        
        .benefits-subtitle {
            font-size: clamp(1rem, 3vw, 1.2rem);
            max-width: 700px;
            margin: 20px auto 0;
            color: #e0f7ff;
            line-height: 1.6;
        }
        
        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            padding: 30px 0;
        }
        
        .infinite-carousel {
            display: flex;
            width: max-content;
            animation: scroll 40s linear infinite;
        }
        
        .infinite-carousel.paused {
            animation-play-state: paused;
        }
        
        .benefit-item {
            width: 280px;
            margin: 0 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            position: relative;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
        }
        
        .benefit-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 114, 255, 0.25);
            background: rgba(224, 247, 255, 0.15);
        }
        
        .benefit-item.active {
            transform: scale(1.05);
            background: rgba(224, 247, 255, 0.15);
            box-shadow: 0 15px 40px rgba(0, 114, 255, 0.25);
            z-index: 10;
        }
        
        .benefit-item.active::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 22px;
            background: linear-gradient(45deg, #00c6ff, #0072ff, #00c6ff);
            background-size: 400% 400%;
            z-index: -1;
            animation: borderPulse 3s infinite;
        }
        
        .benefit-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0072ff, #00c6ff);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            color: white;
            box-shadow: 0 5px 20px rgba(0, 114, 255, 0.3);
        }
        
        .benefit-name {
            font-size: clamp(1.2rem, 4vw, 1.4rem);
            margin-bottom: 15px;
            font-weight: 700;
            text-align: center;
            background: linear-gradient(90deg, #fff, #a0e9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .benefit-description {
            font-size: clamp(0.9rem, 3vw, 1rem);
            line-height: 1.6;
            margin-bottom: 20px;
            color: #e0f7ff;
            text-align: center;
        }
        
        .benefit-tag {
            background: linear-gradient(90deg, #0072ff, #00c6ff);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            font-weight: 600;
            display: block;
            width: max-content;
            margin: 0 auto;
            box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
        }
        
        .controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .control-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
            font-size: 1.2rem;
        }
        
        .control-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        @keyframes borderPulse {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .benefit-item {
                width: 260px;
                padding: 25px;
                margin: 0 15px;
            }
            
            .benefit-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .controls {
                margin-top: 25px;
            }
            
            .infinite-carousel {
                animation-duration: 30s;
            }
        }
        
        @media (max-width: 480px) {
            .benefit-item {
                width: 240px;
                padding: 20px;
                margin: 0 10px;
            }
            
            .benefit-icon {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
            
            .control-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .benefits-header {
                margin-bottom: 30px;
            }
            
            .infinite-carousel {
                animation-duration: 25s;
            }
        }
        
        @media (max-width: 360px) {
            .benefit-item {
                width: 220px;
            }
            .benefits-title{ font-size: clamp(1.5rem, 5vw, 3rem);}
        }

     /*----------Goodness-----------------------*/
      .wellness-container {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0a1a3a, #0d2a5a);
            color: #fff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .wellness-wrapper {
            max-width: 1200px;
            width: 100%;
            padding: 20px;
        }
        
        .wellness-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .wellness-header h2 {
            font-size: clamp(1.3rem, 5vw, 3rem);
            font-weight: 700;
            background: linear-gradient(90deg, #00c6ff, #a0e9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 198, 255, 0.3);
        }
        
        .wellness-header p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #a0e9ff;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .wellness-section {
            position: relative;
            padding: 60px 20px;
            max-width: 1000px;
            width: 100%;
            border-radius: 25px;
            overflow: hidden;
            background: linear-gradient(145deg, #0a1a3a, #0c2147);
            box-shadow: 
                0 15px 40px rgba(0, 0, 0, 0.5),
                inset 0 0 20px rgba(0, 198, 255, 0.1);
            margin: 0 auto 40px;
            z-index: 1;
            border: 1px solid rgba(0, 198, 255, 0.15);
        }

        .water-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .water-drop {
            position: absolute;
            top: -50px;
            width: 2px;
            height: 25px;
            background: linear-gradient(transparent, rgba(0, 198, 255, 0.8));
            border-radius: 0 0 5px 5px;
            animation: rainFall linear infinite;
        }

        .water-drop:nth-child(1) {
            left: 5%;
            animation-duration: 6s;
            animation-delay: 0s;
        }
        .water-drop:nth-child(2) {
            left: 15%;
            animation-duration: 5s;
            animation-delay: 1s;
        }
        .water-drop:nth-child(3) {
            left: 25%;
            animation-duration: 7s;
            animation-delay: 0.5s;
        }
        .water-drop:nth-child(4) {
            left: 35%;
            animation-duration: 6.5s;
            animation-delay: 2s;
        }
        .water-drop:nth-child(5) {
            left: 45%;
            animation-duration: 5.5s;
            animation-delay: 1.5s;
        }
        .water-drop:nth-child(6) {
            left: 55%;
            animation-duration: 7.5s;
            animation-delay: 0.2s;
        }
        .water-drop:nth-child(7) {
            left: 65%;
            animation-duration: 6s;
            animation-delay: 3s;
        }
        .water-drop:nth-child(8) {
            left: 75%;
            animation-duration: 5.8s;
            animation-delay: 1s;
        }
        .water-drop:nth-child(9) {
            left: 85%;
            animation-duration: 7.2s;
            animation-delay: 2.5s;
        }
        .water-drop:nth-child(10) {
            left: 95%;
            animation-duration: 6.3s;
            animation-delay: 0.7s;
        }

        .wellness-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            align-items: center;
        }

        .wellness-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .featured-drop {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(0,198,255,0.3));
            border-radius: 50%;
            position: relative;
            box-shadow: 
                0 0 50px rgba(0, 198, 255, 0.5),
                inset 0 0 30px rgba(255, 255, 255, 0.6);
            animation: waterDrop 3s infinite alternate;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 3.5rem;
            color: white;
            text-shadow: 0 0 15px rgba(0, 114, 255, 0.8);
            transition: transform 0.5s ease;
        }

        .featured-drop:hover {
            transform: scale(1.05);
        }

        .wellness-description {
            text-align: center;
        }

        .wellness-description h3 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            margin-bottom: 20px;
            background: linear-gradient(90deg, #fff, #a0e9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }

        .wellness-description p {
            font-size: clamp(1rem, 3.2vw, 1.1rem);
            line-height: 1.7;
            margin-bottom: 15px;
            color: #e0f7ff;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.07);
            border-radius: 15px;
            padding: 20px 15px;
            text-align: center;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(0, 198, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .benefit-card:hover {
            background: rgba(0, 198, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 198, 255, 0.2);
        }

        .benefit-card i {
            font-size: 2.2rem;
            color: #00c6ff;
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover i {
            transform: scale(1.1);
        }

        .benefit-card h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-weight: 600;
            color: #fff;
        }

        .benefit-card p {
            font-size: 0.9rem;
            color: #a0e9ff;
            margin-bottom: 0;
        }

        .info-hint {
            text-align: center;
            margin-top: 25px;
            font-size: clamp(0.85rem, 3.5vw, 1rem);
            color: #a0e9ff;
            opacity: 0.8;
            animation: pulse 2s infinite;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px 20px;
            text-align: center;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(0, 198, 255, 0.15);
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            background: rgba(0, 198, 255, 0.1);
            transform: translateY(-5px);
        }
        
        .stat-value {
            font-size: clamp(2rem, 5vw, 2.5rem);
            font-weight: 700;
            background: linear-gradient(90deg, #00c6ff, #a0e9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #a0e9ff;
        }
        
        .action-button {
            display: inline-block;
            background: linear-gradient(90deg, #00c6ff, #0072ff);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 30px;
            box-shadow: 0 5px 20px rgba(0, 114, 255, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .action-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 114, 255, 0.6);
        }

        @keyframes borderPulse {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes waterDrop {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 40px rgba(0, 198, 255, 0.5);
            }
            100% {
                transform: scale(1.05);
                box-shadow: 0 0 70px rgba(0, 198, 255, 0.8);
            }
        }

        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        @keyframes rainFall {
            0% {
                transform: translateY(-50px);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(100vh);
                opacity: 0;
            }
        }

        /* Tablet Styles */
        @media (min-width: 768px) {
            .wellness-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .wellness-description {
                text-align: left;
            }
            
            .featured-drop {
                width: 220px;
                height: 220px;
                font-size: 4rem;
            }
            
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop Styles */
        @media (min-width: 992px) {
            .wellness-section {
                padding: 80px 50px;
            }
            
            .featured-drop {
                width: 250px;
                height: 250px;
                font-size: 4.5rem;
            }
            
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .wellness-section {
                padding: 40px 15px;
                border-radius: 20px;
            }
            
            .featured-drop {
                width: 150px;
                height: 150px;
                font-size: 3rem;
            }
            
            .benefit-card {
                padding: 15px 10px;
            }
            
            .benefits-grid {
                gap: 10px;
            }
        }

  /*-----------Mission---------------*/
  .mission{ background: rgba(9, 58, 107, 0.7); /* Deep blue with 70% opacity */
  backdrop-filter: blur(8px);
      color: white;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(153, 17, 17, 0.37);
      padding: 30px 25px;
      flex: 1 1 400px;
      max-width: 500px;
      transition: transform 0.3s;}      

 /*------------------------Table-----------------------*/
     .comparison-container {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0a1a3a, #0d2a5a);
            color: #fff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .comparison-wrapper {
            max-width: 1200px;
            width: 100%;
            padding: 20px;
        }
        
        .comparison-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .comparison-header h2 {
            font-size: clamp(1.3rem, 5vw, 2.8rem);
            font-weight: 700;
            background: linear-gradient(90deg, #00c6ff, #a0e9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 198, 255, 0.3);
        }
        
        .comparison-header p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #a0e9ff;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .comparison-table {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 198, 255, 0.15);
            margin-bottom: 40px;
            backdrop-filter: blur(10px);
            overflow-x: auto;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }
        
        thead th {
            padding: 25px 20px;
            text-align: center;
            font-weight: 600;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            background: rgba(0, 198, 255, 0.1);
            position: relative;
        }
        
        thead th:first-child {
            border-top-left-radius: 20px;
        }
        
        thead th:last-child {
            border-top-right-radius: 20px;
        }
        
        thead th:nth-child(1) {
            background: transparent;
            text-align: left;
        }
        
        thead th:nth-child(4) {
            background: linear-gradient(135deg, rgba(0, 198, 255, 0.3), rgba(0, 114, 255, 0.3));
            position: relative;
            overflow: hidden;
        }
        
        .ion-jal-highlight {
            position: relative;
        }
        
        .ion-jal-highlight::after {
            content: "BEST CHOICE";
            position: absolute;
            top: 0;
            right: 0;
            background: linear-gradient(90deg, #0072ff, #00c6ff);
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 10px;
            border-bottom-left-radius: 10px;
        }
        
        tbody tr {
            border-bottom: 1px solid rgba(0, 198, 255, 0.1);
        }
        
        tbody tr:last-child {
            border-bottom: none;
        }
        
        tbody td {
            padding: 20px;
            text-align: center;
            font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        }
        
        tbody td:first-child {
            text-align: left;
            font-weight: 500;
        }
        
        .feature-icon {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            background: rgba(0, 198, 255, 0.1);
            border-radius: 50%;
            margin-right: 12px;
            color: #00c6ff;
        }
        
        .check {
            color: #00ffaa;
            font-size: 1.4rem;
        }
        
        .cross {
            color: #ff4d6d;
            font-size: 1.4rem;
        }
        
        .note {
            font-size: 0.85rem;
            color: #ffb3c1;
            margin-top: 5px;
            display: block;
        }
        
        .highlight-cell {
            background: rgba(0, 198, 255, 0.08);
            font-weight: 600;
        }
        
        .benefits-section {
            background: linear-gradient(145deg, #0a1a3a, #0c2147);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 198, 255, 0.15);
            backdrop-filter: blur(10px);
        }
        
        .benefits-title {
            text-align: center;
            font-size: clamp(1.5rem, 4vw, 1.8rem);
            margin-bottom: 30px;
            background: linear-gradient(90deg, #fff, #a0e9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .benefit-card {
            background: rgba(0, 198, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 198, 255, 0.2);
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 198, 255, 0.2);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: #00c6ff;
            margin-bottom: 20px;
        }
        
        .benefit-title {
            font-size: 1.3rem;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .benefit-description {
            font-size: 0.95rem;
            color: #e0f7ff;
        }
        
        .water-drop-decoration {
            position: absolute;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(0,198,255,0.3));
            border-radius: 50%;
            opacity: 0.2;
            top: 10%;
            right: 10%;
            z-index: -1;
        }
        
        /* Responsive styles */
        @media (max-width: 900px) {
            .comparison-table {
                border-radius: 15px;
            }
            
            table {
                min-width: 600px;
            }
            
            thead th, tbody td {
                padding: 18px 15px;
            }
            
            .benefits-section {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .comparison-header {
                margin-bottom: 30px;
            }
            
            .water-drop-decoration {
                display: none;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .comparison-container {
                padding: 10px;
            }
            
            .comparison-wrapper {
                padding: 10px;
            }
            
            table {
                min-width: 100%;
            }
            
            thead th, tbody td {
                padding: 15px 10px;
                font-size: 0.9rem;
            }
            
            .feature-icon {
                width: 30px;
                height: 30px;
                margin-right: 8px;
            }
            
            .check, .cross {
                font-size: 1.2rem;
            }
            
            .benefits-section {
                padding: 20px;
                border-radius: 15px;
            }
            
            .benefit-card {
                padding: 20px;
            }
        }     

     /*---------------------Usees----------------------------------*/

      .usees {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a1a3a, #0d2a5a);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            color: white;
            overflow: hidden;
        }

        .container {
            text-align: center;
            max-width: 800px;
            width: 100%;
            padding: 30px;
        }
        
        .header {
            margin-bottom: 50px;
        }
        
        .header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #00c6ff, #a0e9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 15px rgba(0, 198, 255, 0.3);
        }
        
        .header p {
            font-size: 1.3rem;
            color: #a0e9ff;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .water-button {
            position: relative;
            display: inline-block;
            padding: 22px 65px;
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
            background: linear-gradient(90deg, #0072ff, #00c6ff);
            border: none;
            border-radius: 60px;
            cursor: pointer;
            overflow: hidden;
            z-index: 1;
            box-shadow: 
                0 10px 30px rgba(0, 114, 255, 0.5),
                inset 0 0 15px rgba(255, 255, 255, 0.3);
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            transform: translateY(0);
        }
        
        .water-button:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 15px 40px rgba(0, 114, 255, 0.7),
                inset 0 0 20px rgba(255, 255, 255, 0.4);
            letter-spacing: 1.5px;
        }
        
        .water-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            z-index: -1;
            clip-path: circle(0% at 50% 50%);
            transition: clip-path 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .water-button:hover::before {
            clip-path: circle(100% at 50% 50%);
        }
        
        .water-button::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
            opacity: 0;
            transform: scale(0.5);
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s;
            z-index: -1;
        }
        
        .water-button:hover::after {
            opacity: 1;
            transform: scale(1);
        }
        
        .water-drops {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
            border-radius: 60px;
        }
        
        .drop {
            position: absolute;
            top: -20px;
            width: 5px;
            height: 20px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 0 0 10px 10px;
            animation: fall linear infinite;
        }
        
        .drop:nth-child(1) {
            left: 10%;
            animation-duration: 1.8s;
            animation-delay: 0s;
        }
        .drop:nth-child(2) {
            left: 25%;
            animation-duration: 2.2s;
            animation-delay: 0.5s;
        }
        .drop:nth-child(3) {
            left: 40%;
            animation-duration: 1.6s;
            animation-delay: 1.2s;
        }
        .drop:nth-child(4) {
            left: 55%;
            animation-duration: 2s;
            animation-delay: 0.8s;
        }
        .drop:nth-child(5) {
            left: 70%;
            animation-duration: 1.9s;
            animation-delay: 0.3s;
        }
        .drop:nth-child(6) {
            left: 85%;
            animation-duration: 2.1s;
            animation-delay: 1.5s;
        }
        
        .water-ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: scale(0);
            pointer-events: none;
            animation: ripple 0.8s linear;
        }
        
        .icon {
            margin-right: 15px;
            animation: float 3s ease-in-out infinite;
        }
        
        .instructions {
            margin-top: 50px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 198, 255, 0.15);
            max-width: 600px;
            margin: 50px auto 0;
        }
        
        .instructions h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #00c6ff;
        }
        
        .instructions p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #e0f7ff;
        }
        
        .water-decoration {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle at 30% 30%, rgba(0,198,255,0.2), transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }
        
        .water-decoration:nth-child(1) {
            top: 10%;
            left: 10%;
        }
        
        .water-decoration:nth-child(2) {
            bottom: 10%;
            right: 10%;
            width: 150px;
            height: 150px;
        }
        
        /* Animations */
        @keyframes fall {
            0% {
                transform: translateY(-20px);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(120px);
                opacity: 0;
            }
        }
        
        @keyframes ripple {
            to {
                transform: scale(2);
                opacity: 0;
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .header p {
                font-size: 1.1rem;
            }
            
            .water-button {
                font-size: 1.5rem;
                padding: 18px 50px;
            }
            
            .instructions {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .water-button {
                font-size: 1.3rem;
                padding: 16px 40px;
            }
            
            .icon {
                margin-right: 10px;
            }
            
        }   