/* starting amenities section */
     .amenities-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom:10px;
        }

        .amenity {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 20px;
            transition: transform 0.3s ease;
        }

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

        .amenity img {
            max-width: 50px;
            margin-bottom: 15px;
        }

        .amenity h3 {
            font-size: 18px;
            margin: 0;
            color: #333;
        }

        @media (max-width: 600px) {
            .amenities-container {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
        }

        @media (max-width: 400px) {
            .amenities-container {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
        }

/* end amenities section */

/* starting gallery section */

        /* Add smooth transition effect to image zoom */
.hover-img-zoom img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: auto;
}

/* Zoom effect on hover */
.hover-img-zoom:hover img {
  transform: scale(1.1);
}

/* Ensure all images fill their containers */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Customize the gallery responsiveness */
@media (max-width: 575.98px) {
  .row-cols-2 > .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .row-cols-md-2 > .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .row-cols-lg-3 > .col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/* Additional padding for the gallery images */
.g-4 > .col {
  padding: 7px;
}

/* Container adjustments */
.container {
  padding: 0 15px;
}

/* Add a subtle shadow for the images */
.hover-img-zoom img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

/* end gallery section */


/* banner section css */
     /* General styles for the banner */
     .banner {
      position: relative;
      width: 100%;
      overflow: hidden;
  }
  
  /* Desktop Banner */
  .desktop-banner {
      display: block;
      width: 100%;
      height: auto;
  }
  
  /* Mobile Banner */
  .mobile-banner {
      display: none;
      width: 100%;
      height: auto;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
      /*.desktop-banner {*/
      /*    display: none;*/
      /*}*/
  
      .mobile-banner {
          display: block;
      }
  }
  
  /* Optional: For larger screens */
  @media (min-width: 1200px) {
      .banner {
          height: 696px;
      }
  }
      .desktop-banner, .mobile-banner {
          object-fit: cover; /* Ensures images fit within the banner */
      }
  }



  /* end banner section */


  /* .card-container {
    display: flex;
    gap: 20px;
  }

  .card {
    background-color: #720c86;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .card h1 {
    font-size: 36px;
    margin: 10px 0;
  }

  .card p {
    margin: 5px 0;
    font-size: 16px;
  } */

  .button {
    background-color: white;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
  }

  .button:hover {
    background-color: #d1d1d1;
  }



  /* Main Container */
.about-bhk {
  padding: 20px;
  background-color: var(--white);
}

/* Grid Layout */
.about-bhk-grid {

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  display: flex;
    gap: 20px;
}

/* Card Style */
.about-bhk-grid-item {
  background-color: #8a2b56; /* Matches the color in the image */
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-bhk-grid-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Heading Style */
.about-bhk-grid-item h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Text Style */
.about-bhk-grid-item p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 400;
}

/* Button Style */
.about-bhk-grid-item button {
  background-color: #ffcc00; /* Matches the yellow button color */
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-bhk-grid-item button:hover {
  background-color: #e6b800;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-bhk {
      padding: 15px;
  }

  .about-bhk-grid-item {
      padding: 20px 15px;
  }

  .about-bhk-grid-item h4 {
      font-size: 1.8rem;
  }

  .about-bhk-grid-item p {
      font-size: 1rem;
  }

  .about-bhk-grid-item button {
      padding: 8px 15px;
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-bhk-grid-item {
      padding: 15px;
  }

  .about-bhk-grid-item h4 {
      font-size: 1.5rem;
  }

  .about-bhk-grid-item p {
      font-size: 0.9rem;
  }

  .about-bhk-grid-item button {
      padding: 7px 12px;
      font-size: 0.8rem;
  }
}




/* Start Section Grid */
.main-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  margin-top: 30px;
}

.scrolling-grid {
  max-width: 100%;
  width: 100%;
}

.sticky-grid {
  max-width: 100%;
  width: 100%;
}

/* Start Sticky Form */
.submit-form-container {
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 20px;
  width: 100%;
}

.submit-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}

.submit-form input {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--primary-color);
  padding: 10px 5px;
  font-size: 18px;
  font-family: 'Barlow';
}

.submit-form button {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 10px 5px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  font-family: 'Barlow';
}

.submit-form button:hover {
  background-color: var(--secound-color);
}

.submit-form-title h4,
.submit-form-title h1 {
  font-size: 18px;
}

.submit-form-title a {
  color: var(--black);
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

/* End Sticky Form */
/* Start Scrolling section */
.intro-section {
  width: 100%;
  padding: 40px 30px;
  background-color: var(--white);
  border: 1px solid #dee2e6;
}

.intro-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 30px;
}

.intro-title-part-one h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
}

.intro-title-part-one span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}

.intro-title-btn {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: row;
}

.intro-title-btn-text {
  border: none;
  background-color: var(--primary-color);
  border-radius: 5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 40px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 12px;
}

.intro-title-btn-text:hover {
  background-color: var(--secound-color);
}

.intro-title-btn-icon {
  background-color: var(--primary-color);
     padding: 5px 15px 11px 14px;
  border-radius: 100px;
  border: none;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
}

.intro-section-content {
  padding-top: 30px;
  color: var(--black);
}

.intro-section-content h4 {
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 18px;
  margin-bottom: 1rem;
}

.intro-section-content p {
  font-size: 12px;
  letter-spacing: 0.3px;
  line-height: 20px;
}

.highlights-section {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 40px;
  margin-top: 40px;
}

.highlights-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: 500;
  font-size: 12px;
}

.highlights-section i {
  background-color: var(--background-color);
  padding: 5px;
  border-radius: 100px;
  color: var(--primary-color);
}

.about-bhk {
  background-color: var(--white);
  border: 1px solid #dee2e6;
  padding: 40px 30px;
  margin-top: 30px;
}

.about-bhk-grid {
  display: flex;
  align-items: flex-start;

}

.about-bhk-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-bhk-grid-item {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  width: 100%;
}

.about-bhk-grid-item h4 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-bhk-grid-item p {
  font-size: 20px;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.about-bhk-grid-item button {
  background-color: var(--secound-color);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
}

.about-bhk-grid-item button:hover {
  background-color: var(--white);
  color: var(--black);
}

/* Start Contact */
#contact {
  margin-top: 30px;
}

#contact .submit-form-container {
  padding: 40px 30px;
}

/* Start Amenities */
#amenities {
  margin-top: 30px;
  padding: 40px 30px;
}

.amenities-title {
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 16px;
  text-align: center;
}

.amenities-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
}

.amenities-item {
  width: 45%;
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.amenities-item img {
  width: 50px;
}

.amenities-item p {
  font-size: 12px;
  color: var(--black);
}

/* Start Gallery */
#gallery {
  margin-top: 30px;
  padding: 40px 30px;
  background-color: var(--white);
  border: 1px solid #dee2e6;
}

.gallery-title h4 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.gallery-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
}

.gallery-item {
  height: 0;
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  transition: all 0.3s;
  cursor: pointer;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Start Near By */
#near-by {
  margin-top: 30px;
  padding: 40px 30px;
  border: 1px solid #dee2e6;
  background-color: var(--white);
}

.near-by-title h4 {
  font-size: 16px;
}

#near-by ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
  list-style: none;
  font-size: 12px;
}

#near-by i {
  background-color: var(--background-color);
  padding: 5px;
  border-radius: 100px;
  color: var(--primary-color);
}

/* End Scrolling section */

/* End Section Grid */

/* Start Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  margin-top: 30px;
  text-align: justify;
  padding-top: 50px;
  padding-bottom: 30px;
  font-weight: 100;
  line-height: 25px;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.rara-details {
  
  margin-top: -1rem;
  font-family: 'Sen';
  font-size: 14px;
  text-align: left;
}

.policy {
  display: flex;
  flex-direction: row;
  gap: 7px;
  justify-content: center;
  margin-top: 20px;
  font-size: 10px;
  font-family: 'Sen';
}

/* End Footer */

/* Strat Policy */
.policy-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-box {
  color: var(--black);
  padding: 40px 30px;
  background-color: var(--white);
  border: 1px solid #dee2e6;
}

.policy-box h1,
.policy-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.policy-box p {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 15px;
}

/* End Policy */
/* Start FAQ Section */
#faq {
  margin-top: 30px;
}

.faq-title h4 {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

.accordion-header {
  background-color: #f4f4f4;
  color: #333;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: #ddd;
}

.accordion-content {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: var(--black);
}

.accordion-content p {
  padding: 18px 0;
  font-size: 12px;
}

.about-developer-section {
  /* border: 1px solid #dee2e6; */
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
  /* background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.about-developer-title h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.about-developer-content p {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}

/* End FAQ Section */
/* Strat Location Section */
#location {
  padding: 40px 30px;
  background-color: var(--white);
  border: 1px solid #dee2e6;
  margin-top: 30px;
}

.location-title h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.location-info p {
  font-size: 18px;
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #555;
}

.location-info i {
  color: #e74c3c;
  font-size: 20px;
}

.location-map img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nearby-places,
.investment-reasons {
  padding: 15px;
}

.nearby-places h5,
.investment-reasons h5 {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.nearby-places ul,
.investment-reasons ul {
  list-style-type: none;
  padding-left: 0;
}

.nearby-places li,
.investment-reasons li {
  margin-bottom: 8px;
  font-size: 10px;
  color: #555;
}

.investment-reasons li {
  position: relative;
  padding-left: 20px;
}

.investment-reasons li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secound-color);
}

@media (min-width: 768px) {
  .location-content {
      flex-direction: row;
      flex-wrap: wrap;
  }

  .location-info,
  .location-map {
      flex-basis: 100%;
  }

  .nearby-places,
  .investment-reasons {
      flex-basis: calc(50% - 10px);
  }
}

/* End Location section */
/* Start Floor Plan */
#floor-plan {
  padding: 40px 30px;
  background-color: var(--white);
  border: 1px solid #dee2e6;
  margin-top: 30px;
}

.floor-plan-title h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.floor-plan-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 10px;
}

.floor-plan-item {
  flex-basis: calc(33.333% - 10px);
  text-align: center;
  border-radius: 8px;
}

.floor-plan-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.floor-plan-item img:hover {
  transform: scale(1.05);
}

.floor-plan-item h5 {
  font-size: 14px;
  color: #333;
  text-align: left;
  margin-bottom: 10px;
}

.floor-plan-item ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.floor-plan-item li {
  font-size: 12px;
  color: #555;
  margin-bottom: 5px;
}

.get-price-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
}

.get-price-btn:hover {
  background-color: var(--secound-color);
}

@media (max-width: 768px) {
  .floor-plan-item {
      flex-basis: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .floor-plan-item {
      flex-basis: 100%;
  }
}

/* End Floor plan */

/* Start Custom CSS */



.call {
  width: 40px;
  position: fixed;
  bottom: 10px;
  left: 7px;
}

.whatsapp {
  width: 40px;
  position: fixed;
  bottom: 10px;
  right: 7px;
}

.whatsapp img,
.call img {
  width: 100%;
}

#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 450px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee2e6;
  padding: 40px 30px;
  width: 85%;
  z-index: 2;
  display: none;
}

.closepopup {
    background-color: var(--black);
  color: var(--white);
  position: absolute;
  top: -13px;
  right: -18px;
  font-size: 21px;
  padding: 1px 9px 6px 10px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: 'Barlow';
}

.popup-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}

.popup-container h4 {
  font-size: 24px;
  text-align: center;
}

.popup-container input {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--primary-color);
  padding: 10px 5px;
  font-size: 18px;
  font-family: 'Barlow';
}

.popup-container button {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 10px 5px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  font-family: 'Barlow';
}

.main-thank {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 53vh;
  text-align: center;
  padding: 10px 30px;
}

.newCheck {
  border: 3px solid rgb(0, 255, 0);
  border-radius: 1000px;
  padding: 5px 7px;
  color: rgb(0, 255, 0);
  font-size: 30px;
  font-weight: 800;
}

.main-thank h1 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
}

.main-thank p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* End Custom CSS */
/* Start Slider CSS */
.rera-slider-container {
  width: 100%;
  overflow: hidden;
}

.rera-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.rera-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

/* End Slider CSS */

@media (min-width: 992px) {
  .nevigetion a {
      color: #000000!important;
  }
}





.highlights-section {
          padding: 40px;
          text-align: center;
      }

      h2 {
          font-size: 36px;
          font-weight: bold;
          color: white;
          margin-bottom: 20px;
          position: relative;
      }

      h2::before,
      h2::after {
          content: "";
          /* position: absolute; */
          top: 50%;
          width: 100px;
          height: 2px;
          background-color: white;
      }

      /* h2::before {
          left: 0;
          margin-left: -110px;
      } */

      /* h2::after {
          right: 0;
          margin-right: -110px;
      } */

      .highlights-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 20px;
          margin-top: 20px;
      }

      .highlight-box {
          background-color:#006944;
          color: white;
          padding: 20px;
          font-size: 14px;
          font-weight: bold;
          border-radius: 5px;
          text-align: center;
          font-family: 'Barlow';
      }

      .highlight-box i {
          margin-right: 10px;
      }





      .at-property-img .at-property-overlayer {
  position: absolute;
  bottom: -100%;
  z-index: 111;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  transition: .5s ease-in-out;
}




      section#location {
          padding: 40px;
          text-align: center;
      }

      .location-title h4 {
          font-size: 28px;
          margin-bottom: 20px;
      }

      .location-content {
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
      }

      .location-info {
          display: flex;
          align-items: center;
          margin-bottom: 20px;
          font-size: 18px;
      }

      .location-info i {
          font-size: 24px;
          margin-right: 10px;
      }

      /* Map Styling */
      .location-map {
          position: relative;
          width: 100%;
          max-width: 623px;
          height: auto;
      }

      .location-map img {
          width: 100%;
          height: auto;
          border-radius: 8px;
          transition: opacity 0.5s ease, transform 0.5s ease;
      }

      .location-map img:hover {
          opacity: 0.8;
          transform: scale(1.05);
      }

      /* Overlay Styling */
      .location-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.4);
          display: flex;
          justify-content: center;
          align-items: center;
          opacity: 0;
          transition: opacity 0.5s ease;
          border-radius: 8px;
      }

      .location-map:hover .location-overlay {
          opacity: 1;
      }

      /* Button Styling */
      .location-overlay .btn {
          background-color: #006944;
          color: white;
          border: none;
          padding: 12px 24px;
          border-radius: 5px;
          font-size: 18px;
          cursor: pointer;
          transition: background-color 0.3s ease;
      }

      .location-overlay .btn:hover {
          background-color: #fecc00;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
          .location-title h4 {
              font-size: 24px;
          }

          .location-info {
              font-size: 16px;
          }

          .location-map {
              width: 100%;
              max-width: 100%;
          }

          .location-overlay .btn {
              font-size: 16px;
              padding: 10px 20px;
          }
      }

      @media (max-width: 480px) {
          section#location {
              padding: 20px;
          }

          .location-title h4 {
              font-size: 20px;
          }

          .location-info {
              font-size: 14px;
          }

          .location-overlay .btn {
              font-size: 14px;
              padding: 8px 16px;
          }
      }

         .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 20px;
      }

      .title {
          font-size: 24px;
          font-weight: bold;
      }

      .account-details {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          margin-top: 20px;
      }

      .account-section {
          width: 48%;
          margin-bottom: 30px;
      }

      .account-section h3 {
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 10px;
      }

      .account-section p {
          margin: 5px 0;
      }

      .rera-info {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          margin-top: 30px;
      }

      .rera-item {
          text-align: center;
          width: 30%;
      }

      .rera-item img {
          width: 100%;
          max-width: 150px;
          height: auto;
      }

      .rera-item p {
          font-size: 14px;
          font-weight: 500;
          margin-top: 1rem;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
          .account-section {
              width: 100%;
          }

          .rera-item {
              width: 45%;
              margin-bottom: 20px;
          }
      }

      @media (max-width: 480px) {
          .container {
              padding: 10px;
          }

          .title {
              font-size: 20px;
          }

          .account-section h3 {
              font-size: 16px;
          }

          .rera-item {
              width: 100%;
          }

          .rera-item img {
              max-width: 120px;
          }

          .rera-item p {
              font-size: 12px;
          }
      }


      @media (min-width: 1400px) {
  .container {
      max-width: 1500px!important;
  }
}


       .blink {
          animation: blinker 5s linear infinite;
          color: white;
          font-size: 20px;
          font-weight: bold;
      }

      @keyframes blinker {
          50% {
              opacity: 0;
          }
      }


      .blink-button {
          padding: 10px 20px;
          
          color: white;
          border: none;
          font-size: 18px;
          cursor: pointer;
          animation: blink-button-animation 1.5s linear infinite;
      }

      @keyframes blink-button-animation {
          50% {
              opacity: 0;
          }
      
          }



/* Add smooth transition effect to image zoom */
.hover-img-zoom img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: auto;
}

/* Zoom effect on hover */
.hover-img-zoom:hover img {
  transform: scale(1.1);
}

/* Ensure all images fill their containers */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Customize the gallery responsiveness */
@media (max-width: 575.98px) {
  .row-cols-2 > .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .row-cols-md-2 > .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .row-cols-lg-3 > .col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/* Additional padding for the gallery images */
.g-4 > .col {
  padding: 7px;
}

/* Container adjustments */
.container {
  padding: 0 15px;
}

/* Add a subtle shadow for the images */
.hover-img-zoom img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}




/* styles.css */


.project-card {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 27px;
}

.project-card h2 {
  margin-top: 0;
  color: #000;
}

.info p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  text-align: left;
}

.info span {
  font-weight: bold;
  margin-right: 10px;
}

.qr-code {
  margin: 20px 0;
}

.qr-code img {
  max-width: 150px;
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
}

.rera-link a {
  color: #0066cc;
  text-decoration: none;
  font-size: 14px;
  word-break: break-word;
}

.rera-link a:hover {
  text-decoration: underline;
}




* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
} */

.card {
  flex: 1 1 calc(33.333% - 40px);
  max-width: 384px;
  padding: 29px;
  border-radius: 0px 20px 1px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: white;
  margin: 10px;
}

.card h2 {
  margin: 0;
  padding: 10px 0;
  font-size: 6rem;
  color: black;
}

.card p {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.card button {
  padding: 12px 31px;
  border: none;
  border-radius: 5px;
  background-color: #c42828;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.card:nth-child(1),
.card:nth-child(2) {
  background-color: #c79e34;
}

.card:nth-child(3) {
  background-color: #c79e34;
}

.card button:hover {
  background-color: #0056a3;
}

@media (max-width: 768px) {
  .card {
      flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 480px) {
  .card {
      flex: 1 1 100%;
  }
}





/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section {
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.place-card {
  background: #c79e34;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px white solid;
  border-style: dashed;
}

.place-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.place-card .icon {
  font-size: 3em;
  margin-bottom: 10px;
  color: #007bff;
}

.place-card .name {
  font-size: 16px;
  color: #ffffff;
  margin-top: -1px;
}
