/* ================================
   Base Styles (Mobile First)
================================ */
 .price-box {
   position: relative;
   background: #0dcaf014;
   text-align: center;
 }

 .price-box-in {
   position: relative;
 }

 .price-box .h1 {
   background:#4c8fb4;
   font-size: 26px;
   color: #fff;
   padding: 10px 0;
   letter-spacing: 0.5px;
 }
/* --- Carousel Base --- */
#heroCarousel .carousel-item img {
  height: 80vh;
  object-fit: cover;
  filter: brightness(70%);
  border-radius: 3px;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
	height:100%; 
  gap: 1rem;
  padding: 1rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.1);
}
.main-div {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  text-align: left;
  height: 100%
}

/* --- Carousel Controls --- */
.carousel-control-next,
.carousel-control-prev {
  width: 30px;
  z-index: 11;
  display: none;
}

/* --- Text Content --- */
.text-content {
  max-width: 90%;
  z-index: 2;
}

.text-content h1 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.text-content p {
  font-size: 1rem;
  color: #ffffff;
  margin: 0 auto 1rem;
  max-width: 400px;
}

/* --- Form Box --- */
.contact-form-box {
  position: relative;
  border-radius: 3px;
  padding: 1rem;
  width: 100%;
  max-width: 100%;
  background: #fff;
  margin-bottom: 1rem;
  box-shadow: none;
  z-index: 3;
}

.icon-circle {
  background-color: var(--green-1);
  color: #fff;
  border-radius: 50%;
  padding: 5px 10px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
  border-radius: 3px;
  border-color: #ccc;
  font-size: 0.9rem;
  padding: 10px;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
  box-shadow: 0 0 0 2px rgba(14, 111, 164, 0.42);

;
}

.contact-form-box button.btn-success {
  background: linear-gradient(135deg, var(--green-1), var(--green-2));
  border: none;
  font-weight: 600;
  border-radius: 3px;
  padding: 10px 0;
  width: 100%;
  transition: all 0.3s ease;
}
.contact-form-box button.btn-success:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* --- Buttons & CTAs --- */
.btn {
  border-radius: 3px !important;
}

/* --- Animations --- */

/* ================================
   Breakpoints
================================ */

/* ≥576px (small devices) */
@media (min-width: 576px) {
  #heroCarousel .carousel-item img {
    height: 100vh;
  }

  .contact-form-box {
    max-width: 420px;
  }

  .text-content h1 {
    font-size: 1.7rem;
  }
}

/* ≥768px (medium devices / tablets) */
@media (min-width: 768px) {
  .main-div {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 2rem;
	height: 100%;
  }
  

  .text-content {
    max-width: 400px;
  }

  .text-content h1 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 1.05rem;
  }

  .contact-form-box {
    margin: 0;
    max-width: 380px;
  }
  .navbar-brand img {
    width: 160px;
  }

  .carousel-control-next,
  .carousel-control-prev {
    display: block;
  }
}

/* ≥992px (large devices / desktops) */
@media (min-width: 992px) {
  #heroCarousel .carousel-item img {
    height: 100vh;
  }

  .carousel-overlay {
    padding: 3rem;
  }

  .text-content h1 {
    font-size: 2.3rem;
  }

  .text-content p {
    font-size: 1.1rem;
  }

  .contact-form-box {
    position: static;
    max-width: 420px;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  }

  .modal .contact-form-box {
    max-width: 100%;
  }
}

/* --- Custom Carousel Controls --- */
.carousel-control-prev,
.carousel-control-next {
  width: 38px;
  height: 38px;
  background: var(--green-1); /* green shade */
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  border: 1px solid #fff;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--hover); /* vivid green */
  transform: translateY(-50%);
}

/* Icon customization */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* remove Bootstrap’s default icon */
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}

/* Add custom Font Awesome or Bootstrap Icons */
.carousel-control-prev-icon::before {
  content: "\f053"; /* Font Awesome 'angle-left' */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.carousel-control-next-icon::before {
  content: "\f054"; /* Font Awesome 'angle-right' */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.custom-checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.custom-checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1rem;
}

.custom-checklist li::before {
	
  content: "\2714";
  position: absolute;
  left: 0;
  top: 0;
   background-color: #FFF5E9;
   color: #B77D3C;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 11px;
  box-shadow: 0 2px 4px rgba(60, 42, 26, 0.1);
}

.info-button {
  background-color: var(--green-1);
  color: var(--text);
}

/* overview section */
.overview-card {
  flex: 0 0 25%;
  max-width: 25%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px;
  background-color: var(--green-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-item h4 {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.overview-item p {
  color: #fff;
  font-weight: 400;
  font-size: 0.8rem;
  margin-bottom: 0;
  text-transform: uppercase;
}

.image-hover-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.for-paras {
  text-align: justify;
  line-height: 1.5rem;
  text-justify: inter-word;
  font-size: 1rem;
}

.customBtn {
  background-color: transparent;
  border: 1px solid #518e58d0;
  padding: 8px 30px;
  color: #007432;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 14px;
  margin: 30px 0;
  letter-spacing: 2px;
  transition: 0.5s all ease-in-out;
}

.customBtn:hover {
  background-color: #007432;
  color: #fff;
  border: 1px solid #007432;
}

.short-img {
  filter: none !important;
  min-height: 500px;
  object-fit: cover;
}

@media (max-width: 480px) {
  .highlight-card {
    align-items: center;
    gap: 1.5rem;
  }

  .short-img {
    min-height: 250px !important;
  }

  .image-hover-effect {
    filter: none !important;
  }

  .price-box {
    width: 100%;
  }

  .view-more {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .para-effect {
    z-index: 10 !important;
  }
}

@media (max-width: 480px) {
  .highlight-card {
    align-items: center;
    gap: 1.5rem;
  }
}

/* overview-section css */

/* overview-section css close */
.overview {
  background: #fff;
  padding: clamp(48px, 6vw, 88px) 0;
}

/* Grid – mobile first */
.overview-grid {
  display: grid;
  gap: 24px;
}

/* Copy */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--green-3);
  border: 1px solid var(--green-4);
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
  margin-bottom: 0.65rem;
}
.sec-title {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 0.6rem 0;
  font-weight: 600;
}
.lead-copy {
  font-size: 1rem;
  color: #272827;
  text-align: justify;
  line-height: 2;
  margin: 0 0 1.1rem 0;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 14px 0 18px;
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 576px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .stats {
    grid-template-columns: repeat(5, 1fr);
  }
}
.stat-label {
  font-size: 0.95rem;
  color: #6eb472;
  margin-top: 6px;
}
.stat {
  background: #fff;
  border: 1px solid var(--green-2);
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px 12px;
  text-align: center;
  font-weight: 600;
}
.stat-num {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.15rem;
  line-height: 1.2;
}
.stat-num .u {
  display: block;
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 2px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--green-2);
  margin-top: 6px;
}
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 2px 0 0 0;
  list-style: none;
}
.feature-chips li {
  font-size: 0.86rem;
  color: var(--green-1);
  background: #fff;
  border: 1px solid var(--hover);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
}

/* Media collage */
.overview-media {
  width: 100%;
}
.media-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 130px;
}
.media-card {
  background: #dde7ef;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6edf2;
  box-shadow: var(--shadow);
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-card.tall {
  grid-row: span 2;
}
.media-card.wide {
  grid-column: span 2;
  grid-row: span 1;
}

/* Caption */
.media-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

/* Subtle hover effect */
.media-card:hover img {
  transform: scale(1.03);
  transition: transform 0.45s ease;
}
@media (min-width: 992px) {
  .overview-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 40px;
  }
  
  .media-grid{
	  grid-auto-rows: 230px;
  }
}

/* highlight section*/
.image-hover-effect {
  transition: all 0.3s ease-in-out;
  display: block;
  width: 100%;
  filter: grayscale(100%);
}

.image-hover-effect:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 75, 37, 0.25);
  filter: grayscale(0%) brightness(1.2);
}

.alternate {
  background-color: rgb(241, 245, 249);
}
.apartment-features {
  list-style-type: none;
  padding-left: 0;
}
.apartment-features li {
  text-align: left;
  line-height: 2;
  margin-left: 0;
}

.apartment-features li::before {
  content: "\2714";
  color: #16940d;
  margin-right: 10px;
}

/* floor plan section*/
.floor-plans-section {
  padding: 2rem 0;
}

.floor-plan-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.floor-plan-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.floor-plan-image-wrapper {
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
}

.floor-plan-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a1a;
}

.expand-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.floor-plan-card:hover .expand-btn {
  opacity: 1;
}

.expand-btn:hover {
  background: #fff;
}

.floor-plan-content {
  padding: 1.5rem;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.plan-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.spec-icon {
  width: 20px;
  height: 20px;
  color: #495057;
}

.spec-value {
  font-weight: 500;
  color: #1a1a1a;
}

.price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.price-label {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 400;
}

.floor-plan-content {
  position: relative;
}
.view-details-btn {
  background: var(--green-2);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
  position: absolute;
  right: 20px;
  top: 20px;
}

.availability-badge {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: var(--hover);
  color: var(--accent);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

@media (max-width: 768px) {
  .floor-plans-section {
    padding: 1.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .floor-plan-image-wrapper {
    height: 200px;
  }

  .plan-specs {
    gap: 1rem;
  }

  .price {
    font-size: 1.25rem;
  }

  .view-details-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* style price-section */
.price-title {
  text-align: center;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  text-transform: capitalize;
  color: #007432;
}

.plot-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f8f9fa;
  max-width: 400px;
}

.plot-size {
  background-color: #007432;
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 10px 0;
  min-width: 50px;
  font-weight: 600;
  font-size: 14px;
}

.price-btn {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #fff;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  background: #007432;
  overflow: hidden;
  z-index: 0;
  transition: color 0.25s cubic-bezier(0.38, 0.08, 0.39, 0.8),
    border-color 0.25s ease;
}
.price-btn::before {
  content: "ENQUIRE NOW ";
  font-weight: bold;
  margin-right: 5px;
}

.price-btn:hover {
  color: green;
  background-color: black;
}

/* price-section mediaq- */
@media (max-width: 991px) {
  .plot-card {
    max-width: 300px !important;
  }
}

/* ===== Section Header (Badge + Title) ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: #0E6FA4;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Location Section ===== */
.location-section {
  padding: 80px 0;
  background: #f8fafc;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 5rem; 
}

.location-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(14, 111, 164, 0.25);
  min-height: 400px;
}

.location-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1rem; /* slight breathing space */
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0E6FA4;
  margin-bottom: 20px;
}

/* ===== Location List ===== */
.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  color: #334155;
  font-size: 16px;
  line-height: 1.5;
}

.location-list li::before {
  content: "📍";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #0E6FA4;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-map {
    height: 300px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 20px;
  }

  .location-list li {
    font-size: 15px;
  }
}


/* aminitis section*/
.ami-box {
  display: flex;
background: linear-gradient(135deg, #A3C8E6 0%, #0E6FA4 100%);


  align-items: center;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 10px;
  margin-bottom: 30px;
}

.ami-box img {
  max-width: 70px;
  background: white;
  border-radius: 10px;
  padding: 5px;
}

.ami-box h3 {
  font-size: 16px;
  margin-left: 10px;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-transform: capitalize;
}




/* faq section */
.accordion-item {
  margin-bottom: 10px;
  /* border: 1px solid var(--primary-dark); */
  border-radius: 0.3rem;
}

.accordion-button {
  background-color: var(--secondary-gray);
  color: #1d1d1d;
  /* Default question text color */
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #dee2e6;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--green-1);
  color: white;
  /* Question text color when active */
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f7d1bc' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 8H14'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}
.brochure-section .form-control, .brochure-section .form-select{
    border-radius: 3px;
    border-color: #ccc;
    font-size: 0.9rem;
    padding: 10px;
}

.brochure-section .form-control:focus, .brochure-section .form-select:focus {
    box-shadow: 0 0 0 2px rgba(14, 111, 164, 0.42);


}



