

/* plots section -3 */

.stats-section {
  padding: 20px 0;
}


.subheading{
  font-weight: 500;
}

.stats-container {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.icon-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

  .stat-box {
  border-right: 1px solid #02327942;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  background-color:#f7f9fc;
  
}

.stat-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0 5px;
  color: #0c1a3c;
}

.stat-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.highlight-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.video-thubmnail_vista{
   width: 100%;
    height: 20rem;
    overflow: hidden;
    border-radius: 15px;

}



/* Tablet */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-box {
  border-right: 1px solid #043e8b30;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.highlight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

}

/* Mobile */
@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .stat-box {
  border: 1px solid #043e8b30;
  border-radius: 10px;
  box-shadow: 0 1px 16px -2px #5a636b26;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}




  .icon-box img {
    width: 60px;
    height: 60px;
  }

  .stat-box {
    padding: 15px 10px;
  }

  .stat-box h3 {
    font-size: 18px;
  }

  .stat-box p {
    font-size: 12px;
  }
}



/*  starting plots section  */

.previous_proj {
  list-style: none;
}

.fixed_header {
  margin-top: 5rem;
}

.rushmainimg_div img {
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

/* ===========================
   PROJECT SECTION
=========================== */

.project-section {
background: url("../img/vistasprings/bg-bkp.webp");
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 45px;
  font-weight: 300;
  
}

.section-title span {
  font-weight: 600;
}

/* ===========================
   PROJECT CARD
=========================== */

.project-card {
  background: #11153a;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Button inside card */
.card-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  background: #0d2c73;
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 6px;
  border: 2px solid #f4c430;
  transition: 0.3s ease;
}

.card-btn:hover {
  background: #022f72;
}

/* ===========================
   SWIPER STYLES
=========================== */

.swiper {
  position: relative;
  padding: 0 50px;
}

.projectSwiper {
  padding-bottom: 40px;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    /* height: 100px; */
    border-radius: 5px;
    background: #000000b8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

/* Pagination */
.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #24346e !important;
  opacity: 1;
}

/* ===========================
   RESPONSIVE
=========================== */

/* Mobile */
@media (max-width: 767.98px) {

  .section-title {
  margin-bottom: 10px;
  
}


    .edge-wrapper {
        flex-direction: column;
        text-align: left;
    }

  .project-section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 25px;
    font-weight: 400;
  }

  .card-btn {
    width: 90%;
  }

  .swiper {
    padding: 0 20px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    height: 70px;
    width: 30px;
  }

  .swiper-button-next, .swiper-button-prev {
    top: 50%;
 
}
.membership-offer {
    padding: 20px 0;
    overflow: hidden;
}


}


/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .swiper {
    padding: 0 30px;
  }


};

/* ============================= */
/* Edge Features Section */
/* ============================= */

.edge-features-section {
  background: #0c0f2a;
  padding: 80px 0;
  color: #ffffff;
}

.edge-features-section .container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* Layout Wrapper */
.edge-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
/* Default (Desktop) */
.edge-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Keep current order on desktop */
.edge-grid {
  order: 1;
}

.edge-left {
  order: 2;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .edge-wrapper {
    flex-direction: column;
  }

  /* Content first */
  .edge-left {
    order: 1;
  }

  /* Grid second */
  .edge-grid {
    order: 2;
  }

}


/* ================= LEFT SIDE ================= */

.edge-left {
  flex: 1;
}

.edge-left h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}



.edge-left p {
  font-size: 16px;
  line-height: 1.7;
 
  margin-bottom: 30px;
  max-width: 500px;
}

/* Buttons */

.btn-more {
  background: #e2e8f0;
  color: #0c0f2a;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 40px;
}

.btn-more:hover {
  background: #4da6ff;
  color: #fff;
}

/* Navigation Buttons */

.edge-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-arrow {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: none;
  background: #1e293b;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-arrow:hover {
  background: #4da6ff;
}

.btn-next {
  padding: 14px 40px;
  border-radius: 12px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-next:hover {
  background: #1d4ed8;
}

/* ================= RIGHT GRID ================= */

.edge-grid {
  flex: 1.3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* Feature Card */

.feature-card {
  background: linear-gradient(to bottom right, #013fbc, #002d88);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  transition: 0.4s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(to bottom right, #0136a0, #083285);
}

.feature-img img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 18px;
  font-weight: 500;
  color: #e2e8f0;
  padding:10px;
  border-radius:10px;
  text-transform: uppercase;
}

.vista-location-swiper p{
  text-transform: uppercase;

}  


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .edge-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .edge-left p {
    margin: 0 auto 30px;
  }

  .edge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .membership-offer {
    padding: 20px 0;
    overflow: hidden;
}
}

/* Mobile */
@media (max-width: 576px) {
  .edge-left h1 {
    font-size: 32px;
  }

  .edge-grid {
    grid-template-columns: 1fr;
  }

  .btn-next {
    padding: 12px 25px;
  }
}

/* ============================= */
/* MEMBERSHIP OFFER SECTION */
/* ============================= */

.membership-offer {

  overflow: hidden;
}

.membership-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ================= LEFT CONTENT ================= */

.membership-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #000000;
}

.highlight-blue {
  color: #24346e;
}

.membership-title {
  font-size: 90px;
  font-weight: 800;
  color: #24346e;
  line-height: 1;
  margin: 10px 0;
}

.membership-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Buttons */

.offer-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.offer-btn {
  display: inline-block;
  background: #1e2f8a;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  width: fit-content;
}

.offer-btn:hover {
  background: #0d1a5c;
  transform: translateY(-3px);
}

.offer-btn.secondary {
  background: #111;
}

/* ================= RIGHT CARD ================= */

.membership-card {
  flex: 1;
  text-align: right;
}

.membership-card img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease;
}

.membership-card img:hover {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

  .membership-container {
    flex-direction: column;
    text-align: center;
  }
  .highlight-blue {
    color: #ffffff;
}
.membership-title {

    color: #ffffff;

}

  .membership-title {
    font-size: 60px;
  }

  .membership-card {
    text-align: center;
  }

  .offer-buttons {
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .membership-title {
    font-size: 42px;
  }

  .membership-content h2 {
    font-size: 24px;
  }

  .membership-content h3 {
    font-size: 18px;
  }

  .offer-btn {
    width: 100%;
    text-align: center;
  }
}


.project-highlights {
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(to bottom, #f3f6fb, #e9eef6);
  text-align: center;
}

.projectSwiper.swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.projectSwiper .swiper-slide {
  height: auto;          /* Important */
  display: flex;
}

.projectSwiper .highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}


.section-title {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 50px;
  letter-spacing: 2px;
}
.section-title span {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.projectSwiper {
  padding: 20px 40px 60px;
}



.highlight-card:hover {
  transform: translateY(-10px);
}



.highlight-card .icon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e7ebf3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.highlight-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 14px;
  color: #777;
}

/* Swiper Custom */
.swiper-button-next,
.swiper-button-prev {
  color: #3b82f6;
}

.swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #3b82f6;
}


/* Only for Vista Location Section */
.vista-location-swiper {
  width: 100%;
  max-width: 90%;
  height: 340px;
  margin: auto;
}

.vista-location-swiper .vista-slide {
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  color: #fff;
}

.vista-location-swiper .vista-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}



@media (min-width: 700px) and (max-width: 900px) { 

.vista-location-swiper .vista-slide img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
}
.vista-location-swiper {
  width: 100%;
  max-width: 90%;
  height: 35rem;
  margin: auto;
}


 }

.vista-location-swiper .vista-slide p {
  padding: 10px;
  font-weight: 600;
  margin: revert;
}


.vista-location-swiper.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
    border: 2px solid #24346e !important;
    border-radius: 18px;
}








.edge-navigation{
    display: flex;
    align-items: center;
    gap: 20px;
}


.bulletpoints ul li {
  position: relative;
  padding-left: 22px;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 14px;
  color: #2c3e50;
  list-style-type: none;
}

.bulletpoints ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #f59e0b; /* premium accent color */
  border-radius: 50%;
}


.routemap-img {
  width: 100%;
  height: 800px;              /* Default desktop height */
  max-height: 1000px;
  min-height: 700px;
  object-fit: contain;        /* Keeps full image visible */
}

/* Large Screens */
@media (min-width: 1400px) {
  .routemap-img {
    height: 900px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .routemap-img {
    height: 600px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .routemap-img {
    height: 80vh;            /* 80% of screen height */
    min-height: auto;
    max-height: none;
  }
}


.gallerySection {
  background: #1c2c67;
}
.gallerySection .aler-gallery {
  display: flex;
  flex-wrap: wrap;
}
.gallerySection .aler-gallery li {
  width: calc(100% / 3);
  overflow: hidden;
}
.gallerySection .aler-gallery li a {
  display: block;
  width: 100%;
  height: 180px;
}
.gallerySection .aler-gallery li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .gallerySection .aler-gallery li a {
    height: 120px;
  }
}

.map-container{
    position: relative;
    width: 90%;
    height: 363px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #d1c4b0;
}

.map-overlay{
    position: absolute;
    display: block;
    cursor: pointer;
    z-index: 10;
    background: transparent;
}

.map-overlay.top{
    top:0;
    left:0;
    width:100%;
    height:30%;
}

.map-overlay.middle{
    top:30%;
    left:15%;
    width:55%;
    height:40%;
}

.map-overlay.bottom{
    bottom:0;
    left:72px;
    width:calc(100% - 232px);
    height:72px;
}

/* Mobile responsive */
@media (max-width:768px){

.map-container{
    width:100%;
    height:220px;
}

.map-overlay.bottom{
    height:50px;
}

}


