*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary-color:#74bd1a;
    --secondry-color:linear-gradient(45deg, rgb(200 148 44), rgb(245 217 118), rgb(216 172 66)) !important;
}
.notification{
    padding-left:10px;
}
ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
a{
    text-decoration: none;
}
section{
    padding: 2rem 0;
}
.sec-sub-title h6{
    border: 4px solid var(--primary-color);
    display: inline-block;
    padding: 3px 10px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.sec-title h2{
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--secondry-color);
    text-shadow:  1px 1px 2px rgba(0,0,0,0.2);
}
.sec-btn a{
    background: var(--primary-color);
    transform: skew(-4deg);
    padding: 10px 20px;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
}
.text-white{
    color: #fff!important;
}
.text-green{
    color: var(--primary-color);
}
/* ======================== hero ===================== */
#hero{
  padding: 0;
}
.main-menu-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    padding: 0 6rem;
}
.main-menu ul{
    display: flex;
}
.main-menu ul li{
    padding-left: 20px;
}
.main-menu ul li a{
    line-height: 80px;
    color: #000;
    font-weight: 600;
}
.contact-btn a{
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
}
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}
.hamburger span{
    width:25px;
    height:3px;
    background:var(--secondry-color);
    border-radius:5px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
    opacity:0;
}
.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(5px,-5px);
}





.hero-section{
    width: 100%;
    height: 90vh;
    background: url(../images/banner1.jpg);
    padding: 0 6rem;
    display: flex;
}
.hero-sec-left{
    flex: 35%;
    max-width: 35%;
    background: rgba(0,0,0,0.7);
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-btm-text,
.hero-title,
.hero-best,
.hero-bnt{
    padding: 0 30px;
}

.hero-title h1{
    color: #fff;
    font-size: 1.8rem;
    text-transform: uppercase;
}
.hero-title h3{
    font-size: 1.5rem;
    color: var(--primary-color);
}
.hero-title h6{
    color: #fff;
}
.hero-best{
    margin: 2rem 0;
    padding: 10px 30px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}
.hero-best::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 110%;
    width: 10px;
    background: #fff;
    filter: blur(7px);
}
.hero-best ul li {
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    padding-left: 25px; /* so text doesn't overlap the icon */
}

.hero-best ul li::before {
    content: '';    
    position: absolute;
    top: 30%;
    left: 0;
    font-size: 1rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5);
}
.hero-btm-text{
    color: #fff;
}
.hero-btm-text h2{
    font-size: 1.7rem;
}
.hero-btm-text h2 span {
    color: var(--primary-color);
    font-weight: 700;
    transform: scale(1);
    animation: zoom 0.5s ease-in-out infinite alternate;
    display: inline-block;
}
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
.hero-bnt a{
    padding: 10px 20px;
    background: var(--primary-color);
    color: #000;
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero-sec-right{
    flex: 60%;
    max-width: 60%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
}
.form-wrapper{
    max-width: 400px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    padding: 40px;
}
.form-title{
    text-align: center;
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 20px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    border-radius: 5px;    
}
.form-title h3 {
    text-transform: uppercase;
    color: transparent;
    font-weight: 700;
    background-image: linear-gradient(to right ,#3409a9, #ee4b2b, #000000, #f85419, #c3ea01);
    -webkit-background-clip: text;
    background-clip: text;    
    background-size: 200%;
    background-position: -200%;
    animation: animated-gradient 2s infinite alternate-reverse;      
}
@keyframes animated-gradient{
  to{
    background-position: 200%;
  }
}
.hero-form form input,
.hero-form form textarea{
    width: 100%;
    background-color: transparent;
    border:none;
    padding: 10px;
    background-color: rgba(255,255,255,1);
    margin-bottom: 10px;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
}
.hero-form form input[type="submit"]{
    background: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* =============================== about ====================== */
#about{
    margin-top: 5rem;
}
.about-image-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}
.about-image-wrapper img:nth-child(1){
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}
.about-image-wrapper img:nth-child(2){
    position: absolute;
    right: -100px;
    bottom: 200px;
    width: 300px;
    border: 5px solid #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

/* ==============================  highlights ========================= */
#heighlights{
    background: url("../images/g4.webp") no-repeat center center;
    position: relative;
    background-size: cover;
    padding: 0;
}
#heighlights:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);    
}
.heighlights-content-wrapper{
    position: relative;
    z-index: 2;
    /* background: rgba(0, 0, 0, 0.7); */
    padding: 3rem 2rem;
    backdrop-filter: blur(2px); 
}
#heighlights .sec-content ul{
    padding-left: 2rem;
}
#heighlights .sec-content ul li{
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 25px;
    position: relative;
}
#heighlights .sec-content ul li::before {
    content: '';    
    position: absolute;
    top: 30%;
    left: 0;
    font-size: 1rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5);
}
.highlights-image-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding-left: 4rem;
}
.highlights-image-wrapper img{
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 4px 4px 7px rgba(0,0,0,0.3);
}
/* ================= location & connectivity===================== */
#location{
    padding:80px 0;     
}
.location-details-bos-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.location-detail-box{
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 4px 4px 6px rgba(7, 158, 106, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;  
    padding: 20px;
    flex: 50%;
    max-width: calc(50% - 20px);
    display: flex;
    align-items: center;
    gap:20px;
}
.loc-icon img{
    max-width:40px;
}
.loc-text h5{
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondry-color);
    margin-bottom: 5px;
}
.loc-text p{
    font-size: .8rem;
    line-height: 1.2;
    color: #555;
    margin-bottom: 0;
}
.location-box-wrapper{
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 0 8px rgba(7, 158, 106, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;  
    padding: 20px;
}
.location-title{
    display: flex;
    align-items: center;
    gap:10px;
    margin-bottom: 15px;
}
.location-title h6{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondry-color);
    margin-bottom: 0;
}
.location-text p{
    font-size: 1rem;
    line-height: 1.4;
    color: #555;
    margin-bottom: 0;
    text-align: center;
    padding: 20px 0;
}
.nerarby-landmark{
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 0 8px rgba(7, 158, 106, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;  
    padding: 20px; 
    margin-top: 20px;
}
.nearby-title h4{
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondry-color);
    margin-bottom: 10px;
}
.nearby-list ul{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap:5px 20px;
    flex-wrap: wrap;
    padding-left: 0;
}
.nearby-list ul li{
    flex: 100%;
    max-width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
}
.nearby-list ul li span{
    font-size: .9rem;
    color: #555;
}
.location-highlights h4{
    text-transform: uppercase;
    color: transparent;
    font-weight: 700;
    background-image: linear-gradient(to right ,#3409a9, #32b204, #000000, #f85419, #810366);
    -webkit-background-clip: text;
    background-clip: text;    
    background-size: 200%;
    background-position: -200%;
    animation: animated-gradient 2s infinite alternate-reverse;      
}
@keyframes animated-gradient{
  to{
    background-position: 200%;
  }
}

/* ================================ price ================= */
#price{
    background: url("../images/abs-background.png");
    background-size: cover;
}
.price-box-wrapper{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
}
.price-box-wrapper .price-box{
    border: 3px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
}
.price-box h4{
    border: 1px solid var(--primary-color);
    display: inline-block;
    padding: 0 20px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.price-box h2{
    font-size: 1.8rem;
    padding: 10px;
    font-weight: 700;
}
.sec-btn a{
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==================amenities ================ */
/* ================= amenities ================ */ 
#amenities{
    padding:4rem 0;     
}
.amenities-image{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    border: 2px solid #eee;
    padding: 2px;
}
.amenities-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.amenities-wrapper{
    display: flex;    
    gap:20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.amenities-box{
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.amenities-box img{
    width: 80px;
    height:80px;
    object-fit: contain;
    border: 1px solid #000;
    border-radius: 50%;
    padding: 5px;
}
.amenities-box h6{
    text-align: center;
    font-size: 0.8rem;
    padding-top: 3px;
}

/* ====================== reason to buy ================ */
#reason-to-buy{
    background: url("/assets/images/g1.webp");
    position: relative;
}
#reason-to-buy:before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
}
.reson-to-buy-content{
    position: relative;
    z-index: 3;
}
.sec-content ul li{
    margin-bottom: 20px;
}
/*.sec-content ul li b{*/
/*    color: var(--primary-color);*/
/*}*/

.reason-to-buy-img-con{
    position: relative;
    z-index: 3;
    background: rgba(246, 255, 245, 0.9);
    padding: 3rem;
}
.reason-to-buy-img-con h3{
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}
.reason-to-buy-img-con ul li{
  font-size: 0.9rem;
  margin-bottom: 5px;
}
    /* ===============================
   GALLERY SECTION
================================ */
/* Lightbox Styles */
.lightbox {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
  animation: zoomIn 0.3s ease;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox .close:hover {
  color: #ccc;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
  --gallery-gap: 25px; /* consistent gap across all devices */
  --gallery-speed: 20s;
}

body {
  font-family: 'Poppins', sans-serif;
}

.section {
  padding: 3rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.gallery-carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: var(--gallery-gap) !important;
  flex-wrap: nowrap;
  will-change: transform;
  animation: scrollBackForth var(--gallery-speed) linear infinite alternate;
}

.gallery-item {
  flex: 0 0 auto;
  width: 240px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: 0;
  padding: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Ping-pong scroll animation */
@keyframes scrollBackForth {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   RESPONSIVE GALLERY
========================= */

/* Large tablets and small laptops */
@media (max-width: 900px) {
  .carousel-track {
    gap: var(--gallery-gap) !important;
  }
  .gallery-item {
    width: 200px;
  }
  .gallery-item img {
    height: 140px;
  }
}

/* Tablets / larger phones */
@media (max-width: 768px) {
  .carousel-track {
    gap: var(--gallery-gap) !important;
  }
  .gallery-item {
    width: 160px;
  }
  .gallery-item img {
    height: 130px;
  }
}

/* Small devices / mobile phones */
@media (max-width: 560px) {
  .carousel-track {
    gap: var(--gallery-gap) !important;
  }
  .gallery-item {
    width: 140px;
  }
  .gallery-item img {
    height: 120px;
  }
}

/* Extra small devices / very small phones */
@media (max-width: 380px) {
  .carousel-track {
    gap: var(--gallery-gap) !important;
  }
  .gallery-item {
    width: 120px;
  }
  .gallery-item img {
    height: 100px;
  }
}


/* =====================
       Section: Floor Plans
    ====================== */
    #floor-plan {
      padding: 60px 20px;
      text-align: center;
    }
    .section-subtitle {
      color: #6cb33f;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 40px;
    }
    .floor-plan-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    /* =====================
       Floor Plan Card
    ====================== */
    .plan-card {
      position: relative;
      background: #fff;
      border: 1px solid #6cb33f;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      /* overflow: hidden; */
      max-width: 400px;
      flex: 1 1 300px;
      text-align: center;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .plan-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }
    .plan-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 20px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .plan-card img:hover {
      transform: scale(1.03);
    }
    .plan-label {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: #6cb33f;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      padding: 6px 20px;
      border-radius: 6px;
      border: 2px solid #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .plan-btn {
      margin-top: 0;
      padding: 12px 25px;
      background: #fff;
      color: var(--primary-color);
      font-weight: 700;
      border: 1px solid #6cb33f;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .plan-btn:hover {
      background: #6cb33f;
      color: #fff;
    }

    /* =====================
       Modal Form Popup
    ====================== */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      animation: fadeIn 0.3s ease;
    }
    .modal-content {
      background: #fff;
      max-width: 500px;
      margin: 8% auto;
      padding: 30px;
      border-radius: 12px;
      position: relative;
      animation: slideUp 0.4s ease;
      box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    }
    .modal h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .modal .close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 22px;
      cursor: pointer;
      color: #555;
      transition: transform 0.2s ease;
    }
    .modal .close:hover {
      transform: rotate(90deg);
      color: #000;
    }

    /* Form Styles */
    form {
      margin-top: 15px;
    }
    .form-group {
      margin-bottom: 18px;
    }
    input, select {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 15px;
      outline: none;
      transition: border 0.3s ease, box-shadow 0.3s ease;
    }
    input:focus, select:focus {
      border-color: #6cb33f;
      box-shadow: 0 0 5px rgba(108,179,63,0.4);
    }
    .submit-btn {
      width: 100%;
      padding: 12px;
      background: #6cb33f;
      border: none;
      color: #fff;
      font-weight: 600;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .submit-btn:hover {
      background: #58a02f;
    }

    /* =====================
       Lightbox
    ====================== */
    .lightbox {
      display: none;
      justify-content: center;
      align-items: center;
      position: fixed;
      z-index: 1000;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.85);
      animation: fadeIn 0.3s ease;
    }
    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 85%;
    }
    .lightbox-img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      animation: zoomIn 0.4s ease;
    }
    .lightbox .close {
      position: absolute;
      top: -40px;
      right: -10px;
      font-size: 28px;
      color: #fff;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .lightbox .close:hover {
      transform: scale(1.2);
      color: #6cb33f;
    }

    /* =====================
       Animations
    ====================== */
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes slideUp {
      from { transform: translateY(60px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

     /* ==================== contact ==========    */
 #contact{
    padding:80px 3rem;
    background:#185701;
}
.contact-form{
    background: rgba(255, 255, 255, 1);
    text-align: center;
    padding: 30px;
    max-width: 500px;
    border-radius: 10px;
    margin: auto;
}
.contact-form form input,
.contact-form form textarea{
    margin-bottom: 10px;
}
.contact-form form input[type="radio"]{
  padding-right: 20px;
  width: 20px;
  margin-bottom: 0;
}
.contact-form form input label{
  padding-left: 10px;
}
.contact-form form .w-100{
  display: flex;
  padding:10px 0;  
}
.contact-title{
    color: #fff;
}
.contact-icon-box{
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap:15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    max-width: 400px;
    margin-top: 25px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.contact-icon{
    width: 60px;
    height:60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    color: var(--secondry-color);
}
.contact-text h4{
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}
.contact-text a{
    font-size: 1rem;
    line-height: 1.2;
    color: #d8d8d8;
    margin-bottom: 0;
}


/* =========================== responsive =================== */
@media screen and (max-width:991px){
  .main-menu-bar{
    padding: 0 1rem;
  }
  .logo img{
    width: 100px;
  }
    .hamburger{
        display:flex;
    }
    nav{
        position:fixed;
        top:0;
        left:-100%;
        width:250px;
        height:100vh;
        background:#fff;
        box-shadow:2px 0 10px rgba(0,0,0,0.1);
        padding:50px 20px;
        transition:0.3s;
        z-index:9999;
    }
    nav.active{
        left:0;
    }
    nav ul{
        flex-direction:column;
        gap:12px;
        align-items: flex-start;
    }
    nav ul li a{
        font-size:1.2rem;
        text-align: left;
    }
    .project-box{        
        flex: 50%;
        max-width: calc(50% - 20px);
    }
}

@media screen and (max-width:768px) {
  :root{
    font-size: 14px;
  }
  section{
    padding: 20px 1rem!important;
  }
  #hero{
    height: auto;
    padding: 0 0!important;
  }
  #about {
    margin-top: 1rem;
}
  .hero-section{
    padding: 0 1rem;
    height: 100%;
    flex-direction: column;
  }
  .hero-sec-left,
  .hero-sec-right{
    flex: 100%;
    max-width: 100%;
    padding: 20px 0;
  }
  .hero-sec-right{
    justify-content: center;
  }
  .about-image-wrapper img:nth-child(2){
    display: none;
  }
  .highlights-image-wrapper{
    padding-left: 1rem;
  }
  .sec-title h2 {
    font-weight: 700;
    font-size: 2.2rem;
      
  }
  .heighlights-content-wrapper{
      padding: 3rem 0;
  }
  .price-box h2 {
    font-size: 1.3rem;
      
  }
  .amenities-box{
    width: 100px;
    height: 100px;
  }
  .location-details-bos-wrapper{
    gap: 10px;
  }
  .location-detail-box{
    max-width: calc(50% - 10px);
    padding: 10px;
    gap: 10px;
  }
  .loc-icon img {
    max-width: 20px;
}
.loc-text h5 {
    font-size: .9rem;
  }
  .price-box-wrapper{
    gap: 10px;
  }
  .reason-to-buy-img-con{
    padding: 3rem 3rem 3rem 0;
  }
  .price-box-wrapper .price-box{
    padding: 10px;
  }
  .main-menu ul li a {
    line-height: 16px;
  }
  
.form-wrapper {
    max-width: 100%;
  }
  .contact-icon-box{
    max-width: 100%;
  }
  .contact-form{
    margin-top: 20px;
  }
  .plan-card{
    margin-top: 20px;
  }
  
  
  
  
  
  
  
  
  
  
}