/* Global Styles */
:root {
  --primary: #0aaf49;
  --secondary: #16213e;
  --accent: #e94560;
  --light-bg: #f9f9f9;
  --text: #333333;
  --gray: #e0e0e0;
  --dark-gray: #777777;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;


}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  margin: 0 0.25rem;
}

/* Underline hover effect */
.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;

  background: linear-gradient(to right, var(--accent), var(--black));
  transition: var(--transition);
  opacity: 0;
}

.navbar-nav .nav-link:not(.btn):hover:after,
.navbar-nav .nav-link.active:after {
  width: 100%;
  opacity: 1;

}
.carousel-item {
    position: relative;
    overflow: hidden;
    
  }
  .carousel-item .img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }


/* CTA button */
.btn-cta {
  background-color: var(--secondary);
  color: var(--primary-dark) !important;
  border: none;
  padding: 8px 20px !important;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.btn-cta:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary-dark);
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
  }

  .nav-item {
    margin: 5px 0;
    opacity: 1;
    transform: none;
  }

  .btn-cta {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
}

/* Button Styles */
.button {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.button-color {
  background-color: var(--accent);
  color: var(--white);
}

.button-color:hover {
  background-color: #d13354;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.button-outline {
  background-color: white;
  color: black;
  border-color: #d13354;
}

.button-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: #d13354;
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}





/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 05%;
  text-align: center;
}

.hero-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .button {
  margin: 0 10px;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn-lg {
    margin: 0.5rem 0;
    width: 100%;
  }
}



.location {
  color: var(--accent);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.location i {
  margin-right: 5px;
}

.details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.details span {
  display: flex;
  align-items: center;
}

.details i {
  margin-right: 5px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Popup Form */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-gray);
  transition: var(--transition);
}

.close-popup:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.popup-form h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray);
  border-radius: 5px;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
}


.bhk-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bhk-option {
  flex: 1;
  min-width: 80px;
}

.bhk-option input {
  display: none;
}

.bhk-option label {
  display: block;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.bhk-option input:checked+label {
  background-color: var(--accent);
  color: var(--white);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--accent) !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .button {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 15px 5%;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .popup-form {
    padding: 20px;
    margin: 0 15px;
  }
}



/* Carousel Caption */
.carousel-caption {
  bottom: 20px;
  padding: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}

/* Overview Section */
#overview {
  background-color: var(--light-bg);
  padding: 4rem 0;
  margin-top: 0px;

}

.overview-grid {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;

}

.overview-image img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
}

@media (max-width: 768px) {
  .overview-grid {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .location-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-text .button {
    margin-bottom: 1rem;

  }

  .card-title {
    font-size: 2rem;
    text-align: center;
  }
}

/* Wrapper allows scroll */
.scrolling-wrapper {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

/* Individual Cards */
.card-custom {
  min-width: 180px;
  flex: 0 0 auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  scroll-snap-align: start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}



/* Prime Location Section */
.prime-location-section {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;

}

.location-image img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.location-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .location-container {
    grid-template-columns: 1fr;

    justify-content: center;
    ;
  }

  .location-image img {
    max-width: 100%;
    height: auto;
  }
}


/* Apartment Card Styling */
.apartment-card {
  background: linear-gradient(45deg, #ad4d87 0%, #fefffe 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(136, 97, 120, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.apartment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.card-title {
  font-size: 4rem;
  font-weight: 500;
  margin: 12px 0 12px;

}





/* Headings */
.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #a3557c;
}

.sub-heading {
  font-size: 1.1rem;
  color: #2c292c;
  max-width: 700px;
  margin: 0 auto;
}

/* Account Card */
.account-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: none;
}

.account-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.account-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 25px 20px;
}

.account-card .card-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.account-card .card-text {
  font-size: 0.9rem;
  /* thoda chhota kiya */
  line-height: 1.4;
  /* readability ke liye */
  color: #555;
  flex-grow: 1;
  margin-bottom: 18px;
}

.account-card .card-text strong {
  color: #e91e63;
  /* pinkish color */
  font-weight: normal;
  /* font-weight nahi badhaya */
}

.account-card .bank-logo {
  max-width: 100px;
  margin: 0 auto 18px auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* construction Gallery */



.construction-gallery {
  padding: 3rem 15px;

  max-width: 1200px;
  margin: 0 auto;
}

.construction-gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #a3557c;
}

.image-container {
  padding: 5px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;

}



.construction-image {
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(112, 85, 103, 0.1);
}

.construction-image:hover {
  transform: scale(1.05);
}

/* Navigation Arrows */
.owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.section-title {
  font-size: 1.5rem;

  color: #080808;
}

.owl-nav button {
  position: absolute;
  background: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.owl-nav button i {
  color: #333;
  font-size: 1.5rem;
}

.owl-prev {
  left: -20px;
}

.owl-next {
  right: -20px;
}

@media (max-width: 768px) {
  .owl-prev {
    left: -10px;
  }

  .owl-next {
    right: -10px;
  }
}

/* Image Grid Styles */
.rough-image-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.big-image img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.small-image-grid img {
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Statistics Styles */
.stats-container .row {
  display: flex;
  flex-wrap: wrap;
}

.stats-container .col-md-3 {
  display: flex;
}

.stat-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1.5rem;

  border-radius: 10px;
  background: linear-gradient(to bottom right, #faf8f9, #f8c5f0);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #8a0b59;
}

.stat-label {
  color: #0a0a0a;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-break: break-word;
  hyphens: auto;
  flex-grow: 1;
  min-height: 3em;
  padding: 0 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .big-image img {
    min-height: 200px;
    margin-bottom: 15px;
  }

  .small-image-grid img {
    height: 120px;
  }

  .stat-box {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

.custom-popup {
  border-radius: 8px;
  padding: 0;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.custom-popup .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}

.popup-form input.form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 8px;
  margin: 0;
}

.popup-form .input-group-text {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  padding: 8px 12px;
  margin: 0;
}





footer {
  background-color: rgb(112, 12, 37);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
}

footer,
footer *:not(a) {
  font-size: 10px !important;
}

footer a {
  font-size: 10px !important;
  color: var(--white);
}

.mobile-fixed-footer {
  position: fixed;
  bottom: 0;
  height: 50px;
  background-color: rgb(112, 12, 37);
  left: 0;
  width: 100%;
  z-index: 1055;
}

.mobile-fixed-footer i {
  font-size: 1.1rem;
}

@media (max-width: 767.98px) {
  .page-wrapper {
    padding-bottom: 60px; /* Room for fixed footer */
  }
}
body, html {
  overflow-x: hidden;
  width: 100%;
}