
:root{
  --primary-color:#592300;
  --secondary-color:#f0d8be;
  
  /* Active nav, cards */
  --navigation-color:#1e2e80;

  /* Borders, section dividers */
  --border-color:#4c5c9c;

/* Hover states, accents */
  --hover-color:#7a89b7;

  /* Backgrounds, subtle sections */
  --background-color:#a7b5d3;

  /* light background color */
  --light-background-color:	#d3ddeb;

  /* light black */
  --light-black-color:#747373;

  /* black color */
  --black-color:#000000;
  /* light white */
  --light-white-color:#f6f6f6;

  /* full white color */
  --white-color:#ffffff;
}

@font-face {
  font-family: gothamBold;
  src: url('../fonts/Minion3Display-Italic.ttf');
}

@font-face {
  font-family: gothamLight;
  src: url('../fonts/dmsans_n4.woff2');
}

/*@font-face {*/
/*  font-family: gothamThin;*/
/*  src: url('../fonts/Gotham-Thin.otf');*/
/*}*/


/*@font-face {*/
/*  font-family: hamilton;*/
/*  src: url('../fonts/Hamilton.ttf');*/
/*}*/

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  overflow-x: hidden;
}

::selection{
  background-color: var(--primary-color);
  color: var(--white-color);
}

h1,h2,h3,h4,h5,h6{
   font-family: gothamBold;
}

html, body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family:gothamLight;
  }


   /* For WebKit-based browsers */
  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

    ::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 20px;
    }
    

  .title{
    color: var(--primary-color);
    font-weight: 400;
    font-family: gothamLight;
  }

  .ptb-100{
    padding-top: 100px;
    padding-bottom: 100px;
  }
.pt-120{
  padding-top: 120px;
}
h2.title{
  position: relative;
  margin-bottom: 3rem;
  display: inline-block;
}

h2.title::before,
h2.title::after
{
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, .3);
  transition: width .3s ease;
}


h2.title::after{
  top: 130%;
}

h2.title:hover::before,
h2.title:hover::after{
  width: 100%;
}

.btn{
  padding: 10px 25px;
}
  
  


  .navbar ul{
    padding: 10px;
  }

  .navbar-toggler{
    background-color: var(--primary-color);
    padding: 10px;
  }

   .navbar .nav-link {
  color: var(--light-black-color); /* Make sure this is defined */
  text-decoration: none;
  transition: color .5s ease;
  text-transform: capitalize;
  font-size: 17px;
  position: relative;
}


.navbar .nav-link::before{
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 0;
  height: 2px;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
  transition: width .5s ease;
}


.navbar .nav-link:hover::before{
  width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
color: var(--primary-color);
}
 
  .navbar-nav li{
    margin-right: 20px;
  }


  .hero {
   min-height: 100vh;
   border-bottom-right-radius: 150px;
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 86%);

  }



   

    .about{
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

     .about .about-content{
      background-color: var(--primary-color);
      padding: 50px;
      font-family: gothamLight;
      color: var(--light-white-color);
      margin-top: -350px;
     }

    .about-content  h1{
      text-align: center;
      font-size:3.5vw;
      font-family: gothamThin;
      padding-bottom: 70px;
      color: var(--light-white-color);
    }


    .about-content  .cta-button{
      color: var(--secondary-color);
      font-size: 25px;
      font-family: gothamBold;
      padding-bottom: 50px;
     }

    .about-content .cta-button a{
      display: block;
      cursor: pointer;
      color: var(--secondary-color);
      padding-bottom: 10px;
      text-decoration: none;
      border-bottom: 5px solid var(--secondary-color);
      font-size: 1.8vw;
      text-decoration: none;
    }


     .about .prachi-image{
      padding-bottom: 80px;
     }
      .about-prachi-mehta{
        padding-top: 80px;
        padding-bottom: 50px;
        padding-left:8%;
        padding-right:8%;
      }

      .about-prachi-mehta p{
        color: #747373;
        font-size: 19px;
      }

       .button{
        display: inline-block;
        border: none;
        background-color: var(--black-color);
        color: var(--black-color);
        padding: 10px 25px;
        margin-top: 20px;
        text-align: center;
        box-shadow: 0 3px 5px rgba(0, 0, 0, .5);
        transition: background-color .3s ease, color .3s ease;
        color: var(--light-white-color);
        cursor: pointer;
        font-size: 20px;
        position: relative;
        transition: padding .3s ease;
        overflow: hidden;
        z-index: 1;
      }
      
       .button::before{
        position: absolute;
        top: -100%;
        left: 0;
        right: 0;
        content: '';
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        transition: top .5s ease;
        z-index: -1; 
       }

      .button:hover::before{
        top: 0;
        color: var(--light-white-color);
      }


        .button i{
          display: none;
        }

        .button:hover i{
          display: inline-block
      }


      .enquire-btn-fixed button{
        border: none;
        background-color: var(--black-color);
        color: var(--black-color);
        padding: 10px 25px;
        margin-top: 20px;
        text-align: center;
        box-shadow: 0 3px 5px rgba(0, 0, 0, .5);
        transition: background-color .3s ease, color .3s ease;
        color: var(--light-white-color);
        cursor: pointer;
        font-size: 20px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transition: padding .3s ease;
        overflow: hidden;
        z-index: 1;
        width: 100%;
        display: none;
      }
      
       .enquire-btn-fixed button::before{
        position: absolute;
        top: -100%;
        left: 0;
        right: 0;
        content: '';
        width: 100%;
        height: 100%;
        background-color: var(--secondary-color);
        transition: top .5s ease;
        z-index: -1;
         
       }

      .enquire-btn-fixed button:hover::before{
        top: 0;
        color: var(--light-white-color);
      }
  
  
      .adult{
        padding: 100px 0;
        background-color: rgba(190, 190, 190, 0.2);
        padding-bottom: 0;
      }


      .teenager-container{
        overflow: hidden;
        padding-top: 50px;
        padding-bottom: 50px;
        position: relative;
      }


    .teenager-container .teenager-slide{
      text-align: center;
      font-size: 18px;
    }
    
   .teenager-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


     .teenager-slide .slide-content{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 0%;
        background-color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s ease, visibility .5s ease, height .5s ease;
        overflow: hidden;
     }

    .teenager-slide .slide-content h3{
      font-size: 1.5vw;
      text-align: center;
      font-weight: 400;
      color: var(--light-white-color);
      padding-bottom: 10px;
      border-bottom: 2px solid var(--secondary-color);
    }

    .teenager-slide:hover .slide-content{
      height: 100%;
      opacity: 1;
      visibility: visible
    }

    .swiper-pagination{
      position: relative;
      margin-top: 50px;
    }


     .swiper-pagination .swiper-pagination-bullet{
      width: 20px;
      height: 20px;
      position: relative;
      cursor: pointer;
     }

     .swiper-pagination .swiper-pagination-bullet::before{
      width: 5px;
      height: 5px;
      position: absolute;
      content: '';
      background-color: var(--white-color);
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      border-radius: 50%;
     }


      .swiper-pagination .swiper-pagination-bullet .swiper-pagination-bullet.active{
        background-color: var(--secondary-color);
      }


      .custom-pagination {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
      }

  .custom-bullet {
    width: 20px;
    height: 20px;
    background: #aaa;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    margin-top: 50px;
  }

  .custom-bullet::before{
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--light-white-color);
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
  }

.custom-bullet.active {
  background: var(--primary-color);
}

.extra-content{
  padding: 50px 0;
  color: #747373;
}

.extra-content p{
  font-size: 19px;
}

.therapy{
 padding: 50px 0;
}

.testimonial-container{
  padding: 100px 0;
  border-bottom-right-radius: 150px;
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 86%);
  overflow: hidden;
  margin-top: 50px;
}


.testimonial-container .testimonial-slide-content{
  color: var(--light-white-color);
  font-family: gothamLight;
}

.testimonial-container .testimonial-slide{
  padding: 0 5%;
}

.testimonial-container .testimonial-designation-container{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}


.testimonial-designation-container .testimonial-information h4{
  color: var(--white-color);
}

.testimonial-designation-container .testimonial-information h6{
  color: var(--light-white-color);
  font-family: gothamLight;
}


.testimonial-designation-container .image{
  width: 150px;
  height: 150px;
}
.testimonial-designation-container .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.footer-section{
  background:  linear-gradient(
                    to bottom right, 
                    #592400bd, 
                    #592400af
                ), url('../images/Footer.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 450px 0;
  margin-top: -150px;
  z-index: -1;
  padding-bottom: 30px;
  background-attachment: fixed;
}



.custom-row .copyright-area{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  color: var(--white-color);
  padding-top:30px;
}


.custom-row .copyright-area a{
  text-decoration: none;
  color: var(--white-color);
}

.social-icons{
  text-align: center;
}

.social-icons a{
  display: inline-block;
  text-decoration: none;
  font-size: 25px;
  color: var(--white-color);
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  padding-top: 18px;
  margin-top: 20px;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(255, 255, 255, 0.8);
  transition: background-color .3s ease;
  margin-right: 10px;
}


.social-icons a:hover{
  background-color: var(--secondary-color);
   box-shadow: 0 1px 5px var(--secondary-color);
}

@media(min-width:1920px){
  .about-content h1{
    font-size: 2vw;
  }

  .about-content .cta-button a{
    font-size: 1.6vw;
  }
}
@media(max-width:768px){
  .about .about-content{
    position: relative;
    margin-top: 0;
  }

  .navbar-brand img{
    width: 150px;
  }

  .phone a{
    font-size: 30px;
    color: var(--secondary-color);
    text-decoration: none;
  }

  .enquire-btn-mobile{
    padding-top: 30px;
    padding-bottom: 50px;
    padding-left: 8%;
    padding-right: 8%;
  }

  .about-prachi-mehta{
    padding-left: 0;
    padding-right: 0;
  }

  .about .prachi-image {
    padding-bottom: 0;
    margin-top: 100px;
}

.about-content h1{
  font-size: 8vw;
}

.about-content .cta-button a{
  font-size: 5vw;
}
  .teenager-container{
    padding-bottom: 0;
  }

  .teenager-slide .slide-content h3{
    font-size: 6vw;
  }

  .therapy{
    padding-bottom: 0;
  }

  .enquire-btn-fixed button{
    display: block;
    width: 100%;
  }

  .custom-row .copyright-area{
    justify-content: center;
    padding-bottom:30px;
  }
}



     .parallax-bg {
      background-image: linear-gradient(#592400bd, 
                    #592400af),url('../images/Footer.png'); /* Replace with your image */
      height: 100vh;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

      .play-button {
      background: rgba(255, 255, 255, 0.6);
      border: none;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      font-size: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      position: relative;
      z-index: 2;
    }

    /* Pulse Effect */
    .play-button::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
      }
      70% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
      }
      100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
      }
    }



    .modal-dialog {
      max-width: 800px;
    }

    .modal-body {
      padding: 0;
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
    }

    .modal-body iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .media-item {
      overflow: hidden;
      background-color: #ffffff;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .media-item img {
      width: 100%;
      height: 15rem;
      object-fit: cover;
      display: block;
      padding-bottom: 20px;
    }

     .media-item a{
      text-decoration: none;
      color: var(--black-color);
     }
    .media-item h5 {
      padding-top: 20px;
      padding-bottom: 0;
      padding-left: 20px;
      font-size: 17px;
      transition: color .5s ease;
    }

    .media-item:hover h5{
      color: var(--primary-color);
    }

    .media-item .cta-button{
       padding: 20px;
       padding-left: 0;
       padding-top: 0;
    }

       .media-item .cta-button a{
        padding-bottom: 5px;
        color: var(--black-color);
       }

    .swiper-button-custom {
      width: 40px;
      height: 40px;
      background: #000;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      z-index: 10;
      transition: background-color .5s ease;
    }

        .swiper-button-custom:hover{
          background-color: var(--primary-color);
        }

    .swiper-button-prev-custom {
      position: absolute;
      top: 50%;
      left: -20px;
      transform: translateY(-50%);
    }

    .swiper-button-next-custom {
      position: absolute;
      top: 50%;
      right: -20px;
      transform: translateY(-50%);
    }

    .swiper-pagination-bullet {
      background: #ccc;
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background: #000;
    }


    .moretext {
  display: none;
}


 /* Overlay and Popup */
    .overlay {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0; top: 0;
      width: 100vw; height: 100vh;
      background: var(--primary-color);
      justify-content: center;
      align-items: center;
    }

    .popup {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 500px;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
    }

    .popup h2 {
      margin-top: 0;
    }
    
     .popup h2 {
      font-size:25px;
    }

    .popup input {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      box-sizing: border-box;
      border:1px solid rgba(0, 0, 0, 0.1);
    }

    .popup input:focus{
      outline: none;
    }

    .popup input::placeholder{
      color: rgba(0, 0, 0, 0.5);
    }

    .popup button {
      padding: 10px 15px;
      background: var(--primary-color);
      color: white;
      border: none;
      cursor: pointer;
    }

    .error {
      color: red;
      font-size: 14px;
    }

    .thank-you {
      text-align: center;
      padding: 50px;
    }