@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

@font-face {
  font-family: 'Chronicle Display';
  src: url('Assets/fonts/Chronicle-Display-Semibold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.open-sans-body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

html {
  scroll-behavior: smooth;
  /* enables smooth scroll */
  scroll-padding-top: 80px;
  /* adjust to your navbar height */
}

body {
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif !important;
}


h1,
h3,
h4,
h5,
h6 {
  font-family: 'Chronicle Display, serif';
}

h2 {
  font-family: "Abril Fatface" !important;
}


/* Logo image */
.navbar-brand img {
  height: 70px;
  /* adjust size as needed */
}

/* Rounded white nav container */
.nav-container {
  background: white;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  /* font-family: sans-serif; */
}

p.btn.btn-contactt.w-100.w-lg-auto.d-none.d-lg-flex.align-items-center.justify-content-center {
  background: white !important;
  border-radius: 20px !important;
  margin-top: 6px !important;
  text-decoration: none;
  float: left;
}

.nav-container .nav-link {
  color: black;
  font-size: 1rem;
  margin: 0 0.7rem;
}

.nav-container .nav-link.active {
  font-weight: bold;
}

a.btn.btn-contactt.w-100.w-lg-auto.d-flex.align-items-center.justify-content-center {
  background: #F9B200;
  color: #204449;
  font-weight: 400;
  border-radius: 61px;
  padding: 0px 0px;
  border: none;
  margin-left: 0rem;
  margin-right: 0px;
}

p.btn.btn-contactt.w-100.w-lg-auto.d-flex.align-items-center.justify-content-center {

  margin-top: 12px;
}


.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  /* or transparent if you want */
}

.navbar-toggler {
  color: white;
  background-color: white !important;
  margin-left: 100px;
}



/* Contact button */
.btn-contact {
  background: #F9B200;
  color: #204449;
  font-weight: 400;
  border-radius: 50px;
  padding: 15px;
  border: none;
  margin-left: 1rem;
  margin: 10px 10px;
  /* font-family: sans-serif; */

}

.btn-contact:hover {
  background: #bd8812;
  color: white;
}


@media (max-width: 991px) {
  .btn-contact {
    width: 100%;
    /* full width button on mobile */
    max-width: 250px;
    /* optional limit */
    margin: 10px auto;
    display: block;
  }

  .navbar {
    position: fixed;
  }



}


@media (max-width: 768px) {
  .btn-contact {
    display: none !important;
  }
}




/* Section styling */
/* section {
  height: 100vh;
  padding: 60px 20px;
} */

/* #home {
  background: #cce0f0;
} */

#amenities {
  background: #dff5d5;
}

#plans {
  background: #ffeccc;
}

#about {
  background: #f5d5f0;
}

#location {
  background: #e0e0e0;
}




------------------------------------

/* Parallax background */
.parallax {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.parallax img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 120%; */
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.2s linear;
  z-index: 1;
}

/* Foreground content */
.parallax .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 15px;
}

.reveal-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background: transparent;
  border-radius: 20px;
  padding: 2rem;
  /* max-width: 900px; */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal-box.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text {
  flex: 1;
  padding: 1rem;
}

.reveal-image {
  flex: 1;
  padding: 1rem;
}

.reveal-image img {
  max-width: 100%;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .reveal-box {
    flex-direction: column;
  }
}

.reveal-text {
  padding-bottom: 183px;
}


.hero-heading {
  color: white;
}

.hero-subtext {
  color: white;
}

/*----------- know more button-------------*/

.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 400;
  color: #204449;
  background-color: #ffb800;
  /* Yellow-orange */
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  /* font-family: sans-serif; */
}

.btn-custom:hover {
  background-color: #bd8812;
  transform: scale(1.05);
  color: white;
}

.btn-custom:active {
  transform: scale(0.98);
}

@media (max-width: 600px) {
  .btn-custom {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .parallax img.bg {
    content: url('Assets/Hero-ban-mob-home.png');
    height: 100vh;
  }
}


/* --------------------------parallax mobile---------------------*/



/* Responsive tweaks for tablets and mobiles */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 24px !important;
    line-height: 1.2 !important;
    text-align: center;
  }

  .hero-subtext {
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    color: white;
  }

  .parkside-logo {
    height: 30px;
    max-width: 80px;
  }

  .reveal-box {
    padding: 1rem;
    transform: translateY(30px);
  }

  .reveal-box.show {
    transform: translateY(0);
  }

  .reveal-text {
    padding-bottom: 0px;
  }

  .btn-custom {
    padding: 10px 20px;
    font-size: 14px;
  }

  .parallax {
    height: 70vh;
  }

  .parallax img.bg {
    object-fit: cover;
    height: 100%;
  }
}

/* Even smaller devices - phones */
@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .hero-subtext {
    font-size: 18px;
  }

  .parkside-logo {
    height: 24px;
    max-width: 120px;
  }

  .btn-custom {
    font-size: 13px;
    padding: 8px 18px;
  }

  .reveal-box {
    padding: 0.8rem;
  }

  .reveal-text {
    padding: 0.5rem;
    padding-bottom: 0px;
  }


  /*----------*/

  @media (max-width: 600px) {
    .hero-heading {
      font-size: 1.5rem;
      line-height: 1.4;
      text-align: center;
    }

    .hero-heading .d-block {
      display: block;
      font-size: 1.6rem;
      font-weight: 400;
      /* margin-bottom: 0.5rem; */
    }

    .hero-heading .d-flex {
      display: flex !important;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
      font-size: 1.6rem;
      font-weight: 400;
      white-space: nowrap;
    }

    .parkside-logo {
      height: 28px;
      width: 35px;
      margin-left: 6px;
      vertical-align: middle;
    }
  }



  /* Optional: use a portrait-specific background on mobile */


  .parallax img.bg {
    content: url('Assets/Hero-ban-mob-home.png');
  }
}




/*------ Body-------*/


.hero-heading {
  font-size: 3.2rem;
  line-height: 1.3;
  font-family: 'Chronicle Display', serif;
  font-weight: 400;

}

.hero-subtext {
  font-size: 18px;
  color: white;
  /* font-family: sans-serif; */
}

.parkside-logo {
  max-height: 55px;
  /* smaller than text */
  width: auto;
  vertical-align: middle;
  padding-bottom: 8px;
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 1.8rem;
    font-family: 'Chronicle Display', serif;

    .parkside-logo {
      max-height: 35px;
    }
  }
}


/* text mask */


.text-mask-container {
  height: 100vh;
}

.text-mask {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Abril Fatface" !important;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}

.text-mask-body {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.mask {
  height: 100vh;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  mix-blend-mode: screen;
  background-color: #FCF8EA;
  z-index: 5;

  h2 {
    font-size: 65px;
  }
}


.text-mask-img {
  position: absolute;
  z-index: 0;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
  /* opacity: 0.7; */
}

/* .three-dimen-mob h3{
  font-family: 'Chronicle Display', serif;
  font-weight: 400 !important;
  font-size: 24px;
}

.three-dimen-mob{
  padding-top: 40px;
} */


/*------------------ Scroll Section-------------*/


body {
  margin: 0;
  font-family: 'Chronicle Display', serif;
  background: #f5f5f5;
  overflow-x: hidden;
}

.section {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  padding: 40px;
  transition: all 0.5s ease-in-out;
}

/* .section {
  background-image: url("background\ image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

/* Left Side: Header + Progress Nav */
.left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 30px;
}

.left h1 {
  font-size: 32px;
  color: #204449;
  margin-bottom: 40px;
  line-height: 1.3;
  font-weight: 400;
  font-family: 'Chronicle Display', serif;

}

.progress-nav {
  display: flex;
  flex-direction: column;
  border-left: 3px solid #ddd;
  padding-left: 20px;
}

.progress-nav button {
  background: none;
  border: none;
  font-size: 20px;
  margin: 15px 0;
  cursor: pointer;
  color: #444;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.progress-nav button.active {
  color: #a36b36;
  font-weight: bold;
  position: relative;
}

.progress-nav button.active::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 3px;
  background: #a36b36;
}

/* Right Side: Text + Image */
.content {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.text p {
  font-size: 20px;
  color: #4B4B4B;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 400;
}

.image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  padding-left: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }

  .left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .left h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .progress-nav {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    border-left: none;
    border-top: 3px solid #ddd;
    padding-top: 15px;
  }

  .progress-nav button.active::before {
    display: none;
  }

  .content {
    flex-direction: column;
    text-align: center;
  }

}


/*-------------- scroll cards-----*/

.hero-slider {
  height: 100vh;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slider {
  height: 100vh;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-content.no-effect [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  text-align: center;
}

body {
  margin: 0;
  font-family: 'Chronicle Display', serif;
  background-color: #fef8f5;
  line-height: 1.6;
  overflow-x: hidden;
}

.nnnn {
  display: flex;
  justify-content: space-around;
  padding: 80px 0%;
  gap: 00px;
  align-items: center;
  height: auto;
  /* min-height: 100vh; */
  /* overflow-x: hidden; */
}


@media (max-width: 768px) {
  .nnnn {
    display: flex;
    justify-content: space-around;
    padding: 30px 5%;
    gap: 0px;
    align-items: center;
    height: auto;
    /* min-height: 100vh; */
    /* overflow-x: hidden; */
  }


}





/* Left side */
.left-content {
  max-width: 450px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  flex: 1;
  color: #204449;
}

.left-content h1 {
  font-size: 34px;
  font-weight: 400;
  margin: 20px 0;
  line-height: 1.2;
  font-family: 'Chronicle Display', serif;
}


.At-parkside-p {
  /* letter-spacing: 1px; */
  color: #4B4B4B;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}


@media (max-width: 768px) {
  .left-content p {
    font-size: 14px;
  }
}



@media (max-width: 768px) {
  .left-content h1 {
    font-size: 24px;
  }
}

.left-content button {
  padding: 12px 30px;
  border: 2px solid #b38b3e;
  border-radius: 50px;
  background: #F9B200;
  color: #204449;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
  /* font-family: sans-serif; */
}

.left-content button:hover {
  background: #bd8812;
  color: #fff;
}



/* Testimonials container */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex: 2;
}

/* Right side image card */
.right-content {
  /* background: #fff; */
  padding: 0;
  border-radius: 10px;
  /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); */
  max-width: 750px;
  overflow: hidden;
  opacity: 0;
  /* hidden initially */
  transform: translateX(200px);
  /* off screen */
}

.right-content img {
  width: 100%;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
}

.quote-icon {
  font-size: 60px;
  color: #b38b3e;
  line-height: 0.7;
}




/* 📱 Responsive for tablets & mobiles */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  section {
    flex-direction: column;
    /* stack vertically */
    /* padding: 40px 20px; */
    overflow-x: hidden;
  }

  .left-content {
    position: static;
    /* remove sticky on small screens */
    max-width: 100%;
    margin-bottom: 30px;
  }

  .left-content h2 {
    font-size: 28px;
  }

  .testimonials {
    gap: 30px !important;
  }

  .right-content {
    max-width: 100%;

    align-items: center;
  }

  .counter-box h2 {
    font-weight: 700;
    color: #9c7a3e;
    /* gold-like color */
    font-size: 20px;
  }
}

/*---------------  icons ---------------*/
#banner-image {
  max-width: 100%;
}

@media (max-width: 768px) {
  #banner-image {
    max-width: 100%;
  }
}

#icon-header {
  font-family: 'Chronicle Display', serif;
  font-weight: 400;
  font-size: 34px;
  color: #204449;
  line-height: 1.2;
}


#icon-para {
  /* font-family: sans-serif; */
  font-size: 18px;
  font-weight: 400;
  color: #4B4B4B;
  line-height: 1.2;
}


@media (max-width: 768px) {
  #icon-header {
    font-size: 24px;

  }
}


.icon-desc {
  /* font-family: sans-serif; */
  font-weight: 400;
}

/*------- video -------*/
/* .spacer {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.video-section {
  position: relative;
  height: 100vh;
  background: #fffefe;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clipped-image {
  position: relative;
  width: 100vw;
  height: 100vh;
  left: -12px !important;
  clip-path: circle(15% at 50% 50%);
  overflow: hidden;
}

.clipped-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/*------------- maps -----------*/

/*------------- maps -----------*/

@media(min-width:1280px) {
  .where-tranq {
    padding-bottom: 90px;
  }
}

.where-tranq {
  padding-bottom: 90px;
}

#map-header {
  font-family: 'Chronicle Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: #204449;
  line-height: 1.2;
}

#map-para {
  /* font-family: sans-serif; */
  font-weight: 400;
  color: #4B4B4B;
  font-size: 18px;
  width: 70%;
  line-height: 1.2;
}

@media(max-width:490px) {
  #map-para {
    width: 100%;
  }
}


@media (max-width: 768px) {
  #map-header {
    font-size: 24px;
    font-family: 'Chronicle Display', serif;
  }
}


#map-bg {
  background-color: #AB904C;
}

.rounded-pill {
  background-color: #f4b000;
  color: #204449;
  /* font-family: sans-serif; */
}

.rounded-pill:hover {
  background-color: #bd8812;
  color: white;
}

.map-section {
  padding-bottom: 50px;
}

/*-------------- Form -------------*/

body {
  background-color: #f9f8f2;
  /* beige tone */
  font-family: 'Chronicle Display', serif;
}

.form-section {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.hero-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: 400;
  font-family: 'Chronicle Display', serif;
  color: #23423c;
}


@media (max-width: 768px) {
  #hero-title-text {
    font-size: 24px;
    font-family: 'Chronicle Display', serif;
    color: #204449;
  }
}

.btn-custom01 {
  background-color: #f4b000;
  color: #fff;
  font-weight: 400;
  width: 100%;
  /* font-family: sans-serif; */
}

.btn-custom01:hover {
  background-color: #bd8812;
  color: white;
}

.img-wrapper img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}




@media (max-width: 768px) {
  .map-vertical-bar {
    display: none;
  }
}


@media (max-width: 768px) {
  .map-01 {
    padding-top: 20px;

  }
}



/* Footer */

footer {
  background-color: #204449;
  color: #FFFFFF80 50%;
  padding: 40px 0;
}

.footer-nav li {
  display: flex;
  align-items: center;
  margin: 0 15px;
}

.footer-nav .divider {
  width: 1px;
  height: 18px;
  background: #aaa;
  margin-left: 15px;
  color: white !important;
}

#footer-para {
  /* font-family: sans-serif; */
  font-size: 16px;
}

@media (max-width: 768px) {
  #footer-para {
    /* font-family: sans-serif; */
    font-size: 13px;
  }
}


.footer-cont li {
  /* font-family: sans-serif; */
  color: white !important;
}


clipped-image {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

clipped-image video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
} */



/* Scroll to zoom in image */


.mask h2 {
  font-family: "Chronicle Display", serif;
}



/* carousel inside-outside-parkside */
/* 
.dubai-project-section {
  background-image: url('Assets/Images_V1/3.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
  color: white;
  transition: background-image 0.4s ease-in-out;
  padding: 80px 0;
}

.dubai-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.dubai-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.dubai-project-title {
  font-size: 2.8rem;
  font-weight: 600;
}

.dubai-project-desc {
  font-size: 18px;
  color: #eee;
  line-height: 1.2;
}

.dubai-thumbs {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.dubai-thumbs img {
  width: 190px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.3s ease;
}

.dubai-thumbs img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Responsive */


/* @media (max-width: 992px) {
  .dubai-project-section {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .dubai-project-section {
    min-height: auto;
    padding: 80px 20px;
    text-align: left;
  }

  .dubai-project-title {
    font-size: 1.9rem;
  }

  .dubai-thumbs {
    justify-content: center;
    margin-top: 40px;
  }

  .dubai-thumbs img {
    width: 120px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .dubai-project-title {
    font-size: 1.6rem;
  }

  .dubai-project-desc {
    font-size: 0.9rem;
  }

  .dubai-thumbs img {
    width: 100px;
    height: 80px;
  }
}  */

@media (max-width: 991px) {

  #home,
  .parallax {
    overflow-x: hidden !important;
    width: 100vw;
    max-width: 100vw;
    position: relative;
  }

  .parallax img.bg {
    left: 50%;
    transform: translateX(-50%) scale(1) !important;
    width: 100vw !important;
    max-width: none !important;
  }
}

@media (max-width: 600px) {
  .mask {

    h2 {
      font-size: 38px;
      overflow-x: visible;
    }
  }
}


/* test */


.image-box {
  position: relative;
  width: 100%;
  max-width: 737px;
  overflow: hidden;
  border-radius: 10px;
}

.image-box img {
  width: 100%;
  height: 100vh;
  display: block;
  border-radius: 10px;
}

.text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 30px 20px 25px;
}


.text-overlay h3 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 10px;
  font-family: 'Chronicle Display', serif;
  padding-right: 70px;
}

@media (max-width: 600px) {
  .text-overlay h3 {
    font-size: 24px;
    margin: 0px;
    padding-right: 37px;
  }



  .text-overlay p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
    margin: 0;
    /* padding-right: 120px; */
  }


  /* Default: show the break on desktop */
  .br-desk {
    display: block;
  }
}

/* Hide the break on mobile screens */
@media (max-width: 768px) {
  .br-desk {
    display: none;
  }
}




/* space-aft-video */
@media (max-width: 768px) {
  .space-aft-video {
    display: none;
  }
}




/* Sticky Contact Button - visible only on mobile */
.sticky-contact-btn {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F9B200;
  color: black;
  padding: 12px 28px;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  width: 100%;
  text-align: center;
}

.sticky-contact-btn:hover {
  background-color: #b08456;
  color: #fff;
}

/* Hide on larger screens */
@media (min-width: 992px) {
  .sticky-contact-btn {
    display: none;
  }
}


/* india cards */


.energy-living-container {
  display: flex;
  min-height: 100vh;
}

.energy-living-feature {
  position: relative;
  padding-left: 2rem;
}

.energy-living-feature-number {
  position: absolute;
  top: -95px;
  left: -20px;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(0, 128, 0, 0.1);
  z-index: 0;
  pointer-events: none;
}

.energy-living-feature-content {
  position: relative;
  z-index: 1;
}

.energy-living-feature-content h3 {
  font-family: 'Chronicle Display';
  font-size: 34px;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.energy-living-feature-content p {
  font-size: 18px;
  color: #4B4B4B;
  line-height: 1.2;
  font-weight: 400;
}

/* Left image panel (desktop only) */
.energy-living-left {
  position: sticky;
  top: 0;
  width: 70%;
  height: 100vh;
  overflow: hidden;
}

.energy-living-image-panel {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
}

/* Right content */
.energy-living-right {
  width: 50%;
}

.energy-living-section {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 3rem;
  flex-direction: column;
  justify-content: center;
}

.energy-living-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.energy-living-section p {
  font-size: 1rem;
  line-height: 1.2;
  max-width: 400px;
  margin-top: 40px;
}

/* MOBILE STACK MODE */
@media (max-width: 768px) {
  .energy-living-container {
    flex-direction: column;
  }

  .energy-living-feature-number {
    font-size: 5rem;
    top: -50px;
    left: -10px;
  }

  .energy-living-left {
    display: none;
  }

  .energy-living-right {
    width: 100%;
  }

  .energy-living-section {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    margin: 1rem;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(40px);
  }

  .energy-living-mobile-img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
  }
}


.reveal-text-overlay {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  color: #ffffff;
  padding-top: 200px;
  font-weight: 800 !important;

  h1 {
    font-family: 'Chronicle Display';
    font-size: 40px;
    font-weight: 400;
  }
}


@media (max-width: 768px) {
  .reveal-text-overlay {
    width: 90%;
    /* top: 55%; */
  }

  .reveal-text-overlay h1 {
    display: block;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 400;
  }
}


/* footer nav */

.footer-icons {
  justify-content: center;
}

#footer-text {
  color: white;
}


/* NAVBAR HAMBURGER MENU */

/* @media (min-width: 992px) {
  .navbar-toggler {
    display: block !important;
  }

  .navbar-collapse {
    position: absolute;
    top: 85px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
} */


/* @media (min-width: 992px) {
  .nav-container {
    display: none !important;
  }
} */


/* .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280,0,0,0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
} */