* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.mar-lg-10 { margin-left: 10px; margin-right: 10px; }
.mar-lg-20 { margin-left: 20px; margin-right: 20px; }
.mar-lg-30 { margin-left: 30px; margin-right: 30px; }
.mar-lg-40 { margin-left: 32px; margin-right: 32px; }
.mar-lg-50 { margin-left: 50px; margin-right: 50px; }
.mar-lg-60 { margin-left: 60px; margin-right: 60px; }
.mar-lg-70 { margin-left: 70px; margin-right: 70px; }
.mar-lg-80 { margin-left: 80px; margin-right: 80px; }
.mar-lg-90 { margin-left: 90px; margin-right: 90px; }
.mar-lg-100{ margin-left: 100px; margin-right: 100px; }
.mar-lg-r-0{margin-right: 0px !important;}

.pad-lg-10 { padding-left: 10px; padding-right: 10px; }
.pad-lg-20 { padding-left: 20px; padding-right: 20px; }
.pad-lg-30 { padding-left: 30px; padding-right: 30px; }
.pad-lg-40 { padding-left: 32px; padding-right: 32px; }
.pad-lg-50 { padding-left: 50px; padding-right: 50px; }
.pad-lg-60 { padding-left: 60px; padding-right: 60px; }
.pad-lg-70 { padding-left: 70px; padding-right: 70px; }
.pad-lg-80 { padding-left: 80px; padding-right: 80px; }
.pad-lg-90 { padding-left: 90px; padding-right: 90px; }
.pad-lg-100 { padding-left: 100px; padding-right: 100px; }

/*=========Vertical Scroller CSS==========*/
::-webkit-scrollbar {
  width:4px; // to adjust width
}
::-webkit-scrollbar-track {
  background: #d1c7b4;
  border: rgba(50, 50, 50, 1);
}
::-webkit-scrollbar-thumb {
  background:#bc7829;
}
::-webkit-scrollbar-thumb:hover {
  background: #bc7829;
}
::-webkit-scrollbar-thumb:active {
  background: #bc7829;
}
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

html,
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}

/* Left side (scrollable) */
.left_container {
  width: 78%;
  color: #fff;
  float: left;
  min-height: 100vh;
}

/* Right side (fixed) */
.right_container {
  width: 22%;
  background: #fff;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  padding: 0px;
  z-index: 9;
  border-left: 1px solid #ccc;
}

.right_container .acf {
  width: 98%;
  text-align: center;
  margin: 0 auto;
}

.right_container .acf ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  box-sizing: border-box;
  background: #595959;
  border-radius: 0px 0px 8px 8px;
}

.right_container .acf ul li {
  flex: 1;
  text-align: center;
}

.right_container .acf ul li:not(:last-child) {
  border-right: 1px solid #999;
}

.right_container .acf ul li a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #fff;
  font-size: clamp(11px, calc(11px + 0.3vw), 13px);
  font-weight: 500;
  transition: color 0.3s;
}

.right_container .acf ul li a:hover {
  color: #ee8c0a;
}

.right_container .call_us {
  text-align: center;
  padding: 20px;
  background: #efefef;
}

.right_container .call_us a {
  display: inline-block;
  background: #bd770e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}

.right_container .call_us a.blink {
  animation: 1.5s linear infinite blink-danger;
}

.right_container .book_your_visit {
  text-align: center;
  margin-top: 30px;
}

.right_container .book_your_visit h5 {
  font-size: 18px;
  text-transform: uppercase;
  position: relative; 
  display: inline-block;
}

.right_container .book_your_visit h5::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 30%;   
  height: 2px;         
  background-color: #000; 
}

@keyframes blink-danger {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 88, 16, .7);
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(1deg);
  }

  40% {
    box-shadow: 0 0 0 10px rgba(204, 88, 16, 0);
    transform: rotate(-1deg);
  }

  60% {
    transform: rotate(1deg);
  }

  80% {
    box-shadow: 0 0 0 10px rgba(204, 88, 16, 0);
    transform: rotate(-1deg);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(204, 88, 16, 0);
    transform: rotate(0deg);
  }
}


  .right_container .form-container {
    padding: 30px;
    border-radius: 5px;
  }

  .right_container .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  .right_container .form-group {
    margin-bottom: 15px;
  }

  .right_container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
    text-align: left;
    font-size:9px;
    font-weight: 400;
    text-align: justify;
  }
  .right_container .s_btn{text-align: center;margin-top: 30px;}
  .right_container select, .right_container input[type="text"], .right_container input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: none;              
    border-bottom: 1px solid #595959; 
    outline: none;  
    font-size: 14px;
    transition: border-color 0.3s;
  }
  .right_container input[type="checkbox"]{vertical-align: middle;}
  .right_container select:focus, input[type="text"]:focus, .right_container input[type="tel"]:focus {
    border-color: #007bff;
    outline: none;
  }

.right_container button.blink {
  animation: 1.5s linear infinite blink-danger;
}
  .right_container .blink {
    display: inline-block;
  background: #bd770e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  }

 .right_container .submit-btn:hover {
    background: #0056b3;
  }

  .right_container .error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
  }

  .right_container .success {
    color: green;
    font-size: 12px;
    text-align: center;

  }

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  background: #efefef;
  color: #fff;
  position: relative;
  z-index:999;
  position: sticky;
  top: 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #ccc;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
}

nav ul li {
  line-height: 52px;
  position: relative;
  display: inline-block;
  padding: 0 5px;
  transition: background 0.3s ease, padding 0.3s ease;
}

nav ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  /* start me hidden */
  height: 2px;
  background: #06b527;
  transition: width 0.4s ease;
  /* smooth animation */
}

nav ul li:hover {
  color: #ff9800;
}

nav ul li:hover::after {
  width: 100%;
  /* hover pe left se right expand hoga */
}

nav ul li a {
  text-decoration: none;
  color: #282828;
  transition: 0.3s;
  font-size: 14px;
}

nav ul li a i {
  font-size: 10px;
  margin-left: 3px;
}
nav ul li.active {
  background: #e0e0e0;
  padding: 0 15px;
}

nav ul li a.active::after {
  width: 100%;
}
/* bounce animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-8px);
    /* upar ka jhatka */
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(-4px);
    /* chhota jhatka */
  }
}

.icon-bounce {
  display: inline-block;
  animation: bounce 0.6s infinite;
  /* fast and continuous */
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #232323;
}

/* Mobile Styles */
@media(max-width: 768px) {
  nav ul {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #000;
    flex-direction: column;
    align-items: start;
    padding: 60px 20px;
    gap: 20px;
    transition: left 0.3s ease;
  }

  nav ul.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  /* yaha se fix */
  header {
    justify-content: space-between;
    /* logo left, hamburger right */
  }

  .logo {
    margin: 0;
    /* margin hata diya */
  }
}

#slider {position: relative;}
#slider .rera_details {position: absolute;top: 30px; right:10px;}
#slider .rera_details .rera_img{max-width: 350px!important;background: rgba(255, 255, 255, .8);padding: 10px;border-radius: 3px;}

#slider .owl-dots {
  position: absolute;
  z-index: 99;
  bottom: 50px;
  right: 20px;
  display: flex;
  gap: 0px;
}

#slider .owl-nav button {
  background: rgba(255, 255, 255, .4);
  border: none;
  padding: 4px 10px !important;
}

.slider_sec {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slider_sec .project_info {
  position: absolute;
  width: 22vw;
  background: #595959;
  color: #fff;
  margin: 20px;
  z-index: 99;
  border-radius: 8px;
  transform: translateY(-50%);
  top: 48%;
  box-shadow: rgba(70, 80, 91, 0.2) 0px 7px 20px 0px;
}

.slider_sec .project_info {}

.slider_sec .project_info .caption {
  background: linear-gradient(135deg, #ee8c0a, #c67306, #ee8c0a);
  background-size: 300% 300%;
  animation: gradientMove 6s ease infinite;
  color: #fff;
  padding: 10px;
  border-radius: 8px 8px 0px 0px;
  text-align: center;
  border-bottom: 1px solid #fff;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.slider_sec .project_info .project_info_box {
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
}

.slider_sec .project_info .project_info_box h1 {
   font-size: 20px;
}

.slider_sec .project_info .project_info_box h2 {
  font-size: 16px;
  font-weight: 400;
}

.slider_sec .project_info .project_info_box h3 {
  font-size: 14px;
  font-weight: 300;
  border-bottom: 1px solid rgb(255, 255, 255, .3);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.slider_sec .project_info .project_info_box .project_info_box_feature {
  text-align: center;
}

.slider_sec .project_info .project_info_box .project_info_box_feature h4 {
  font-size: 16px;
}

.slider_sec .project_info .project_info_box .project_info_box_feature h5 {
  font-size: 26px;
}

.slider_sec .project_info .project_info_box .project_info_box_feature button {
  margin-bottom: 20px;
}

.slider_sec .project_info .project_info_box .project_info_box_feature h6 {
  font-size: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgb(255, 255, 255, .3);
}

.slider_sec .project_info .project_info_box .project_info_box_feature p {
  font-size: 12px;
}

.slider_sec .project_info .project_info_box .project_info_box_feature a {
  display: inline-block;
  background: #bd770e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}

.slider_sec .project_info .project_info_box .project_info_box_feature a.blink {
  animation: 1.5s linear infinite blink-danger;
}

#project{margin: 20px 20px;border-radius: 5px;border: 1px solid #dddcdc;padding: 50px 20px;background: #f9f9f9;}
#project h4 {
   font-size: 20px;
  color: #595959;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#project h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;   /* line ki length = text ka 50% */
  height: 2px;
  background: #595959;
}
#project p{font-size: 15px;color: #595959;text-align: justify;}

#project .call_us {
  
}

#project .call_us a {
  display: inline-block;
  background: #bd770e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
}
#project .call_us a.blink {
  animation: 1.5s linear infinite blink-danger;
}





#area{margin: 20px 20px;border-radius: 5px;border: 1px solid #dddcdc;padding:50px 20px;background: #f9f9f9;}
#area h4 {
   font-size: 20px;
  color: #595959;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#area h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;   /* line ki length = text ka 50% */
  height: 2px;
  background: #595959;
}

#area .price_sec{border: 1px solid #dddcdc;text-align: center;background: #f0f0f0;padding: 25px;border-radius: 5px;box-shadow: rgba(70, 80, 91, 0.2) 0px 7px 20px 0px;}
#area .price_sec h6{ font-size: 28px;color: #595959;font-weight: 800;margin-bottom: 20px;}
#area .price_sec h6 small{display: block;font-size: 14px;font-weight: 300;color: #595959;}

#area .price_sec .area_sec{font-size: 16px;font-weight: 400;color: #595959;} 
#area .price_sec .inr_sec h5 {font-size: 26px;color: #bd770e;margin: 8px 0px 15px;padding: 8px 0px;font-weight: 800;
  border-top: 1px solid #ccc;border-bottom:1px solid #ccc;}

#area .call_us {}

#area .call_us a {
  display: inline-block;
  background: #bd770e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
}
#area .call_us a.blink {
  animation: 1.5s linear infinite blink-danger;
}  



#siteplan{margin: 20px 20px;border-radius: 5px;border: 1px solid #dddcdc;padding:50px 20px;background: #f9f9f9;}
#siteplan h4 {
   font-size: 20px;
  color: #595959;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#siteplan h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;   /* line ki length = text ka 50% */
  height: 2px;
  background: #595959;
}
#siteplan .mpl_sec{position: relative;}
#siteplan .mpl_sec a{display: block;}
#siteplan .mpl_sec a img{border: 1px solid #000;filter: blur(2px);width: 100%;height: 100%;object-fit: cover;object-position: center;border-radius:8px;}
#siteplan .mpl_sec .txt{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);padding: 15px;color: #fff;
  background: rgba(0, 0, 0, .7);z-index: 99;border-radius: 5px;}


#siteplan .upl_sec{position: relative;}
#siteplan .upl_sec a{display: block;}
#siteplan .upl_sec a img{border: 1px solid #000;filter: blur(2px);width: 100%;height: 100%;object-fit: cover;object-position: center;border-radius: 8px;}
#siteplan .upl_sec .txt{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);padding: 15px;color: #fff;
  background: rgba(0, 0, 0, .7);z-index: 99;border-radius: 5px;}



#amenities{margin: 20px 20px;border-radius: 5px;border: 1px solid #dddcdc;padding:50px 20px;background: #f9f9f9;}
#amenities h4 {
   font-size: 20px;
  color: #595959;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#amenities h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;   /* line ki length = text ka 50% */
  height: 2px;
  background: #595959;
}

#amenities .owl-carousel .item {
      background: #4CAF50;
      color: #fff;
      text-align: center;
      border-radius: 10px;
      margin: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    /* Slide container for 2x2 layout */
#amenities .slide-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

#amenities .slide-grid .item {
      width: calc(33% - 10px); /* 2 items per row */
      margin: 0;
    }
#amenities .owl-nav button {
      background: #333;
      color: #fff !important;
      padding: 5px 15px;
      border-radius: 5px;
      margin: 5px;
    }


 #amn .amenity-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 180px;
    cursor: pointer;
    width: 100%;
  }

  #amn .amenity-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  #amn .amenity-box:hover img {
    transform: scale(1.1);
  }

  #amn .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient color */
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    pointer-events: none; /* So hover still works on image */
  }

  #amn .top-right-text, .bottom-left-text {
    position: absolute;
    color: #fff;
    font-weight:500;
    padding: 10px;
    z-index: 2;
    background: rgba(0, 0, 0, .4);
    font-size: 15px;
    border-radius: 4px;
  }

  #amn .top-right-text {
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 200;
  }

  #amn .bottom-left-text {
    bottom: 10px;
    left: 10px;
  }    



  #gallery{margin: 20px 20px;border-radius: 5px;border: 1px solid #dddcdc;padding:50px 20px;background: #f9f9f9;}
#gallery h4 {
   font-size: 20px;
  color: #595959;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#gallery h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;   /* line ki length = text ka 50% */
  height: 2px;
  background: #595959;
}

#gallery .owl-carousel .item {
      background: #4CAF50;
      color: #fff;
      text-align: center;
      border-radius: 10px;
      margin: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    /* Slide container for 2x2 layout */
#gallery .slide-grid {

    }

#gallery .slide-grid .item {
      
    }
#gallery .owl-nav button {
      background: #333;
      color: #fff !important;
      padding: 5px 15px;
      border-radius: 5px;
      margin: 5px;
    }


 #gal .amenity-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 180px;
    cursor: pointer;
    width: 100%;
  }

  #gal .amenity-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  #gal .amenity-box:hover img {
    transform: scale(1.1);
  }

  #gal .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient color */
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    pointer-events: none; /* So hover still works on image */
  }

  #gal .top-right-text, .bottom-left-text {
    position: absolute;
    color: #fff;
    font-weight:500;
    padding: 10px;
    z-index: 2;
    background: rgba(0, 0, 0, .4);
    font-size: 15px;
    border-radius: 4px;
  }

  #gal .top-right-text {
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 200;
  }

  #gal .bottom-left-text {
    bottom: 10px;
    left: 10px;
  }  





#location{margin: 20px 20px;border-radius: 5px;border: 1px solid #dddcdc;padding:50px 20px;background: #f9f9f9;}
#location h4 {
   font-size: 20px;
  color: #595959;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#location h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;   /* line ki length = text ka 50% */
  height: 2px;
  background: #595959;
}
#location .mpl_sec{position: relative;}
#location .mpl_sec iframe{border: 1px solid #000;border-radius:8px;}
#location .mpl_sec .txt{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);padding: 15px;color: #fff;
  background: rgba(0, 0, 0, .7);z-index: 99;border-radius: 5px;}


#location .upl_sec{position: relative;}
#location .upl_sec a{display: block;}
#location .upl_sec a img{border: 1px solid #000;filter: blur(2px);width: 100%;height: 100%;object-fit: cover;object-position: center;border-radius: 8px;}
#location .upl_sec .txt{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);padding: 15px;color: #fff;
  background: rgba(0, 0, 0, .7);z-index: 99;border-radius: 5px;} 





footer{text-align: center;}
footer .logo{}
footer .logo img{min-width:270px;}
footer .logo p{font-size: 14px;color: #595959;margin-bottom: 5px;font-weight: 400;}
footer .logo p+p{margin-bottom: 30px;}
footer .disclaimer{padding: 0px 10px 20px;}
footer .disclaimer{font-size: 10px;color: #595959;margin-bottom: 5px;font-weight: 400;}
footer .disclaimer a{color: #063bfc;text-decoration: none;}
footer .copyright p{font-size: 12px;color: #595959;margin:0px;font-weight: 400;text-align: left;}
footer .copyright_links{text-align: right;}
footer .copyright_links ul{margin: 0;padding: 0}
footer .copyright_links ul li{display: inline-block;padding: 0px 8px;}
footer .copyright_links ul li p{margin: 0px;color: #595959;font-size: 12px;}
footer .copyright_links ul li a{font-size: 12px;color: #063bfc;text-decoration: none;}



  /* Simple scroll line */
  #scrollLine {
    position: fixed;
    bottom: 0;
    left: 0;
    top: 0;
    height: 4px;
    width: 0%;
    background: #ff4d4d; /* simple solid color */
    transition: width 0.1s;
    z-index: 999999;
  }

  /* Back to top button */
  #backToTop {
    position: fixed;
    bottom:5px;
    right:5px;
    background: #595959;
    color: #fff;
    width:40px;
    height:40px;
    border-radius:3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1001;
  }

  #backToTop.show {
    opacity: 1;
    visibility: visible;
  }


  /*model box*/
#enquiryModal{}
.custom-modal-width{max-width: 650px;}
#enquiryModal .modal-content {
      border-radius: 12px;
      padding: 0px;
    }
#enquiryModal .promise-box {
      background: #e9e9e9;
      border-radius: 8px;
      padding: 20px;
      border:1px solid #cccccb;
    }

#enquiryModal .promise-box .bi{border: 1px solid #000;
    width: 25px;
    height: 25px;
    text-align: center;
    vertical-align: middle;
    border-radius: 25px;
    line-height: 26px;}

#enquiryModal h4 {
   font-size: 20px;
  color: #595959;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#enquiryModal h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;   /* line ki length = text ka 50% */
  height: 2px;
  background: #595959;
}  
#enquiryModal .promise-box h6 {
  font-size: 14px;
  color: #fff;
  padding: 10px;
  text-align: center;
  background: #595959;
  position: relative;
  display: block;
  border-radius: 5px;
}

#enquiryModal .promise-item {
  margin: 15px 0;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #595959;

}

#enquiryModal .promise-item .text-wrap {
  display: flex;
  flex-direction: column; /* small ko niche left me align karega */
  line-height: 1.2;
}

#enquiryModal .promise-item small {
  font-size: 13px;
  font-weight: normal;
}

#enquiryModal .btn-submit {
      background: #246b4f;
      color: #fff;
      padding: 10px 35px;
      border-radius: 25px;
      border: none;
      transition: 0.3s;
    }
#enquiryModal .btn-submit:hover {
      background: #1b523d;
    }
#enquiryModal .info-box {
      border: 1px solid #cccccb;
      border-radius: 10px;
      background: #e9e9e9;
      position: relative;
      padding: 40px 12px 12px;
      margin-top: 20px;
      text-align: center;
    }
#enquiryModal .info-box .info-box_box{position: absolute;top: 0px;background: #595959;padding: 5px 10px;
  color: #fff;left: 50%;transform: translateX(-50%);border-radius: 0px 0px 8px 8px;}
#enquiryModal .info-box span {
      margin: 0 20px;
      color: #595959;
      font-size: 16px;
      font-weight: 600;
    }
#enquiryModal .info-box span i {
      margin-right: 5px;
    }



#enquiryModal  .form-group {
    margin-bottom: 5px;
  }

  #enquiryModal  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
    text-align: left;
    font-size:9px;
    font-weight: 400;
    text-align: justify;
  }
  #enquiryModal  .s_btn{text-align: left;margin-top: 10px;}
  #enquiryModal  select, #enquiryModal  input[type="text"], #enquiryModal  input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: none;              
    border-bottom: 1px solid #595959; 
    outline: none;  
    font-size: 14px;
    transition: border-color 0.3s;
  }
  #enquiryModal  input[type="checkbox"]{vertical-align: middle;}
  #enquiryModal  select:focus, input[type="text"]:focus, #enquiryModal  input[type="tel"]:focus {
    border-color: #007bff;
    outline: none;
  }

#enquiryModal  button.blink {
  animation: 1.5s linear infinite blink-danger;
}
  #enquiryModal  .blink {
    display: inline-block;
  background: #bd770e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  }

 #enquiryModal  .submit-btn:hover {
    background: #0056b3;
  }

  #enquiryModal  .error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
  }

  #enquiryModal  .success {
    color: green;
    font-size: 12px;
    text-align: center;

  }



#privacy{margin: 20px 20px;border-radius: 5px;border: 1px solid #dddcdc;padding: 50px 20px;background: #f9f9f9;}
#privacy hr {
    margin: 5px 0px 20px;
    color: inherit;
    border: 0;
    border-top: 1px solid #525252;
    opacity: .25;
}
#privacy h1,
#privacy h2,
#privacy h3,
#privacy h4,
#privacy h5,
#privacy h6{
   font-size: 20px;
  color: #595959;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#privacy h1::after,
#privacy h2::after,
#privacy h3::after,
#privacy h4::after,
#privacy h5::after,
#privacy h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;   /* line ki length = text ka 50% */
  height: 2px;
  background: #595959;
}
#privacy p, #privacy address{font-size: 14px;color: #595959;text-align: justify;}
#privacy{font-size: 14px;color: #000;font-weight: 500}

#privacy ul{}
#privacy ul li{color:#595959;font-size: 14px;}



#faq{margin: 20px 20px;border-radius: 5px;border: 1px solid #dddcdc;padding:50px 20px;background: #f9f9f9;}
#faq h5 {
   font-size: 20px;
  color: #595959;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#faq h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;   /* line ki length = text ka 50% */
  height: 2px;
  background: #595959;
}
.faq-section {
      padding: 60px 0;
    }
    .faq-title {
      text-align: center;
      margin-bottom: 40px;
    }
    .accordion-body{font-size:14px;line-height: 1.9;}
    .accordion-button {
      background: #fff;
      border: none;
      box-shadow: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .accordion-button:not(.collapsed) {
     color: #bd770e;
    background-color: #f4f4f4;
    }
    .accordion-item {
      border: none;
      margin-bottom: 10px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    }