@font-face {
  font-family: 'Wilhelmina';
  src: url(../font/Wilhelmina.ttf) format('truetype');
}
@font-face {
  font-family: 'Gilroy-Regular';
  src: url(../font/Gilroy-Regular.ttf) format('truetype');
}
:root{--green_color: #285d43;--orange_color: #fa9f1b;--white_color: #f5f5f5;--black: #111}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    font-family: 'Gilroy-Regular', sans-serif;
    background: var(--green_color);
    scroll-behavior: smooth;
    font-size: 16px;
    color: var(--white_color);
}
header {
    background: #fafafa;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 95%;
    margin: 0 auto;
    padding: 0.5rem 2vw;
}
.navbar-logo img {
    height: 70px;
    width: auto;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 3vw;
}
.navbar-links a {
    text-decoration: none;
    color: #183e2c;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.2s;
}
.navbar-links a:hover {
    color: #f9a825;
}
.navbar-contact {
    margin-left: 2vw;
}
.navbar-contact button {
    background: #f9a825;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 0.8em 2.5em;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.navbar-contact button:hover {
    background: #ffb733;
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.navbar-toggle span {
    height: 4px;
    width: 100%;
    background: #183e2c;
    position: absolute;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.navbar-toggle span:nth-child(1) {
    top: 0px;
}
.navbar-toggle span:nth-child(2) {
    top: 10px;
}
.navbar-toggle span:nth-child(3) {
    top: 20px;
}
.navbar-toggle.open span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-10px, 3px);
    -moz-transform: rotate(-45deg) translate(-10px, 3px);
    -o-transform: rotate(-45deg) translate(-10px, 3px);
    transform: rotate(-45deg) translate(-10px, 3px);
}
.navbar-toggle.open span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.navbar-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-10px, -5px);
    -moz-transform: rotate(45deg) translate(-10px, -5px);
    -o-transform: rotate(45deg) translate(-10px, -5px);
    transform: rotate(45deg) translate(-10px, -5px);
}
.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url('../images/hero.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-top:  2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-section .content {
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero-section p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #eee;
}

.container {
    max-width: 95%;
    padding: 3rem 0;
}
.section1 {
    background: #fafafa;
}
.section1 .container {
    padding-bottom: 3rem;
    margin: 0 auto;
}
.section1 .description{color: var(--black);font-size: 1.8rem;}
.karjat-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.karjat-content {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
}

.karjat-content p {
  margin-bottom: 1.8rem;
}

.karjat-content strong {
  font-weight: 600;
}
.hero-section {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url('../images/hero.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-section .content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 20px;
  color: white;
}

.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section h1 span {
  color: #FFD700;
}

.hero-section p {
  font-size: 1.2rem;
  color: #eaeaea;
}

.hero-section .btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 32px;
  font-size: 1rem;
  background: #FFD700;
  color: #000;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  background-color: #e5c100;
}

/* Karjat Section */
.karjat-section {
  padding: 20px;
  display: flex;
  justify-content: center;
  background-color: var(--green_color);
}

.karjat-content {
  text-align: left;
}

.karjat-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  /* color:  var(--white_color); */
}
.mx-auto{
  margin: 0 auto;
}
.karjat-content p {
  margin-bottom: .8rem;
  color: var(--white_color);
}
.real-estate-impact {
  padding-top: 3rem;
  /* background-color: #fff; */
  /* color: #222; */
}



.impact-header {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; */
  margin-bottom: 3rem;
}

.impact-header h2 {
  font-size: 2.4rem;
  font-weight: 600;
}

.learn-more {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px;
}

.impact-left, .impact-right {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 40px;
}

.impact-image {
  flex: 1 1 300px;
  max-width: 400px;
}

.impact-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  max-height: 500px;
  object-fit: cover;
}

.impact-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange_color);
  min-width: 30px;
  padding-top: 5px;
}

.step-text h4 {
  font-size: 2.2rem;
  margin: 0 0 6px;
  line-height: 2.5rem;
}


/* Responsive */
@media (max-width: 768px) {
  .impact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .impact-header h1{margin-bottom: 2rem;}
  .impact-grid {
    flex-direction: column;
    gap: 50px;
  }
  .arrow {
    display: none;
  }
  .impact-left, .impact-right {
    align-items: flex-start;
  }

  .impact-image {
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .karjat-content h2 {
    font-size: 2rem;
  }

  .hero-section .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
.two-columns {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
    align-items: center;
}
.container.right-image{
    margin-left: auto;
}
    .container.right-image img{
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    }
    .container.left-image img{
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    }
.container.left-image {
    margin-right: auto;
}
.container.left-image .two-columns {
    flex-direction: row-reverse;
}
.container.left-image .left-column{
    width: 50%;
}
.container.left-image .right-column {
    width: 50%;
}
.container .left-column {
    width: 55%;
}
.container .right-column {
    width: 45%;
}
.subtitle {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.headline {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
     font-family: 'Wilhelmina';
}
h1{ font-family: 'Wilhelmina';}
.left-column .subtitle + .headline {
margin-top: -1.2rem;
}

.left-column .headline {
margin-top: 2rem;
}
#gated-community .headline {
    margin-bottom: 2rem;
    line-height: 4rem;
}
#gated-community{margin: 4rem 0;}
#gated-community li{
  background: url(/images/tick.svg) no-repeat left center;
    padding-left: 35px;
    background-size: 30px 30px;
    list-style: none;
    margin-left: 0;
}
.description {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
}
.no-headline {
    margin: 2.5rem 0 2rem;
}
ul.description li {
    margin-bottom: 1rem;
    font-size: 2rem;
    margin-left: 2rem;
    font-weight: 400;
}
.life-at-karjat {
    padding: 0 2.5rem;
    margin: 3rem auto;
    border-radius: 25px;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: url('/images/life-at-karjat.png') no-repeat center center;
    background-size: cover;
}
.why-karjat{
    margin: 3rem auto;
}
.why-karjat .headline{
    margin: 3rem 0;
}
.why-karjat .description {
    margin-bottom: 2rem;
}
.m3{margin: 3rem auto;}
.greencity-container{
    max-width: 90%;
    padding: 2rem 0;
}
.greencity-container .headline {
    line-height: 4rem;
    margin-bottom: 0rem;
}
.greencity-container .sub{font-size: 2rem; margin-bottom: 2.5rem;}
.greencity-container svg{
  width: 80px;
  height: 80px;
  margin-bottom: 3rem;
}
.greencity-container svg path {
    stroke: #fff;
}
#amenities .container{
    padding: 3rem;
    /* min-height: 70vh; */
    margin: 3rem auto;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 18px;
}
#amenities .headline{margin-bottom: 2rem;}
.text-center {
    text-align: center;
}
.contact-section {
    background: #285d43;
    padding: 3rem 0 2rem 0;
    border-radius: 18px;
    margin: 3rem 2vw 2rem 2vw;
    box-shadow: 0 2px 24px rgba(40,93,67,0.10);
}
.contact-container {
    display: flex;
    gap: 4rem;
    margin: 2rem auto;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(0, 0, 0, .3);
    padding: 3rem;
    border-radius: 18px;
}
.contact-form {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    min-width: 260px;
    justify-content: center;
}
.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #b2c8b2;
    color: #fff;
    font-size: 1.08rem;
    padding: 0.7em 0.2em;
    outline: none;
    transition: border 0.2s;
    font-family: inherit;
    resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #dbe7db;
    opacity: 1;
    font-weight: 400;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 2px solid #fa9f1b;
}
.contact-form textarea {
    min-height: 38px;
    max-height: 120px;
}
.submit-row {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-top: 0.5em;
}
.submit-btn {
    background: #fff;
    color: #285d43;
    border: none;
    border-radius: 2em;
    padding: 0.7em 2.2em;
    font-size: 1.08rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(40,93,67,0.07);
    position: relative;
    z-index: 1;
}
.submit-btn:hover {
    background: #fa9f1b;
    color: #fff;
}
.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fa9f1b;
    color: #fff;
    border-radius: 50%;
    width: 2.3em;
    height: 2.3em;
    font-size: 1.3em;
    margin-left: -0.7em;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px #fa9f1b44;
    border: none;
}
.submit-row:hover .arrow-btn,
.submit-btn:focus + .arrow-btn {
    background: #fff;
    color: #fa9f1b;
    transform: translateX(6px) scale(1.08);
}
.contact-info {
    flex: 1 1 340px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 260px;
    gap: 1.5em;
}
.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2em;
    line-height: 1.2;
}
.info-row {
    display: flex;
    gap: 2.5em;
    margin-bottom: 1.2em;
    flex-wrap: wrap;
}
.info-block {
    display: flex;
    align-items: flex-start;
    gap: 0.7em;
    min-width: 170px;
}
.icon {
    font-size: 1.5em;
    color: #fa9f1b;
    margin-top: 0.1em;
}
.info-main {
    font-size: 1.08em;
    font-weight: 500;
    color: #fff;
}
.info-main a {
    color: #fff;
    text-decoration: none;
    transition: color 0.8s;
}
.info-main a:hover {
    color: #fa9f1b;
}
.info-sub {
    font-size: 0.95em;
    color: #b2c8b2;
}
.social-row {
    display: flex;
    gap: 1.1em;
    margin-top: 1.2em;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 1.5em;
    background: rgba(255,255,255,0.07);
    color: #fff;
    font-size: 1.7em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: 1.5px solid rgba(255,255,255,0.08);
}
.social-icon:hover {
    background: #fa9f1b;
    color: #fff;
    box-shadow: 0 2px 8px #fa9f1b44;
}
.reveal {
  visibility: hidden;
  position: relative;
  opacity: 0 ;
  overflow: hidden; transform-origin: left;
}
.grid{display: grid;place-items: center;grid-template-columns: repeat(3,1fr);gap: 40px;grid-auto-rows: 1fr;margin-top: 40px;}
.grid.three img{width: 100%;object-fit: cover;border-radius: 18px;}
.grid div img{margin-bottom: 30px;width: 100%;height: 500px;object-fit: cover;}
.grid p{padding: 10px 15px; font-size: 20px;}
.grid div{box-shadow: 0 2px 3px rgba(0, 0, 0, .5);height: 100%;}
/* earth amenities */
.card-overlay {
    width: 80%;
    position: absolute;
    bottom: 10px;
    padding: 0 5px;
}
/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-btn.prev {
  left: -10px;
}

.nav-btn.next {
  right: -10px;
}
.two-col{
  grid-template-columns: .5fr 1fr;
  gap: 20px;
  display: grid;
  width: 90%
}
/* MOBILE STYLES */
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .card {
    width: 80vw;
    height: 300px;
    transition: none;
  }

  .card:hover {
    width: 80vw; /* no width increase on mobile */
  }

  .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 1;
    pointer-events: none;
  }
}

/* amenities end */
#carousel-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 1000px; */
  margin: 2rem auto;
  overflow: hidden;
  perspective: 1200px;
}

#slider {
  height: 600px;
  position: relative;
  transform-style: preserve-3d;
}

.slide {
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.5s ease, z-index 0.5s;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  transform: translateX(-50%) translateZ(0);
  opacity: 1;
  z-index: 5;
}

.slide.prev {
  transform: translateX(-80%) translateZ(-150px);
  opacity: 0.7;
  z-index: 3;
}

.slide.next {
  transform: translateX(-20%) translateZ(-150px);
  opacity: 0.7;
  z-index: 3;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 32px;
  padding: 8px 16px;
  cursor: pointer;
}
.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

@media (max-width: 768px) {
  .slide {
    width: 90%;
  }
}

@media screen and (max-width: 1366px) {
    .headline {
        font-size: 3.1em;
    }
    
}
@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .grid.three{ grid-template-columns: repeat(2,1fr); gap: 0; }
    .navbar-links, .navbar-contact {
        display: none;
    }
    .navbar-toggle {
        display: flex;
    }
    .two-columns {
        flex-direction: column !important;
    }
    .container .left-column,.container  .right-column, .container.left-image .left-column, .container.left-image .right-column{width: 100%;}
    .container .left-column img, .container .right-column img{border-radius: 18px;}
    .headline{
        font-size: 2rem;
        line-height: 2rem;margin: 1rem 0;
    }
    .description{font-size: 1.3rem;;}
    .contact-container .two-columns{margin: 0}
    .contact-container .headline {
        font-size: 1.8rem;
    }
    #slider{
        height: 400px;
    }
    /* .impact-wrapper{width: 90%;} */

    .greencity-container .headline{line-height: 2rem;}
   
          .contact-section {
            margin: 2rem 0.5vw 1.5rem 0.5vw;
            padding: 2rem 0 1.5rem 0;
          }
          .contact-info h2 {
            font-size: 1.3rem;
          }
          .info-row {
            gap: 1.2em;
          }
          .container.right-image, .container.left-image {margin: auto;}
          .social-row {
            margin-top: 0.7em;
            justify-content: center;
          }
          #amenities .container{padding: 2rem 1.5rem;}
          #gated-community .headline {margin: 2rem 0 0;}
          .two-columns{gap: 1rem;}
          .no-headline {margin: 0rem 0 2rem;}
          #gated-community{margin: 0;}
          .container{padding: .5rem 0;}
            .contact-container {
            flex-direction: column;
            gap: 2.5rem;
            padding: 2rem 1.5rem;
          }
}
/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fafafa;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 100;
    padding-bottom: 1.5em;
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    padding: 1em 2em;
    text-decoration: none;
    color: #183e2c;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}
.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu .mobile-contact {
    margin: 1em 2em 0 2em;
}
.mobile-menu .mobile-contact button {
    width: 100%;
    background: #f9a825;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 0.8em 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}
/* slider css */
.swiper {
width: 100%;
/* max-width: 1000px; */
position: relative;
padding: 0 3rem; /* space for arrows on both sides */
margin: 3rem 0;
}

.swiper-slide {
display: flex;
justify-content: center;
align-items: center;
}
.amwrap{width: 100%;}
.swiper-slide{
  width: 80% !important;
  transition: width 0.4s ease;
}
.swiper-slide img {
  width: 100%;
  opacity: 01;
  height: 500px; /* Fixed height */
  border-radius: 20px;
  object-fit: cover; /* Ensures the image fills the container neatly */
  transition: transform 0.4s ease;
}
.swiper-slide img.fade-in {
  opacity: 1;
}
.swiper-slide img:hover {
transform: scale(1.03);
}

/* Arrows on desktop only */
.swiper-button-next,
.swiper-button-prev {
  color: var(--orange_color);
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%) scale(.5);
  z-index: 10;
  display: none;
}
.swiper-button-prev {
  left: -10px;
}

.swiper-button-next {
  right: -10px;
}

@media (min-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: block;
    }
    
}
/* forms */
 .error-message {
            display: none;
            background: #e74c3c;
            color: white;
            text-align: center;
            padding: 15px;
            border-radius: 6px;
            margin-top: 20px;
        }
        
        .loading {
            display: none;
            text-align: center;
            margin-top: 20px;
        }
        
        .loading-spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #3498db;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }