@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}
    
html{
  scroll-behavior: smooth;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  z-index: 100;
  padding: 10px !important;
}
    
.navbar-brand img {
  max-height: 35px; 
}
    
@media(max-width: 1200px){
  .navbar-brand img {
    max-height: 25px; 
  }

  .navbar {
    padding: 0.4rem 0.4rem !important; 
    text-align: center;
  }
}
  
.navbar-toggler{
  color: #000 !important;
  font-size: 1.3rem;
}
      
.navbar-nav {
  margin-left: auto;
}
    
.nav-link{
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
    
/*---------------------Popup Form Code-------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow: auto;
}
  
.popup-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 30px;
  border: 1px solid #888;
  max-width: 450px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
  
.close-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
  
.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #000;
  font-size: 20px;
  text-align: center;
}
  
.popup-content .labelpara {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  margin-top: 10px;
}
  
.popup-content input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
  
.popup-content .form-group {
  margin-bottom: 20px;
}
  
.input-group-prepend .input-group-text {
  background-color: #f1d5ad;
  border: 1px solid #f1d5ad;
  border-radius: 4px;
  padding: 8px;
  color: #584831;
}
  
.input-group-text i {
  font-size: 1.2rem; 
}
  
.submit-button {
  font-size: 1.2rem;
  display: block;
  width: 100%;
  padding: 8px 16px;
  background-color: #ddb37a;
  color: #000;
  font-weight: 400;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
  
.submit-button:hover {
  background-color: #edc996;
  color: #000;
}
  
@media (max-width: 600px) {
  .popup-content {
      margin: 20px;
    }
  }
  
@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 1.2rem;
  }
}

/*------------------------Home Page Section-----------------------*/
.left-content {
  color: #725105;
  min-height: 80vh;
  background: linear-gradient(45deg, #f5f0e6 25%, #ffffff 25%, #ffffff 50%, #f5f0e6 50%, #f5f0e6 75%, #ffffff 75%, #ffffff 100%);
  background-size: 20px 20px;
  background-blend-mode: lighten;
  padding: 20px;
}

.welcome-text {
  font-size: 25px;
  font-weight: 800;
  color: #000;
  margin-bottom: 18px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  color: #393939;
  margin-bottom: 12px;
}

.price-highlight {
  color: #9a0101;
  font-weight: 700;
}

.line-divider {
  width: 90px;
  height: 3px;
  background-color: #be9a53;
  margin-bottom: 20px;
}

.launch-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #6d0202;
  margin-bottom: 10px;
}

.projectname-label {
  font-size: 38px;
  font-weight: 600;
  color: #9a794c;
}

.township-heading {
  font-size: 35px;
  font-weight: 600;
  color: #9a794c;
  margin: 0;
}

.homelocation {
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
  color: #1a1a1a;
}

.layout-details .layout-tag {
  background: linear-gradient(to right, #807362, #756145, #504331, #ddb37a);
  color: #fff;
  border: 1px solid #be9a53;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-align: center;
  max-width: 90%;
}

.right-image img {
  object-fit: cover;
  height: 100vh;
  width: 100%;
}

@media (max-width: 768px) {
  .home-hero .row {
    flex-direction: column;
  }

  .home-hero .right-image {
    order: 1;
  }

  .home-hero .left-content {
    order: 2;
    padding: 5px !important;
    text-align: center;
  }

  .right-image img {
    height: auto;
    width: 100%;
  }

  .welcome-text {
    font-size: 18px;
    margin-top: 20px;
  }

  .main-title {
    font-size: 22px;
  }

  .launch-text {
    font-size: 18px;
  }

  .projectname-label {
    font-size: 24px;
  }

  .township-heading {
    font-size: 24px;
  }

  .homelocation {
    font-size: 18px;
    margin-top: 10px;
  }

  .layout-details .layout-tag {
    font-size: 12px;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
  }

  .projectname {
    justify-content: center;
  }

  .line-divider {
    width: 60px;
    height: 2px;
    margin: 10px auto;
  }
}

/*-----------------Overview section---------------*/
.overview-section {
  background-color: #0d0d0d;
  color: #fff;
  padding: 60px 30px;
}

.gold-line {
  width: 80px;
  height: 4px;
  background-color: #ddb37a;
  margin: 12px auto 0;
  border-radius: 2px;
}

.overview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.left-content-overview,
.right-content-overview {
  flex: 1 1 48%;
}

.image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #ddb37a;
  box-shadow: 0 0 20px rgba(255, 215, 160, 0.15);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

.ref-label {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
}

.overview-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #ddb37a;
  margin-bottom: 20px;
}

.overview-text {
  font-size: 16.5px;
  line-height: 1.8;
  color: #dcdcdc;
  margin-bottom: 30px;
}

.overview-highlights h4 {
  font-size: 22px;
  color: #ddb37a;
  margin-bottom: 20px;
}

.overview-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overview-highlights ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  font-size: 15.5px;
  color: #f0f0f0;
}

.overview-highlights ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ddb37a;
  font-size: 16px;
}

@media (max-width: 768px) {
  .overview-section {
    padding: 30px 20px;
  }

  .overview-container {
    flex-direction: column;
    gap: 30px;
  }

  .left-content-overview,
  .right-content-overview {
    flex: 1 1 100%;
  }

  .image-wrapper img {
    height: 280px;
  }

  .overview-subtitle {
    font-size: 18px;
  }

  .overview-highlights h4 {
    font-size: 20px;
  }

  .overview-text {
    font-size: 15.5px;
  }
}


/*---------------Amenities Section--------------*/
.amenities-section {
  background-color: #000;
  padding: 70px 40px;
  color: #fff;
}

.amenities-title {
  color: #ddb37a;
  font-size: 36px;
  font-weight: bold;
}

.underline {
  width: 80px;
  height: 4px;
  background-color: #ddb37a;
  margin: 10px auto 30px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.amenity-box {
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.amenity-box:hover {
  transform: translateY(-5px);
}

.amenity-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #ddb37a;
}

.amenity-name {
  padding: 12px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}

@media(max-width: 768px){
  .amenities-section {
    padding: 20px 5px;
  }

  .amenities-title {
    font-size: 28px;
  }

  .underline {
    margin: 10px auto 10px;
  }

  .amenities-grid {
    gap: 20px;
  } 

}


/*------Why Hiranandani Pune is the Right Choice for Your Dream Home------*/
.reasons-section {
  position: relative;
  background: url('images/reason-back.jpg') center center/cover no-repeat;
  color: #fff;
  border-top: 1px solid #756145;
}

.reasons-overlay {
  background: rgba(0, 0, 0, 0.7); 
  padding: 60px 20px;
  width: 100%;
}

.reasons-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reasons-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ddb37a;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.reasons-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.reasons-list {
  list-style: none;
  padding: 0;
  text-align: left;
  min-width: 300px;
  flex: 1;
}

.reasons-list li {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  letter-spacing: 1px;
}

.reasons-list li::before {
  content: '✓'; 
  position: absolute;
  left: 0;
  color: #ddb37a; 
  font-size: 20px;
  font-weight: bold;
}

.enquire-btn {
  background: #ddb37a;
  color: #000;
  padding: 10px 30px;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.enquire-btn:hover {
  background: #ecc793;
}

@media (max-width: 768px) {
  .reasons-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
 
  .reasons-grid {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 0px;
  }

  .reasons-overlay {
    padding: 40px 20px;
  }

  .reasons-list li {
    font-size: 16px;
  }

  .enquire-btn {
    padding: 8px 20px;
    font-size: 16px;
  }
}

/*---------------------Configuration and Plans Section--------------*/
.floorplans-section {
  background: #000;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #756145;
}

.floorplans-title {
  color: #ddb37a;
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

.floorplans-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.floor-box {
  background: #1c1c1c;
  border: 1px solid #333;
  display: flex;
  width: 500px;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.floor-box:hover {
  transform: translateY(-5px);
}

.floor-left {
  width: 50%;
  position: relative;
}

.floor-img img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  filter: blur(4px);
  border-radius: 6px;
}

.coming-soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 4px;
}

.floor-right {
  width: 50%;
  padding-left: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floor-right .type,
.floor-right .size {
  text-align: left;
  margin-bottom: 12px;
  font-size: 16px;
}

.floor-right span {
  font-size: 18px;
  font-weight: bold;
  color: #ddb37a;
}

.price-btn {
  background-color: transparent;
  border: 1px solid #ddb37a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  margin-top: 10px;
}

.price-btn:hover {
  background: #8c724f;
}

@media (max-width: 768px) {
  .floorplans-section {
    padding: 20px 20px;
  }

  .floorplans-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .floor-box {
    flex-direction: column;
    width: 100%;
  }

  .floor-left, .floor-right {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .floor-right {
    margin-top: 20px;
  }

  .floor-img img {
    height: 200px;
  }

  .floor-right .type,
  .floor-right .size {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .floorplans-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .floor-right {
    margin-top: 20px;
  }

  .floor-img img {
    height: 180px;
  }
}

/*-------------------Location Advantage Section---------------------*/
.location-advantages-section {
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 60px 20px;
  border-top: 1px solid #756145;
}

.location-title {
  text-align: center;
  color: #ddb37a;
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

.advantages-boxes {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.advantage-card {
  background-color: #1a1a1a;
  padding: 20px;
  border-left: 5px solid #ddb37a;
  border-radius: 8px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
}

.map-box {
  flex: 1 1 40%;
  height: 400px;
  border: 2px solid #444;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .location-content {
    flex-direction: column;
  }

  .map-box {
    width: 100%;
    height: 300px;
  }

  .advantages-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .map-box {
    height: 250px;
  }

  .location-title {
    font-size: 26px;
  }

  .advantage-card {
    font-size: 15px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .location-title {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .location-advantages-section {
    padding: 20px 20px;
  }

}

/*---------------------Contact Section-------------------*/
.contact-overlay-sec {
  background: url('images/contact-bg.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  border-top: 1px solid #756145;
}

.contact-overlay-sec::before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.contact-overlay {
  padding: 60px 20px;
}

.form-container {
  background: #ffffffa1;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  text-align: center;
}

.form-horizontal .form-icon {
  font-size: 70px;
  color: #fff;
  background: #00000085;
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 50%;
  margin: -60px auto 20px;
}

#contact-form .form-control {
  height: 48px;
  margin-bottom: 15px;
  font-size: 16px;
  padding: 10px 12px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: #fff;
}

#contact-form .signin {
  background-color: #ddb37a;
  color: #000;
  padding: 10px 20px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

#contact-form .signin:hover {
  background-color: #756145;
  color: #fff;
}

.address-wrap {
  text-align: center;
  margin-top: 40px;
  color: #fff;
}

.address-wrap h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ddb37a;
}

.address-wrap p {
  font-size: 20px;
  margin-bottom: 10px;
}

.call-label {
  font-size: 28px !important;
  font-weight: 600;
  margin-top: 20px;
  color: #ddb37a;
}

.call-me {
  font-size: 32px;
  color: #fff;
  display: inline-block;
}

.call-me:hover {
  color: #fff;
}

.rera-sec {
  background: #000;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  border-top: 1px solid #756145;
}

.rera-sec img {
  width: 80px;
  margin: 10px auto 15px;
}

.footer-text a {
  color: #fff;
  font-weight: 600;
}

.footer-text a:hover {
  text-decoration: underline;
}

.disclpara {
  padding: 20px;
  font-size: 15px;
  color: #ddd;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  border-top: 1px solid #333;
}

.privacy-policy-link {
  color: #fff;
}

.privacy-policy-link:hover {
  text-decoration: underline;
}

@media(max-width: 768px) {
  .contact-overlay-sec {
    padding: 20px 0px;
  }

  .form-icon {
    font-size: 50px !important;
  }
  
  .call-me {
    font-size: 24px;
  }

  .form-container {
    padding: 20px;
  }

  .rera-sec {
    padding: 20px 2px;
  }

  .contact-overlay {
    padding: 40px 2px;
  }

  .address-wrap h3 {
    font-size: 25px;
  }

  .address-wrap p {
    font-size: 16px;
  }

  .call-label {
    font-size: 25px !important;
    margin-top: 10px;
  }

}


/*-----------------------------------whatsapp and call-----------------------*/
#desktop-view {
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  z-index: 9999; 
}
  
.icn {
  margin: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  animation: zoomIcons 0.6s ease-in-out infinite; 
}
  
@keyframes zoomIcons {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); 
  }
  100% {
    transform: scale(1);
  }
}
  
.icn:hover {
  animation-play-state: paused; 
}
  
@keyframes gradient {
  0%{
    background-position: 0 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0 50%;
  }
}
  
@media(max-width: 768px){
  .icn{
    width: 20px;
    height: 20px;
  }
}
  
@media(max-width: 991px){
  #desktop-view{
    display: none;
  }
}
  
/*-------------------------mobile section contact-----------------------*/
.mob-action {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #917855;
  box-shadow: 0 1px 6px 2px rgb(0 0 0 / 40%);
  z-index: 1030;
}
  
.mob-action ul {
  display: flex;
  flex-direction: row;
  align-content: center;
  list-style: none;
  padding: 0;
  margin: 10px 0;
  justify-content: space-around;
  align-items: center;
}
  
.mobile-view {
  display: none;
} 
  
/*------------------------media screen for mobile view----------------------*/
@media (max-width: 991px) {
  .mobile-view {
    display: block;
  } 
}
  
  
 