/* ========== Sections ========== */
.site-section {
  padding: 2rem 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow: hidden;
 
}

.site-section:nth-of-type(odd) {
  background-color: var(--color-bg-alt);
}


@media (max-width: 768px) {
  .site-section {
    padding: 2rem 0;
  }
}

/* ====heading=== */
.advantages-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 0.65rem;
}

.advantages-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: black;
  
}

@media (max-width: 768px) {
  .advantages-heading {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.5rem;
  }
}

/* ========== Navbar ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 10px 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  box-sizing: border-box;
}

.navbar-nav .nav-link {
  font-size: 1.3rem;
  font-weight: 400;
  color: #333;
  margin: 0 2px;
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.nav-link.active {
  border: 3px solid #007bff;
  color: #007bff;
  border-radius: 5px;
}


.custom-logo {
  width: 180px;
}

.download-gif{
    height:50px;
    width:50px;
}

.brochure-button {
  /*background-color: #f8f9fa; */
  
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.brochure-button span{
    /*color:white;*/
    size:16px;
}


/*.brochure-button:hover {*/
/*  background-color: #e2e6ea;*/
/*}*/

.brochure-button .download-gif {
  width: 40px;
  height: 40px;
}


@media (max-width: 576px) {
    .navbar{
        padding:10px 0px;
    }
  /*.custom-logo {*/
  /*  width: 80px;*/
  /*}*/

  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}

@media (max-width: 1024px) {
      .navbar{
        padding:10px 0px;
    }

  /* .custom-logo {*/
  /*  width: 120px;*/
  /*}*/
  .navbar-nav .nav-link {
    font-size: 1rem;
  }
}


.banner-img {
  height: 65vh;
  object-fit: cover;
}

/*@media (max-width: 576px) {*/
/*    .banner-img {*/
/*  height: 45vh;*/
/*}*/



/* Info Bar Styling */
.info-bar {
 background-color: #ccdff3;
  padding: 20px 0;
  color: white;
}

.info-bar-container {

  width:100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.info-card {
  flex: 1 1 180px;
  min-width: 150px;
  max-width: 220px;
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  
}

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

.info-card i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #3a86ff;
}

.info-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.info-subtext {
  font-size: 0.85rem;
  color: #ccc;
}

@media (max-width: 1024px){
      .info-bar-container {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 10px;

  }
}

@media (max-width: 768px) {

  .info-card {
    flex: 0 0 auto;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .info-card {
    min-width: 140px;
    padding: 10px;
  }

  .info-title {
    font-size: 0.85rem;
  }

  .info-subtext {
    font-size: 0.75rem;
  }

  .info-card i {
    font-size: 20px;
  }
}













/*====== about ==== */

.project-details-section {
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  background-color: #ccdff3;
  border-radius: 8px;
}

.project-details-box {
  background: #ffffff;
  display: flex;
  position: relative;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.6s ease;
}

.project-sidebar {
  width: 8px;
  background: linear-gradient(180deg, #007bff, #00c6ff);
  border-radius: 4px;
  margin-right: 1.5rem;
}

.project-content {
  flex: 1;
}

.project-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.project-content p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  text-align: justify;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .project-details-section {
    padding: 1.5rem 1rem;
  }

  .project-details-box {
    flex-direction: column;
    padding: 1.5rem;
  }



  .project-title {
    font-size: 1.5rem;
    text-align: center;
  }

 .project-content p {
    font-size: 0.95rem;
    text-align: justify;
  }
}

@media (max-width: 380px) {
  .project-details-section {
    padding: 1rem 1rem;
  }

  .project-details-box {
    /* flex-direction: column; */
    padding: 1.1rem;
  }
}



/* price */

#price-section {
    background-color: #ccdff3;
}

.price-table {
  text-align: center;
}


.type-section {
  border-bottom: 1px dashed grey;
 display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  gap: 15px 5px;
   overflow: hidden;
   color: var(--color-primary);
   box-sizing:border-box;
   padding:10px
}

.type-section i {
    color:#007bff
}

.para-price p {
  text-align: center;
  margin-bottom: 20px;
}

.price-section-info {
  background: #fff; 
  color: var(--color-white);
  text-align: center;
  padding: 25px 10px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  height: 100%;
 border-radius: 10px;
  cursor: pointer;
}

.price-section-info p {
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0px; 
}


.price-span {
  font-size: 15px;
  font-weight: 100;
}


.price-btn-button .btn {
  background-color: #007bff;  
   color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin-top: 1rem;
  border:3px solid  ;
  
}

.price-section-info:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}




@media (max-width: 1024px) {

  .price-section-info {
    padding: 20px 15px 10px;
    font-size: 90%;
  }

/* 
  .price-section-info p {
    font-size: 13px;
  } */

  .btn-button .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}


@media (max-width: 767px) {


  .price-section-info {
  
    padding: 10px 8px;
  }
/* 
  .price-section-info p {
    font-size: 12px;
  } */

  .price-span {
    font-size: 12px;
  }

  .btn-button .btn {
    font-size: 13px;
    padding: 6px 8px;
    
  }


}


/* Master plan */

#master-plan {
  background-color: var(--color-bg); 
  padding: 4rem 0;
  color: var(--color-text);
}

.master-plan-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.master-plan-card {
  background-color: var(--color-bg);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 20px auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.image-wrapper-master-plan {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.image-wrapper-master-plan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: blur(5px);*/
  transition: filter 0.3s ease-in-out;
  display: block;
}

.master-plan-card:hover .image-wrapper-master-plan img {
  /*filter: blur(0);*/
}

.overlay-master-plan {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: inherit;
}

.master-plan-card:hover .overlay-master-plan {
  opacity: 1;
}

.overlay-master-plan p {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid var(--color-primary);  
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.4);
}

.master-plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  background-color: var(--color-primary);
  color: white;
  margin: 0;
  padding: 5px 0;
  text-align: center;
}

@media (max-width: 576px) {
  .master-plan-container {
    padding: 0;
  }

  .image-wrapper-master-plan {
    height: 300px;
  }

  .overlay-master-plan p {
    font-size: 1rem;
    padding: 10px 20px;
  }

}



      
      #floor {
        padding: 50px 0;
        background: #f9f9f9;
      }

      .section-title h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 30px;
      }

      .gallery-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border-bottom: 2px solid #e0e0e0;
        margin-bottom: 30px;
        padding: 0;
      }

      .gallery-filter li {
        list-style: none;
        cursor: pointer;
        padding: 10px 20px;
        margin: 0;
        border: none;
        background: none;
        font-weight: 500;
        font-size: 20px;
        color: #333;
        transition: all 0.3s ease;
        position: relative;
        
      }

      .gallery-filter li.active {
        color: #007bff;
        font-weight: 600;
        
      }

      .gallery-filter li.active::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #007bff;
        border-radius: 2px;
      }

      .gallery-filter li:hover {
        color: #0056b3;
      }

      .img-holder {
        position: relative;
        margin-bottom: 20px;
        overflow: hidden;
        border: 1px solid #ddd;
        border-radius: 5px;
        background: #fff;
      }

      .img-holder img {
        width: 100%;
        height: auto;
        display: block;
      }

      .centered-img {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .centered-img .img-holder {
        max-width: 600px;
        width: 100%;
        max-height: 400px;
        height: 100%;
        margin: auto;
      }

      .centered-img img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        border: 1px solid #ddd;
        border-radius: 5px;
      }

      .room-size {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: rgba(0, 123, 255, 0.8);
        color: #fff;
        padding: 5px 10px;
        font-size: 14px;
        border-radius: 3px;
      }

      .single-room-dimention {
        display: none;
      }

      .img-wrap {
        padding: 10px;
      }



@media (max-width: 576px) {
  .gallery-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-filter li {
    flex: 0 0 auto;
    white-space: nowrap;
    padding:5px 10px;
  }
}


/* highlight */

.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-item {
  /* flex: 1 1 calc(33.333% - 1rem); */
  flex: 1 1 calc(25% - 1rem);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  
}

.highlight-item i {
  color: #007bff;
  font-size: 25px;
  margin-right: 2px;
}

.highlight-name {
  color: #333;
  box-sizing: border-box;
}



@media (max-width: 1024px) {
  .highlight-item {
    flex: 1 1 calc(50% - 1rem);   
  }
}

@media (max-width: 576px) {
  .highlight-item {
    flex: 1 1 100%;
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .overlay-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* ===== amenities ==== */
.icon-box i {
  /*color: #fff;*/
  color: #007bff;
  font-size: 2.1rem;
}

.amenities-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr); 
}

.amenity-item {
  text-align: center;
  padding: 1rem 1rem;
  border-radius: 8px;
  /*background-color: #f4941f;*/
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: transform 0.2s ease;
}

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

.icon-box {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  /*color: #007bff;*/
}

.title {
  font-weight: 500;
}

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .icon-box i {
    font-size: 2.5rem;
  }
  .amenity-item {
    padding: 0.7rem 1rem;
  }
}

@media (min-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .icon-box i {
    font-size: 3rem;
  }
}

/* ===== key-advantages ==== */


#download-section {
  background-color: var(--color-bg);
  color: var(--color-text);
}

.inner-advantage-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.advantage-image,
.advantage-info {
  display: flex;
  flex-direction: column;
  padding: 0px;
  max-height: 350px;
}

.advantage-image-inner,
.advantage-info-inner {
  width: 100%;
  height: 100%;
}

.advantage-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advantage-info-inner {
  padding: 1rem;
  background-color: #ccdff3;
  width: 100%;
  height: 100%;
  
}

.advantage-list{
    /*background-color: #fff;*/
    border-radius: 5px;
   

}
.advantage-info-inner ul{
    margin-bottom:0;
}

.advantage-list li {
  list-style: none;
  font-size: 16px;
  color: var(--color-text);
  box-sizing: border-box;
  padding: 8px 10px;
   
}
 
.advantage-list i {
  font-size: 18px;
  color: #007bff;
  margin-right: 0.5rem;
  padding: 0;
}
  .advantage-list {
    padding: 0px 5px;
  }

@media (max-width: 1024px) {
  .advantage-image-inner {
    width: 100%;
    height: 100%;
  }

}

@media (max-width: 768px) {
  .inner-advantage-row {
    flex-direction: column;
  }

  .advantage-image,
  .advantage-info {
    width: 100%;
  }

  .advantage-image-inner img {
    max-height: 350px;
    height: auto;
    min-height: 200px;
  }



  .advantage-list li {
    padding: 5px 0px;
  }


}

@media (max-width: 430px) {
  .advantage-row {
    padding: 12px;
  }


}




/* ==== specifications ===== */

#specifications-section {
  position: relative;
  background-image: url("https://www.groupsestate.com/assets/images/specification_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  z-index: 1;
}

#specifications-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#specifications-section .container {
  position: relative;
  z-index: 2;
}

.spec-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
  overflow: hidden;
  border: 2px solid #007bff;
  padding: 5px;
}

.spec-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.card-body {
  padding: 20px;
  color: #333;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid #007bff;
}

.card-text {
  font-size: 1rem;
  line-height: 1.4;
}

.toggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform-origin: right center;
  color: white;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.toggle img {
  width: 180px;
  height: auto;
  transform: rotate(-90deg);
  position:relative;
  left:70px;
  
}

@media (max-width : 768px) {
   .toggle img {
  width: 55px;
   }
}

/* form */
#contactModal .modal-content {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
 
}
#contactModal .modal-title {
  font-weight: 600;
  color: #2c3e50;
}
.was-validated .form-control:invalid {
  border-color: #dc3545;
}

.was-validated .form-control:valid {
  border-color: #28a745;
}

#contactModal .btn-close {
 
  background-color: white;
}

.iti {
  font-size: 0.95rem;
  border-radius: 8px;

}

.iti {
  position: relative;
  width: 100%;
}


.iti__country-list {
  z-index: 9999 !important; 
  position: absolute;
  background: white;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}


/* ===== Captcha Image ===== */
#captchaImage {
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 5px;
  user-select: none;
  padding: 2px 20px;
  border-radius: 5px;
  display: inline-block;
  color: #333;
  position: relative;
  overflow: hidden;
  border: none;
}

#captchaImage input {
  border: none;
}

#captchaImage i {
  color: var(--color-white);
}

@media (max-width: 768px) {
  #captchaImage {
    font-size: 23px;
    letter-spacing: 3px;
    padding: 1px 8px;
  }
}


@media (max-width: 576px) {
  #contactModal .modal-dialog {
    margin: 1rem;
  }

  #contactModal .modal-body {
    padding: 1.5rem 1rem;
  }

  #contactModal .modal-footer {
    padding: 1rem;
  }
}

.site-footer {
  margin-top: auto; 
  background-color: black;
  padding: 1rem;
  color: #fff;
  font-size: 14px;
  text-align: center; 
}

.footer-content {
  max-width: 100%;
}

.disclaimer {
  color: #fff;
  font-size: 13px;
  margin: 0;
}


@media (max-width: 576px) {
  .site-footer {
    padding: 0.7rem;
  }

  .disclaimer {
    font-size: 12px;
    text-align: justify;
  }
}


/* ====== gallery ======== */


    .gallery-row {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      margin-bottom: 30px;
    }

    .gallery-card {
      flex: 1 1 calc(25% - 15px);
      max-width: calc(25% - 15px);
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s;
      padding:10px ;
      box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    
    }

    .gallery-card:hover {
      transform: scale(1.02);
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 5px;
    }

    /*IMAGE- Modal Styles */
    #imageModal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      /*background-color: rgba(0,0,0,0.8);*/
      background-color: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
    }

    .modal img {
      max-width: 90%;
      max-height: 90%;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 0;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      z-index: 10000;
    }

    @media (max-width: 992px) {
      .gallery-card {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
      }
    }

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