   :root {
            --pastel-green: #a8d5ba;
            --light-green: #d4e9d7;
            --beige: #f5f1e6;
            --dark-green: #5a7d5a;
            --text-color: #3a3a3a;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Merriweather', serif;
            font-weight: 400;
        }
 
 
 /* Footer */
        footer {
            background-color: var(--dark-green);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-links h5 {
            margin-bottom: 20px;
            color: var(--pastel-green);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--pastel-green);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--pastel-green);
            color: var(--text-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }




         /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            color: white;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--dark-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--pastel-green);
            color: var(--text-color);
            transform: translateY(-3px);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .back-to-top {
                left: 20px;
                bottom: 20px;
            }
            
            .whatsapp-btn {
                right: 20px;
                bottom: 20px;
            }
        }




        
        :root {
            --pastel-green: #a8d5ba;
            --light-green: #d4e9d7;
            --beige: #f5f1e6;
            --dark-green: #5a7d5a;
            --text-color: #3a3a3a;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Merriweather', serif;
            font-weight: 400;
        }
        
      







        
        
        /* Enhanced Navbar Styles */
        .navbar {
            height: 10vh !important;
            background-color: #d4e9d7;
            padding: 12px 0;
            transition: all 0.4s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .navbar.scrolled {
            padding: 8px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-family: 'Merriweather', serif;
            font-size: 1.8rem;
            color: var(--dark-green) !important;
            font-weight: 900;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
        }
        
        .logo-img {
            height: 50px;
            width: auto;
            margin-right: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            /* transform: scale(0.5); */
        }
       
        .navbar-brand:hover .logo-img {
            transform: scale(1.05);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2855, 81, 55, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .navbar-nav {
            align-items: center;
        }
        
        .nav-item {
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            padding: 8px 16px !important;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--text-color) !important;
            background-color: rgba(168, 213, 186, 0.75);
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--pastel-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 70%;
        }
        
        .nav-icon {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Book Now Button */
        .btn-book-now {
            background: linear-gradient(135deg, var(--pastel-green), var(--light-green));
            border: none;
            color: var(--text-color);
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(168, 213, 186, 0.3);
        }
    
        .btn-book-now:hover {
            background: linear-gradient(135deg, var(--dark-green), var(--pastel-green));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(90, 125, 90, 0.4);
        }
        
        /* Mobile Menu Enhancements */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 15px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-item {
                margin: 5px 0;
            }
            
            .nav-link {
                padding: 12px 20px !important;
                border-radius: 10px;
                justify-content: flex-start;
            }
            
            .btn-book-now {
                margin: 15px 0 5px;
                justify-content: center;
                width: 100%;
            }
            
            .navbar-brand {
                font-size: 1.6rem;
            }
            
            .logo-img {
                height: 40px;
            }
        }
        
        /* Small mobile devices */
        @media (max-width: 575.98px) {
            .navbar-brand span {
                font-size: 1.4rem;
            }
            
            .logo-img {
                height: 35px;
            }
            
            .navbar {
                max-height: 8vh;
                padding: 3px 0;
            }
        }
        
        /* Animation for navbar items */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .navbar-nav .nav-item {
            animation: fadeInDown 0.5s ease forwards;
            opacity: 0;
        }
        
        .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
        .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
        .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
        .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
        .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }
        .navbar-nav .nav-item:nth-child(6) { animation-delay: 0.6s; }
        .navbar-nav .nav-item:nth-child(7) { animation-delay: 0.7s; }
        .navbar-nav .nav-item:nth-child(8) { animation-delay: 0.8s; }
    

        .nav-text{
            display: none;
        }





         .navlogo {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
        }

        @media (max-width: 576px) {
            .navlogo{
                display: block !important;
                transform: scale(1.2) !important;
            }
            .nav-text{
                display: block;
            }
        }
                @media (max-width: 768px) {
            .navlogo{
                display: none;
            }
              .nav-text{
                display: block;
            }
        }
                @media (max-width: 820px) {
            .navlogo{
                display: none;
            }
              .nav-text{
                display: block;
            }
        }
                @media (max-width: 834px) {
            .navlogo{
                display: none;
            }
              .nav-text{
                display: block;
            }
        }
                @media (max-width: 1144px) {
            .navlogo{
                display: none;
            }
              .nav-text{
                display: block;
            }
        } 


        



        .tag{
            text-decoration: none;
            color: var(--beige);
        }
        .tag:hover{
            color: var(--dark-green);
        }
        .tag1{
            color: #3a3a3a;
        }
        .tag1:hover{
            color: #f5f1e6;
        }

.class-card{
    max-height: 76vh !important;
}

.navlogo{
   transform: scale(1.75);
}



.copyright{
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
         }

         @media (max-width: 576px) {
            .copyright{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 0.5rem;
            }
         }




         /* Floating Call Button styles */
.float-call{
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* background: linear-gradient(135deg,#28a745,#198754); */
  background: linear-gradient(135deg, #007bff, #0056d2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(25, 135, 84, 0.28);
  text-decoration: none;
  z-index: 9999;
  transition: transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  border: none;
  outline: none;
}

/* Gentle hover / active */
.float-call:hover{ transform: translateY(-4px); box-shadow: 0 12px 26px rgba(25,135,84,0.30); }
.float-call:active{ transform: translateY(-1px); }

/* Subtle pulsing ring */
.float-call::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(39,174,96,0.45);
  animation: pulse 2.2s infinite;
  z-index: -1;
}

@keyframes pulse{
  0%   { box-shadow: 0 0 0 0 rgba(39,174,96,0.30); }
  70%  { box-shadow: 0 0 0 18px rgba(39,174,96,0.02); }
  100% { box-shadow: 0 0 0 0 rgba(39,174,96,0.00); }
}

/* Make the SVG fill inherit the button color */
.float-call svg { display:block; color: #fff; }

/* Tooltip appearance on small screens (optional) */
@media (max-width:480px){
  .float-call{ right: 20px; bottom: 100px; width:60px; height:60px; }
}



 .logo-img img{
    filter: brightness(0.65);
    }





@media (max-width: 576px) {
    .yoga-popup h2{
        margin-top: 20px;
    }
    #about, #classes, #instructors, .classes-section, .trust-section-4, #pricing, .faq-section, .instructor-section{
        padding: 40px 0px !important;
    }
    .container-4{
        padding: 0px;
    }
    .trust-grid-4{
        margin: 20px 0px;
    }
    .trust-card-4{
        padding: 10px 10px;
    }
    .logo-img img{
    filter: brightness(0.65);
    }
}
