:root {
  --theme-color: #79B695;
  --secondary-color: #D2A679;
  --base-color: #FFF8F0;
  --theme-bold: 700;
  --span-color: #56509f ;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::selection{
  color: var(--span-color);
  background-color: var(--theme-color);
} 
::-moz-selection{
  color: var(--span-color);
  background-color: var(--theme-color);
}
::-webkit-selection{
  color: var(--span-color);
  background-color: var(--theme-color);
}
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--base-color) !important;
}
img {
  height: 100%;
  width: 100%;
}
.svg_img{
  height: 1rem !important;
  width: 1rem !important;
  filter: invert(1);
}

.no-drag {
  -webkit-user-drag: none; /* Safari + older Chrome */
  -khtml-user-drag: none;  /* Older Konqueror browsers (not commonly used now) */
  -moz-user-drag: none;    /* Older Firefox */
  -o-user-drag: none;      /* Older Opera */
  user-drag: none;         /* Standard (not widely supported) */
  pointer-events: none;    /* Optional: disables all mouse interactions */
}
p{
  color: #333333;
}
.theme_color{
  color: var(--theme-color);
}
.base_color{
  color: var(--base-color);
}
.span_color{
  color: var(--span-color);
}
.seconday_color{
  color: var(--secondary-color);
}
.btn-primary {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--base-color);
  min-width: 160px;
  padding: 0.6rem 2rem 0.6rem;
  border-radius: 50px;
  font-weight: bold;
  outline: none !important;
  transition: all 0.5s;
  border: none !important;
  box-shadow: 
  0 6px 12px 0 rgba(142, 202, 170, 0.265), 
  0 4px 16px 0 rgba(70, 102, 86, 0.35);
  cursor: pointer;
  position: relative;
  overflow: hidden; /* Needed for ripple */
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary-white{
  display: inline-block;
  background-color: var(--base-color);
  color: var(--theme-color) !important;
  min-width: max-content;
  padding: 0.6rem 3rem 0.6rem;
  border-radius: 50px;
  font-weight: bold;
  outline: none !important;
  transition: all 0.5s;
  border: none !important;
  box-shadow: 
  0 6px 12px 0 rgba(169, 249, 207, 0.15), 
  0 4px 16px 0 rgba(121, 182, 149, 0.35);
  cursor: pointer;
  position: relative;
  overflow: hidden; /* Needed for ripple */
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
/* Ripple Effect Circle */
.btn-primary .ripple-effect{
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
  z-index: 0;
}
.btn-primary-white .ripple-effect{
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background:hsla(23, 51%, 35%, 0.128);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
  z-index: 0;
}
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.under_line{
  display: inline-block;
  height: 2px;
  width: 80px;
  position: relative;
  background-color: var(--theme-color);
  top: -5px !important;
}

/* Navbar styles */
.navbar {
  background: #79B695;
  background: -webkit-linear-gradient(290deg, rgba(121, 182, 149, 1) 1%, rgba(121, 182, 149, 1) 72%, rgba(255, 248, 240, 1) 71%, rgba(255, 248, 240, 1) 100%);
  background: -moz-linear-gradient(290deg, rgba(121, 182, 149, 1) 1%, rgba(121, 182, 149, 1) 72%, rgba(255, 248, 240, 1) 71%, rgba(255, 248, 240, 1) 100%);
  background: linear-gradient(290deg, rgba(121, 182, 149, 1) 1%, rgba(121, 182, 149, 1) 72%, rgba(255, 248, 240, 1) 71%, rgba(255, 248, 240, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#79B695", endColorstr="#FFF8F0", GradientType=0);padding: 1rem 0 !important;
  position: fixed !important;
  z-index: 101;
  width: 100%;
}

.navbar_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  width: 160px;
  height: 55px;
}

/* Navigation links */
.nav_links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav_links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-weight: var(--theme-bold);
}

.nav_links a:hover {
  color: var(--span-color);
}

/* Hamburger icon */
.menu_icon {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu_icon span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* VIDEO HERO SECTION */
.hero_section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 0;
  pointer-events: none;
}
.hero_video video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
.hero_shape_image {
  width: 100%;
  position: absolute;
  z-index: 0;
  bottom: -30px;
}
.hero_form_outer {
  width: 100%;
  position: relative;
  z-index: 100;
  bottom: 80%;
}
.hero_form {
  position: absolute;
  right: 12%;
}


/* JOY SECTION CSS */
.joy_section{
    background-color: var(--secondary-color) ;
    padding: 1.5rem 0;
}
.joy_section .row, .about_section .row{
    justify-content: center;
    gap: 1rem;
    align-items: center;
}
.title{
    font-size: 3rem;
    font-weight: var(--theme-bold);
    color: var(--base-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.subtitle{
    letter-spacing: 2px;
    font-weight: var(--theme-bold);
    color: var(--theme-color) ;
    text-transform: uppercase;
    margin: 0;
}
.joy_section p{
    color: var(--base-color);
    text-align: justify;
}
.joy_shape_image{
    width: 100%;
    position: absolute;
    z-index: 0;
    transform: rotate(180deg);
}

/* ABOUT SECTION CSS */
.about_section{
    padding: 7rem 0 2rem;
}
.about_section .title , .core_values_section .title, .testi_section .title, .faq_section .title{
  color: var(--secondary-color);
  /* margin-bottom: 0; */
  line-height: 45px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.about_section p{
  text-align: justify;
}
.about_img{
  text-align: center;
}
.about_img img{
  height: 350px;
  width: 350px;
}
/* CORE VALUES SECTION  */
.core_value_flex{
    display: flex;
    padding: 1.5rem 0 .5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.core_value_card{
    padding: 1rem;
    width: 335px !important;
    margin: .5rem;
    background-color: #fff;
    border: 4px dashed var(--secondary-color);
    border-radius: 2rem;
}
.core_value_card p{
    text-align: justify;
}
.core_value_details{
    display: flex;
    align-items: center;    
    gap: .8rem;
}
.core_value_icon{
    height: 60px;
    width: 60px;
    padding: .5rem;
    background-color: #fff;
    border-radius: 50px ;
}
.core_value_title{
    font-weight: var(--theme-bold);
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* CTA SECTION CSS */
.cta_section{
    padding: 2rem 0;
}
.cta_container{
    background-color: var(--theme-color);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    margin: 1rem auto;
    max-width: 900px !important;
  }
  .cta_img {
    position: absolute;
    height: 100%;
    right: -1%;
    top: 0;
    width: 100%;
    z-index: 1;
    overflow: hidden;
  }
  .cta_img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0) -50%, var(--theme-color) 100%);
    z-index: 2;
    pointer-events: none;
  }
  .cta_img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: 1;
    position: relative;
    right: -3%;
  }
  .cta_details{
    padding: 2rem;
    padding-left: 3rem !important;
    position: relative;
    z-index: 100;
    text-align: center;
  }
   .cta_details h2 {
    color: #fff;
    font-weight: 700;
  }
  .cta_details p{
    color: #fff;
    margin: 0;
  }
  .cta_icon{
    font-size: 2rem;
    color: #fff;
  }
  .cta_cta{
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
.cta_inner_flex{
  display: flex;
  flex-direction: column;
}
.cta_inner_flex ul{
  padding-left: 0;
  list-style: none;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta_inner_flex a{
  margin-top: -5px !important;
  color: var(--base-color ) !important;
}

  /* TESTIMONIALS SECTION CSS */
  .testi_flex{
    display: flex;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
 }
 .testi_card{
    background-color: #fae7e073;
    width: 320px;
    padding: 1rem;
    border-radius: 1rem;
 }
 .testi_icon i{
    font-size: 2rem;
    color: var(--theme-color);
 }
.testi_title{
  color: var(--secondary-color) !important;
  font-size: 16px;
}
.testi_details h3{
  color: var(--theme-color); 
  font-size: 24px;
}
.testi_author{
  display: flex;
  gap: .5rem;
  align-items: center;
}
.testi_author img{
  height: 45px;
  width: 45px;
  border-radius: 50px;
}
/* FAQ SECTION CSS */
.faq_section{
    padding: 2rem 0;
}
.faq_section .container .title{
  margin-bottom: 2rem !important;
}
.f_a_q {
    background-color: var(--secondary-color);
    border: none;
    color: var(--base-color);
    cursor: pointer;
    padding: 1rem;
    width: 100%;
    text-align: left;   
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border-radius: 1rem;
  }
  
  .f_a_q:hover,
  .f_a_q.active {
    background-color: var(--theme-color);
  }

  .panel {
    padding: 0 1rem;
    background-color: #fff;
    max-height: 0;
    margin: 0rem 1rem;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
  }
  .panel.open {
    padding: 1rem;
  }
  .panel p {
    margin: 0;
    padding: 1rem 0;
  }
  .single_faq{
    /* border: 2px solid rgba(212, 212, 212, 0.41); */
    margin-bottom: 1rem;
  } 
  
/* FOOTER CSS */
.footer_section{
    background: var(--theme-color);
    color: #fff;
    width: 100%;
    position: relative;
}
.footer_flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.footer_flex ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-bottom: 0.3rem;
    justify-content: center;
    padding-left: 0;
    line-height: 15px;
}
.footer_flex ul li i{
    position:relative ;
    top: 2px;
}
.footer_flex ul li a{
  text-decoration: none;
  color: #fff;
}
.footer_flex p{
  margin-bottom: 0;
  color: #fff;
  text-align: center;
}
.footer_maintained{
    background: #fff;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;    
    color: var(--theme-color);
    text-align: center;
    padding: 1rem 0;
}
.footer_maintained p{
    font-weight: var(--theme-bold);
    margin-bottom: 0;
}
.footer_maintained p a{
  color: var(--theme-color);
  text-decoration: none;
}


/* THANKYOU PAGE */
.thankyou_details{
  height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.thankyou_details h1{
  font-weight: var(--theme-bold);
  color: var(--theme-color);
  font-size: 5rem ;
}
.thankyou_details p {
  text-align: center !important;
}
.thankyou_details a {
  text-decoration: none;
}
/* MODAL CSS */

.btn-popup {
  background-color: var(--theme-color);
  color: white;
  padding: 12px 15px 6px;
  border: none;
  border-radius: 50px;
  font-size: 1.5rem;
  bottom: 110px ;
  right: 30px ;
  cursor: pointer;
  font-weight: bold;
  position: fixed;
  z-index: 101;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Modal container */
.custom-modal  {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal content box */
.modal-content {
  background-color: white !important;
  width: 90%;
  max-width: 300px;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  border-radius: 1rem !important;
}

/* Close button */
.close-btn {
  position: absolute;
  right: 1.1rem;
  top: -2px !important;
  background: transparent;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  color: var(--base-color);
  z-index: 100;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 100;
  background-color: var(--theme-color);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px 15px 6px;
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* hidden by default */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTop:hover , .btn-popup:hover{
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .modal-content {
    width: 90%;
  }
  .thankyou_details h1 {
    font-size: 3.5rem !important;
  }
}
/* Responsive */

@media (max-width:1199.49px){
    .hero_shape_image {
        bottom: 0px !important;
      }
      .hero_form {
        position: absolute;
        right: 10%;
      }
}
@media (max-width:991.49px){
  .about_img img{
    height: 330px;
    width: 330px;
  }
  .cta_section{
    padding: 1.5rem;
  }
  .hero_form {
    position: absolute;
    right: 5%;
  }
        /* Navbar styles */
  .navbar {
    background: #79B695;
    background: -webkit-linear-gradient(290deg, rgba(121, 182, 149, 1) 1%, rgba(121, 182, 149, 1) 47%, rgba(255, 248, 240, 1) 46%, rgba(255, 248, 240, 1) 100%);
    background: -moz-linear-gradient(290deg, rgba(121, 182, 149, 1) 1%, rgba(121, 182, 149, 1) 47%, rgba(255, 248, 240, 1) 46%, rgba(255, 248, 240, 1) 100%);
    background: linear-gradient(290deg, rgba(121, 182, 149, 1) 1%, rgba(121, 182, 149, 1) 47%, rgba(255, 248, 240, 1) 46%, rgba(255, 248, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#79B695", endColorstr="#FFF8F0", GradientType=0);
    }
    
    .nav_links {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 250px;
      background: var(--theme-color);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      transition: right 0.4s ease;
    }

    .nav_links.active {
      right: 0;
    }

    .menu_icon {
      display: flex;
    }

    /* Hamburger to Cross Animation */
    .menu_icon.active span:nth-child(1) {
      transform: rotate(45deg) translate(4px, 7px);
    }
    .menu_icon.active span:nth-child(2) {
      opacity: 0;
    }
    .menu_icon.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -10px);
    }
  }

@media (max-width: 768.49px) {
  /* .hero_form {
    display: none !important;
  } */

  .core_value_card, .testi_card{
    width: 260px !important;
  }
  .about_img img{
    height: 350px;
    width: 310px;
  }
}
@media (max-width:767.47px){
  .hero_text, .joy_flex, .joy_flex p, .about_section, .about_section p {
    text-align: center;
   }
  .reversed_column{
    flex-direction: column-reverse !important;
  }
  .joy_section .row{
    width: 100%;
    max-width: 700px;
    padding: auto 1rem;
    margin: auto;
  }
  .joy_flex_img{
    max-height: 400px;
    max-width: 400px;
  }
}
@media (max-width:576.49px){
  
  .core_value_card, .testi_card{
    width: -webkit-fill-available !important;
  }
  .footer_flex ul li i{
    display: none;
  }
    .cta_section, .cta_details {
        padding: 1rem !important;
        }
    .about_section .title , .core_values_section .title, .testi_section .title, .faq_section .title{
          line-height: 30px !important;
      }
      .title{
        font-size: 2rem !important;
      }
      .about_img img{
        height: 300px;
        width: 280px;
      }
}