html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.container {
  max-width: 960px;
}

.content-header {
  max-width: 700px;
}

.card-deck .card {
  min-width: 220px;
}

.border-top {
  border-top: 1px solid #e5e5e5;
}

.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.front-end-nav {
  margin-left: auto;
  margin-right: 0;
}

.sign-up-btn {
  color: #007bff !important;
  background-color: transparent !important;
  background-image: none;
  border-color: #007bff !important;
}

.sign-up-btn:hover {
  color: #fff !important;
  background-color: #007bff !important;
  border-color: #007bff !important;
}

.app-name {
  font-weight: 400 !important;
  color: black !important;
}

/* faq*/
.question-container {
  display: grid;
  background-color: #0c465d;
  max-width: 100%;
  min-height: 52px;
  align-items: center;
}

.question {
  color: white !important;
}

.otp-card {
  width: 50%;
  margin-left: 26%;
  border: 1px solid lightgrey;
}

.otp-card2 {
  width: 55%;
  margin-left: 23%;
  border: 1px solid lightgrey;
}

.otp-field {
  flex-direction: row;
  column-gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-field input {
  height: 45px;
  width: 45px;
  border-radius: 6px;
  outline: none;
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid #ddd;
}

.otp-field input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button {
  display: none;
}

.form-tc {
  margin-top: 15px !important;
}

.form-tc p {
  color: #000;
  text-align: center;
}

.form-tc a {
  color: darkblue;
  font-weight: 500;
  cursor: pointer;
}

/* Style all font awesome icons */
.fa {
  padding: 8px;
  font-size: 20px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Twitter */
.fa-google {
  background: #f5323b;
  color: white;
}

/* start payment history scroller css */
.paymentHistory {
  max-height: 350px;
  overflow-y: scroll;
  padding-right: 5px;

}

.paymentHistory_icon {
  padding-right: 10px;
}

.commonBox_body {
  background: #fbfbfb;
}

/* end payment history scroller css */
.body-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/** Interior website design  */
.custom-pill-btn {
  border-radius: 50px;
  padding: 10px 28px;
  margin-right: 20px;
  transition: all 0.3s ease;
  background-color: #222;
  border: none;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.custom-pill-btn:hover {
  background-color: #444;
  color: white !important;
  /* subtle zoom */
  text-decoration: none;
}

/* Hero Section Start */

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 2), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  z-index: 1;
  pointer-events: none;
  /* Allows clicks to pass through to content */
}


.hero {
  position: relative;
  background: url('/assets/images/frontend/banner.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: white;
  height: 600px;
}

.hero-content {
  margin: auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1150px;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
  top: -40px;
  max-height: 465px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  max-width: 85%;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.hero-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.hero-form {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 424px;
  box-sizing: border-box;
}


.hero-form form {
  display: flex;
  flex-direction: column;
}

.hero-form label {
  margin-top: 10px;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.hero-form input[type="text"],
.hero-form input[type="tel"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
}

.hero-form .checkbox {
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
}

.hero-form .checkbox input {
  margin-right: 8px;
}

.hero-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-form button:hover {
  background-color: #444;
}

@media (max-width: 768px) {
  .hero-content {
    align-items: center;
    padding: 0 15px;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-form {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    /* remove fixed max-width for mobile */
    padding: 20px;
  }

  .form-group {
    width: 100%;
  }

  .row {
    flex-direction: column;
  }

  .row .col-md-4,
  .row .col-md-8 {
    width: 100%;
  }

  .row .col-md-4 select,
  .row .col-md-8 input {
    width: 100%;
  }
}


/* Hero Section End */

/* Stats section start  */

.stats-section {
  background-color: #5BA585;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
}

.stat-label {
  margin-top: 10px;
}

/* Stats section end  */

/* Image carousel start  */
.carousel-section {
  padding: 60px 30px;
  background-color: #f9f9f9;
}

.carousel-section .content-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-quote {
  background-color: #5BA585;
  color: white;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
}

.btn-quote:hover {
  background-color: #4d8b70;
}

.carousel-inner .carousel-item {
  display: flex;
  gap: 20px;
}

.carousel-inner .carousel-item img {
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.carousel-image {
  height: 400px;
  width: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.carousel-image:hover {
  transition: 0.5s ease;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slick-track {
  margin: 20px !important;
}

.home-slick-carousel {
  display: flex;
}

.carousel-box {
  position: relative;
  margin-right: 20px;
  flex: 1;
}

.price-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #41303E;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  font-size: 24px;
  color: #333;
}

.carousel-control-prev-icon::before {
  content: '\f104';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.carousel-control-next-icon::before {
  content: '\f105';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

@media (max-width: 767px) {
  .carousel-inner .carousel-item {
    flex-direction: column;
  }

  .carousel-box {
    flex: unset;
  }
}

.slick-prev,
.slick-next {
  background: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 5;
}

.slick-prev i,
.slick-next i {
  font-size: 18px;
  color: #333;
}

/* Image carousel end  */

/* Offer carousel start  */

.offer-section {
  background-color: #f6f6f6;
  padding: 40px 0;
}

.offer-carousel {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background-color: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  height: 461px !important;
  max-height: 500px !important;
  flex: 1 1 300px;
  max-width: 350px;
  min-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.offer-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.offer-card ul li {
  list-style-type: disc;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #555;
}

/* Offer carousel end  */

/* Partners Carousel Start  */

.partners-section {
  background-color: #ffffff;
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.partners-section p {
  font-size: 1rem;
  color: #6c757d;
}

.partner-card {
  padding: 10px;
  margin: 8px 24px !important;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #6c757d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.partner-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.partner-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* Partners Carousel End  */

/* Estimate Section Start  */

.estimate-section {
  background-color: #f9f9f9;
}

.estimate-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: center;
}

.estimate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.estimate-card .card-top {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.estimate-card .card-top img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.estimate-card h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.estimate-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.estimate-btn {
  display: inline-block;
  background-color: #5BA585;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.estimate-btn i {
  margin-left: 8px;
}

.estimate-btn:hover {
  background-color: #4d8b70;
}

/* Estimate Section End  */

/* How it works section Start  */

.how-it-works {
  background-color: #f4f7f5;
}

.steps-wrapper {
  position: relative;
  padding: 40px 0;
  gap: 12px;
}

.step {
  flex: 1;
  min-width: 100px;
  max-width: 150px;
  text-align: center;
  position: relative;
}

.circle {
  width: 110px;
  height: 110px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.circle img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

/* Dotted Line Connector */
.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  height: 2px;
  border-top: 1px dashed #000;
  z-index: 1;
}

@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .steps-wrapper::before {
    display: none;
  }

  .step {
    margin-bottom: 30px;
  }
}

/* How it works section Start  */

/* Download guide section Start  */

.guide-box {
  background-color: #f9e8bd;
  border: 2px solid #fce195;
  border-radius: 20px;
  padding: 40px;
  max-width: 960px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  flex-direction: row;
}

.guide-img,
.guide-content {
  width: 50%;
}

.guide-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.guide-content h2 {
  font-size: 1.8rem;
  color: #333;
}

.guide-content p {
  font-size: 1rem;
  color: #555;
}

/* ✅ Responsive for mobile */
@media (max-width: 768px) {
  .guide-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .guide-img,
  .guide-content {
    width: 100%;
  }

  .guide-content {
    margin-top: 20px;
  }

  .guide-content h2 {
    font-size: 1.5rem;
  }

  .guide-content p {
    font-size: 1rem;
  }
}

/* Download guide section End  */

/* Testimonial Section */
.testimonial-section {
  background-color: #f9f9f9;
}

.video-thumbnail {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #000;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.modal-content {
  background: none;
  border: none;
}

.ratio {
  border-radius: 12px;
  overflow: hidden;
}

/* Connect Section */
.connect-section {
  background-color: #f4f7f5;
  padding: 5rem 2rem;
}

.connect-btn {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.call-btn {
  background-color: #5ba585;
}

.call-btn:hover {
  background-color: #4d8b70;
  color: #fff;
}

.whatsapp-btn {
  background-color: #25d366;
}

.whatsapp-btn:hover {
  background-color: #1ebc59;
  color: #fff;
}

/* FAQ Section Start  */

.faq-section {
  background-color: #ffffff;
}

.simple-faq .accordion-button {
  background-color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ddd;
  transition: background-color 0.2s ease;
}

.simple-faq .accordion-button:focus {
  box-shadow: none;
}

.simple-faq .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #000;
  border-bottom: none;
}

.simple-faq .accordion-body {
  padding: 16px 20px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  font-size: 0.95rem;
  color: #444;
}

/* Why choose us section start  */

.why-choose-us {
  padding: 20px;
  text-align: center;
  background-color: #e0f4e1;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-box {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 250px;
  height: 290px !important;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.feature-box p {
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 90%;
  }
}

/* Why choose use section end  */

/* FAQ Section End  */

.footer-section {
  background-color: #41303E;
  color: #fff;
  position: relative;
  bottom: 0;
}

.bhk-badge {
  top: -39px;
  position: relative;
  bottom: 15px;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.partner-card.slick-slide {
  max-height: 80px !important;
}


/* NEW FOOTER SECTION START  */

.site-footer {
  background-color: #222;
  color: #f1f1f1;
  padding: 60px 20px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: #fffafc;
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-about p,
.footer-contact p {
  color: #bbb;
  line-height: 1.6;
}

.footer-contact i,
.footer-social i {
  margin-right: 8px;
  color: #fffafc;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
  text-decoration: none;
  color: #ddd;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fffafc;
  transform: scale(1.05);
  /* Zoom effect */
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  color: #888;
  font-size: 14px;
}

/* NEW FOOTER SECTION END   */

/* WHATSAPP STICKY START */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
}

@media (max-width: 600px) {
  .whatsapp-icon {
    width: 35px;
    height: 35px;
  }
}

/* WHATSAPP STICKY END  */

#header-heading {
  color: rgb(255, 255, 255);
  font-weight: 900 !important;
}

#header-subheading {
  display: block;
  color: rgb(254, 204, 42);
  font-weight: 900 !important;
}

.text-danger {
  position: relative !important;
  top: -19px !important;
}

#phone_code-error {
  display: none !important;
}

#contact-number-modal-error {
  top: -2px !important;
}

/* About Us Youtube Video Section Start */
.guarantee-testimonial-section {
  background-color: #ffffff;
}

.video-thumbnail-sm {
  position: relative;
  display: inline-block;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  width: 90%;
  /* Slightly smaller than the regular thumbnail */
  max-width: 420px;
}

.play-btn-sm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #000;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.play-btn-sm:hover {
  background-color: #eaeaea;
}

/* About Us Youtube Video Section End */

/* Total scrollbar area */
::-webkit-scrollbar {
  width: 6px !important;
  height: 12px !important;
}

/* Scrollbar Track (background) */
::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
  border-radius: 6px !important;
}

/* Scrollbar Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #444 !important;
}

/* Scrollbar Thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555 !important;
}