/* ========================
    BASE STYLES & UTILITIES
    ======================== */
:root {
    --primary-purple: #8B5A9B;
    --secondary-purple: #B388C2;
    --light-purple: #E8D5F0;
    --pink: #E91E63;
    --text-gray: #4F4D4D;
    --tagline-color: #D65298;
    --dark-purple: #853E9D;
    --hover-purple: #6f2b89;
    --button-purple: #a150b1;
    --text-color: #333;
}
/* Text color classes */
.text-primary-purple   { color: var(--primary-purple); }
.text-tagline          { color: var(--tagline-color); }
.text-dark-purple      { color: var(--dark-purple); }
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* =============
    NAVIGATION
    ============= */
.navbar {
    background: linear-gradient(135deg, var(--light-purple) 0%, #F8F0FF 100%);
    border-bottom: 1.5px solid var(--dark-purple);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    /* gap: 15px; */
    color: #333 !important;
    font-size: 1.1rem;
}
.logo-img {
    height: 100px;
}
.top-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.2px;
    color: var(--dark-purple) !important;
    transition: color 0.3s ease;
}
.navbar-toggler {
    position: absolute;
    right: 1rem;
    top: 20px;
    border: none;
    padding: 0.25rem;
    margin-top: 7px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-collapse {
    background: linear-gradient(135deg, var(--light-purple) 0%, #F8F0FF 100%);
    padding: 1rem;
    border-top: 1px solid var(--dark-purple);
    margin-top: 10px;
}
.navbar-nav {
    gap: 1rem !important;
    align-items: flex-start;
    padding-top: 1rem;
}
.nav-item {
    margin: 0.2rem 0;
}
.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.2px;
    color: var(--dark-purple) !important;
    transition: color 0.3s ease;
    padding-left: 0;
    font-size: 14px;
}
.nav-link:hover {
    color: var(--hover-purple) !important;
}
.custom-hover-dropdown {
    position: relative;
}
.dropdown-menu {
    margin-top: 0;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.custom-dropdown {
    background-color: var(--dark-purple);
   min-width: 190px; 
   font-size: 14px;
}
.custom-dropdown .dropdown-item {
    background-color: var(--dark-purple);
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
    text-transform: none;
    padding: 0.5rem 1rem;
    color:white;
}
.custom-dropdown .dropdown-item:hover {
    background-color: transparent;
    color: var(--hover-purple);
}
.second-logo {
    display: none !important;
}
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
    .navbar-collapse {
        display: flex !important;
        background: transparent;
        padding: 0;
        border-top: none;
        margin-top: 0;
    }
    .navbar-nav {
        gap: 4px !important;
        align-items: center;
        padding-top: 0;
    }
    .nav-item {
        margin: 0;
    }
    .nav-link {
        font-size: 15px;
        padding-left: 0.5rem;
    }
    .custom-dropdown {
        background-color: var(--dark-purple);
        border-radius: 20px;
        text-align: center;
    }
    .custom-dropdown .dropdown-item {
        color: white !important;
    }
    .custom-dropdown .dropdown-item:hover {
        background-color: var(--hover-purple);
        color: white !important;
    }
    .second-logo {
        display: block !important;
    }
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(133, 62, 157, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    /* visibility: hidden; */
}
.second-logo-mobile {
  height: 60px;
}

@media (min-width: 992px) {
  .second-logo-mobile {
    display: none !important;
  }
}

.second-logo {
  height: 70px;
}

.navbar>.container-fluid{
    justify-content: left;
}

/* Footer */
.main-footer {
    background-color: #853E9D;
    color: white;
    padding: 60px 0 20px;
    font-weight: 500;
}
.main-footer h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}
.main-footer p {
    margin: 0.3rem 0;
    font-weight: 300;
}
.main-footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}
.main-footer a:hover {
    color: white;
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.footer-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}
 
.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px; /* distance below the text */
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}
.footer-link:hover::after {
  width: 100%;
}
/* =============
    RESPONSIVE
    ============= */
@media (max-width: 991.98px) {

    .logo-img {
        height: 60px;
    }
    .second-logo {
  height: 70px;
}
    .display-5 {
        font-size: 2.5rem;
        margin-top: 20px;
    }
    
    .navbar-brand {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .top-heading {
        letter-spacing: 0.2px;
        font-size: 14px;
    }
    .second-logo-mobile {
    height: 43px;
}
}
@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
     .top-main{
        margin-top: 20px !important;
    }

}
@media (max-width: 576px) {
    .logo-img {
        height: 50px;
    }
     .second-logo {
  height: 30px;
}
    .top-heading {
        font-size: 12px;
    }
    .navbar-toggler {
        margin-top: 3px;
    }
    .display-5 {
        font-size: 1.8rem !important;
    }
    .second-logo-mobile{
        height: 35px;
    }
}
.para1{
    max-width: 1200px;
}
.para2{
    max-width: 600px;
}
/* =============
    corporate yoga
    /* ============= */
.top-main {
    background-color: #EED2F9;
    margin-top: 80px;
}
.display-5 {
    font-size: 4rem;
    font-weight: 200;
}
.main-head {
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
} 
.hero-corp{
  font-size: 24px;
}
/* =============
    about us
    ============= */
    .hero-subtitle {
        font-family: 'Poppins', sans-serif;
        color: var(--primary-color);
        letter-spacing: 1.5px;
        font-size: clamp(0.875rem, 2vw, 1.125rem);
        font-weight: 500;
        margin-bottom: 0.5rem;
    }
    .hero-title,
    .main-title,
    .achievements-title {
        font-family: 'Jost', sans-serif;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .main-title {
        font-size: 38px;
        color: var(--primary-color);
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }
    .section-heading {
        font-weight: 600;
        color: var(--primary-color);
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        margin-bottom: 1.5rem;
    }
    p {
        font-size: clamp(0.9375rem, 2vw, 1.0625rem);
        line-height: 1.7;
    }
    /* Hero Section */
    .hero {
        background: url('images/background.jpg') center/cover no-repeat;
        min-height: 60vh;
        max-height: 800px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        padding: 2rem 1.5rem;
    }
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.6);
    }
    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        padding: 5rem;
        margin: 0 auto;
    }
  .achievements-section {
            background: linear-gradient(to bottom, #f9f4fc, #ffffff);
            padding: 60px 0;
            overflow: hidden;
        }
        .achievements-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 400;
            color: var(--tagline-color);
        }
        .achievements-gallery {
            overflow: hidden;
            width: 100%;
            position: relative;
            padding: 20px 0;
        }
        .achievement-slides {
            display: flex;
            width: max-content;
        }
        .achievement-item {
            flex: 0 0 auto;
            width: clamp(150px, 60vw, 250px);
            margin: 0 clamp(8px, 2vw, 16px);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        /* FIXED HEIGHT ISSUE ON MOBILE */
        .achievement-image {
            width: 100%;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            aspect-ratio: 3/4; /* Maintain aspect ratio */
        }
        .achievement-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .achievement-item:hover .achievement-image {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        .achievement-name {
            color: var(--primary-purple);
            font-weight: 600;
            margin-top: 1rem;
            font-size: clamp(0.875rem, 2vw, 1rem);
        }
        
        /* Mobile adjustments */
        @media (max-width: 768px) {
            body {
                margin-top: 70px;
            }
        }
          /* =============
    Kids Yoga
    ============= */    
/* Hero Section */
.hero-section {
  background-color: #EED2F9;
  padding-top: 150px;
  padding-bottom: 50px;
}
.heroo-title {
  font-family: 'Jost', sans-serif;
  line-height: 1;
}
/* Info Section */
.section-heading {
  color: #853E9D;
} 
/* Responsive Improvements */
@media (max-width: 992px) {
  .heroo-title {
    font-size: 3rem;
    text-align: left;
  }
  .heroo-subtitle {
    text-align: left;
    font-size: 1.1rem;
  }
 
}
@media (max-width: 768px) {
  .heroo-title {
    font-size: 2.5rem;
  }
  .heroo-subtitle {
    font-size: 1rem;
  }
  .benefits-list li::before {
    font-size: 1.2rem;
  }
  .hero-section{
     padding-top: 60px;
  }
}
@media (max-width: 576px) {
  .heroo-title {
    font-size: 2rem;
  }
  .heroo-subtitle {
    font-size: 0.95rem;
  }
  .brand-text {
    font-size: 0.85rem;
  }
}
   /* =============
    online Yoga
    ============= */
    .text-purple { color: #853E9d; }
    .text-pink { color: #D65298; }
    .bg-purple { background-color: #a150b1; }
    .top-main { background-color: #EED2F9; }
    .btn-custom { background: #853E9D !important; }
    .custom-heading {
      font-size: 30px;
    }
    
 /* =============
    prenantal yoga and studio yoga
    ============= */
        .hero-bg {
            background: linear-gradient(135deg, var(--light-purple) 0%, #F0E6F7 100%);
        }
        .hero-title {
            font-size: 4rem;
            font-weight: 300;
            color: var(--primary-purple);
        }
        .tagline {
            color: var(--tagline-color);
            font-weight: 400;
        }
        .text-custom-gray {
            color: var(--text-gray);
        }
        /* Responsive text sizing */
        @media (max-width: 1200px) {
            .hero-title { font-size: 3.5rem; }
        }
        @media (max-width: 992px) {
            .hero-title { font-size: 3rem; }
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .navbar-brand .brand-text { font-size: 12px; }
        }
        @media (max-width: 576px) {
            .hero-title { font-size: 2rem; }
            .navbar-brand .brand-text { font-size: 10px; }
        }
        @media (max-width: 320px) {
            .hero-title { font-size: 1.8rem; }
        }

         /* =============
     Home page
    ============= */
        .benefit-box {
            transition: all 0.3s ease;
            cursor: pointer;
            background: #EED2F9;
            position: relative;
        }
        .benefit-box:hover {
            background-color: var(--primary-purple) !important;
            color: white !important;
        }
        .benefit-box:hover * {
            color: white !important;
        }
        .benefit-box .default-image {
            transition: opacity 0.3s ease;
            position: relative;
            z-index: 1;
            width: 30px;
             height: 30px;
              object-fit: cover;
        }
        .benefit-box .hover-image {
            position: absolute;
            width: 30px;
             height: 30px; 
             object-fit: cover;
            top: 50%;
            left: 20%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }
        .benefit-box:hover .default-image {
            opacity: 0;
        }
        .benefit-box:hover .hover-image {
            opacity: 1;
        }
         .benefit-box .default-image1 {
            transition: opacity 0.3s ease;
            position: relative;
            z-index: 1;
            width: 40px;
             height: 40px;
              object-fit: cover;
        }
        .benefit-box .hover-image1 {
            position: absolute;
            width: 40px;
             height: 40px; 
             object-fit: cover;
            top: 34%;
            left: 51%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }
        .benefit-box:hover .default-image1 {
            opacity: 0;
        }
        .benefit-box:hover .hover-image1 {
            opacity: 1;
        }
        .timing-box:hover {
            background-color: var(--primary-purple) !important;
            color: white !important;
        }
        .timing-box:hover * {
            color: white !important;
        }
        .scroll-animation {
            animation: scroll 20s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        .carousel-item {
            min-height: 100vh;
        }
        .btn-custom {
            border: 2px solid var(--primary-purple) !important;
            background-color: var(--primary-purple) !important;
            color: white !important;
            transition: all 0.3s ease;
        }
        .footer-bg {
            background: linear-gradient(135deg, var(--primary-purple) 0%, #5a2b79 100%);
        }
        @media (max-width: 768px) {
            .display-1 { font-size: 2.5rem; }
            .display-2 { font-size: 2rem; }
            .display-3 { font-size: 1.75rem; }
        }
                .timing-box {
            transition: all 0.3s ease;
            cursor: pointer;
            background: #EED2F9;
        }
          /* Ensure content doesn't overflow */
        .content-wrapper {
            max-width: 100%;
            overflow-x: hidden;
        }
        
        .contact-grid {
            width: 100%;
            max-width: 100%;
        }
        
        /* Prevent text overflow */
        .text-wrap {
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }
        
        /* Flexible layout for contact info */
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            max-width: 100%;
           
        }
        
        .contact-text {
            flex: 1;
            min-width: 0;
            word-break: break-word;
        }

        /* Enhanced carousel responsiveness */
        .carousel-inner .carousel-item {
            min-height: 85vh;
        }

        /* Responsive adjustments for different screen sizes */
        @media (max-width: 575.98px) {
            .carousel-inner .carousel-item {
                min-height: auto;
                padding: 2rem 0;
            }
            
            .carousel-item h1 {
                font-size: 2.5rem !important;
            }
            
            .carousel-item .display-2 {
                font-size: 2rem !important;
            }
        }

        @media (min-width: 576px) and (max-width: 767.98px) {
            .carousel-inner .carousel-item {
                min-height: 70vh;
            }
            
            .carousel-item h1 {
                font-size: 3rem !important;
            }
        }

        @media (min-width: 768px) and (max-width: 991.98px) {
            .carousel-inner .carousel-item {
                min-height: 75vh;
            }
            
            .carousel-item h1 {
                font-size: 3.5rem !important;
            }
        }

        @media (min-width: 992px) and (max-width: 1199.98px) {
            .carousel-inner .carousel-item {
                min-height: 80vh;
            }
        }

        @media (min-width: 1200px) {
            .carousel-inner .carousel-item {
                min-height: 85vh;
            }
        }

        /* iPad Pro and large tablet specific adjustments */
        @media (min-width: 1024px) and (max-width: 1366px) {
            .carousel-inner .carousel-item {
                min-height: 42vh;
            }
            
            .carousel-item .container-fluid {
                padding: 2rem 3rem;
            }
            
            .carousel-item h1 {
                font-size: 4rem !important;
            }
            
            .carousel-item .display-2 {
                font-size: 3.5rem !important;
            }
        }

        /* Image responsiveness improvements */
        .carousel-item img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

        /* Contact section responsive improvements */
        .contact-grid .row {
            align-items: flex-start;
        }

        @media (max-width: 991.98px) {
            .contact-grid .col-xl-4,
            .contact-grid .col-xl-8 {
                width: 100%;
            }
        }


        /* Font size adjustments */
        .fs-90 {
            font-size: 0.9rem;
        }

        /* Ensure proper text wrapping on smaller screens */
        @media (max-width: 575.98px) {
            .contact-text {
                font-size: 0.8rem;
            }
        }
   /* =============
     contact us
    ============= */
    /* Contact Section Styles */
    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 141px 20px;
      min-height: calc(100vh - 160px);
      gap: 40px;
    }
    .left-text {
      flex: 1;
      min-width: 280px;
      text-align: center;
    }
    .left-text h5 {
      font-size: 20px;
      color: #5c2c84;
      margin-bottom: 10px;
      font-family: 'Poppins', sans-serif;
      position: relative;
    }
    .left-text h5::before,
    .left-text h5::after {
      content: "•";
      color: #5c2c84;
      margin: 0 10px;
    }
    .left-text h1 {
      font-size: 80px;
      font-weight: 300;
      font-family: 'Jost', sans-serif;
      background-clip: text;
      line-height: 1;
    }
    .right-boxes {
      flex: 1;
      min-width: 320px;
    }
    .box-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }
    .contact-box {
      background-color: #eacdfc;
      border: 2px solid #000;
      border-radius: 20px;
      padding: 25px;
      text-align: center;
      transition: 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 230px;
    }
    .contact-icon {
      width: 69px;
      height: 69px;
      margin-bottom: 12px;
      transition: filter 0.3s;
      filter: brightness(0) saturate(100%) invert(26%) sepia(15%) saturate(1800%) hue-rotate(209deg) brightness(93%) contrast(89%);
    }
    /* Hover effects */
.contact-box:hover .contact-icon[src="images/whatsapp.png"] {
      filter: brightness(0) saturate(100%) invert(73%) sepia(63%) saturate(1235%) hue-rotate(81deg) brightness(98%) contrast(89%); /* Green - #00FF00 */
    }
.contact-box:hover .contact-icon[src="images/phonenumber.png"] 
{/* Blue - #0000FF */
  filter: brightness(0) saturate(100%) invert(11%) sepia(94%) saturate(7486%) hue-rotate(246deg) brightness(103%) contrast(104%);
}
.contact-box:hover .contact-icon[src="images/location.png"] 
{/* Red - #FF0000 */
  filter: brightness(0) saturate(100%) invert(16%) sepia(90%) saturate(7492%) hue-rotate(2deg) brightness(103%) contrast(105%);
}
.contact-box:hover .contact-icon[src="images/mail.png"] 
{ /* Light Red - #FF5757 */
  filter: brightness(0) saturate(100%) invert(53%) sepia(80%) saturate(2400%) hue-rotate(339deg) brightness(101%) contrast(97%);
}
    .contact-box h5 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .contact-box p {
      margin: 0;
      font-size: 13px;
      color: #222;
    }
    .contact-box a {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      justify-content: center;
    }
    /* Responsive Styles */
    @media (max-width: 991.98px) {
      .left-text h1 {
        font-size: 60px;
      }
    }
    @media (max-width: 768px) {
      .contact-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 114px 12px;
      }
      .left-text h1 {
        font-size: 48px;
      }
    }
 .powered-box {
            position: relative;
            display: inline-block;
            height: 50px;
            text-decoration: none;
        }

        .powered-logo,
        .powered-logo2 {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: opacity 0.3s ease;
            height: 40px;
        }

        .powered-logo2 {
            opacity: 0;
        }

        .powered-box:hover .powered-logo {
            opacity: 0;
        }

        .powered-box:hover .powered-logo2 {
            opacity: 1;
        }

