/* === Base === */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
    color: #29313c;
    box-sizing: border-box;
}
p{
  font-family: "Jost", sans-serif;
  color: #666;
}
    /* Preloader styling */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ffffff; /* or your site’s main color */
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    #preloader img {
      width: 200px;
      height: auto;
      animation: fade 1.5s infinite ease-in-out;
    }

    @keyframes fade {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 1; }
    }
/* Top Header */
.top-header {
  background-color: #242B33;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 80px;
  font-size: 14px;
}

.top-header a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  font-family: "Jost", sans-serif;
}

.top-header a i {
  margin-right: 6px;
  font-size: 14px;
}

.top-right a {
  margin-left: 0px;
  transition: color 0.3s;
}

.top-right a:hover {
  color: #c2ffb3;
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999; /* Ensures it stays above page content */
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 60px;
}

.nav-left,
.nav-right {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #24442a;
}

/* Logo */
.logo img {
  height: 100px;
  width: auto;
  display: block;
  margin: 0 60px;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-container {
    flex-direction: column;
  }
  .logo img {
    margin: 20px 0;
  }
  .top-header {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
}
/* ===== Footer Styles ===== */
.footer-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 480px;
  font-family: "Jost", sans-serif;
}
.footer-bg-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  min-height: 480px;
}
.footer-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  /* background: rgba(0, 0, 0, 0.45); */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 50px 24px;
  color: #fff;
  z-index: 3;
}
@media (min-width: 1800px) {
.footer-content {
  padding: 40px 24px 52px 24px;
}
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-contact {
  display: flex;
  flex-direction: column;
}
.footer-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}
.footer-main {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  /* margin-bottom: 32px; */
  flex-wrap: wrap;
  background: #ffffffc7;
  padding: 13px;
  border-radius: 18px 18px 0 0;
}
.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
  margin-bottom: 18px;
}
.footer-brand {
  flex: 1 1 320px;
  min-width: 260px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-logo {
  width: 165px;
  height: 149px;
  object-fit: contain;
}
.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.footer-dot {
  color: #2d3540;
  font-size: 2rem;
  font-weight: 900;
}
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #100f0f;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul a{
  text-decoration: none;
}
.footer-col ul li {
  color: #100f0f;
  font-size: 1rem;
  margin-bottom: 8px;
  opacity: 0.92;
}
.footer-brand p {
  color: #100f0f;
  font-size: 1rem;
  margin-bottom: 18px;
  opacity: 0.92;
}
.footer-social-icons {
  margin-top: 10px;
}
.footer-social-icons a {
  color: #100f0f;
  font-size: 1.3rem;
  margin-right: 16px;
  transition: color 0.2s;
}
.footer-social-icons a:hover {
  color: #A3802E;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2d3540;
  color: #fff;
  padding: 12px 32px;
  border-radius: 0 0 8px 8px;
  font-size: 1rem;
  font-weight: 500;
  /* margin-top: 18px; */
}
.footer-theme {
  letter-spacing: 2px;
}
.footer-copyright {
  font-size: 1rem;
}
@media (max-width: 900px) {
  .footer-content {
    padding: 30px 8px 0 8px;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding: 10px 8px;
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .footer-video-wrapper{
    min-height: 1283px;
  }
  .footer-brand {
    flex: 1 1 100% !important;
  }
  .footer-title {
    font-size: 1.5rem;
  }
  .footer-main {
    gap: 0px;
  }
  .footer-col, .footer-brand {
    min-width: 120px;
    font-size: 0.95rem;
  }
  .footer-bottom {
    font-size: 0.85rem;
    padding: 8px 22px;
  }
}
.footer-copyright a{
  color: rgb(255, 255, 255);
  text-decoration: none;
}
/* Floting icon */
.footer-social {
  position: fixed;
  top: 66%;
  right: 0; /* Move to the right side */
  z-index: 3;
}

.footer-social ul {
  list-style-type: none;
  padding: 0;
  transform: translateX(270px); /* Push out of view to the right */
}

.footer-social ul li {
  display: block;
  margin: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 300px;
  text-align: left;
  padding: 4px;
  border-radius: 30px 0 0 30px;
  transition: all 1s;
}

.footer-social ul li:hover {
  transform: translateX(-110px); /* Slide into view from right */
}

.footer-social ul li.whatsapp:hover {
  background-color: #4caf50;
}

.footer-social ul li.phone-alt:hover {
  background-color: #2196f3;
}

.footer-social ul li.mail-us:hover {
  background-color: #b90000;
}
.footer-social ul li.justdial:hover {
  background-color: #ff6f00; /* Optional: Justdial orange or your choice */
}

.footer-social ul li .icon-img {
  width: 20px;
  height: 20px;
  border-radius: 21px;
  background-color: white;
  padding: 8px;
  margin-right: 14px;
  vertical-align: middle;
  transition: transform 1s;
}

.footer-social ul li:hover .icon-img {
  transform: rotate(360deg);
}

.footer-social ul li a {
  color: white;
  text-decoration: none;
}

.footer-social ul li i {
  text-align: center;
  margin-right: 14px; /* icon on the left now */
  margin-left: 0;
  /* color: black; */
  background-color: white;
  padding: 10px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 20px;
  transform: rotate(0deg);
}

.footer-social ul li:hover i {
  transform: rotate(360deg);
  transition: all 1s;
}

/* Floting icon */
/* --- End Custom Video Footer Styles --- */

/* ===== Banner Slider ===== */
.banner-slider {
  position: relative;
  width: 100%;
  height: 500px; /* ← changed from 100vh */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%; /* keeps each slide same height as banner */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
/* VIDEO styling */
.slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Makes video behave like background-size: cover */
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* ===== Banner Content ===== */
.banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 550px;
  /* background: #0F4D40; */
  color: #fff;
  padding: 20px 40px;
  /* border-left: 6px solid #f0ef7c; */
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.banner-content.left { left: 6%; }
.banner-content.right { right: 6%; }

.banner-content h2 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
}

.banner-content .highlight {
  background-color: #f0ef7c;
  color: #0b3d0b;
  padding: 2px 6px;
  border-radius: 2px;
}

.tagline {
  font-size: 23px;
  font-style: italic;
  margin-top: 20px;
  color: #fff;
  font-family: 'Cursive';
}

.status {
  font-size: 23px;
  font-style: italic;
  margin-top: 20px;
  color: #fff;
  font-family: 'Cursive';
}

/* ===== Buttons ===== */
.brochure-btn, .book-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #A3802E;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  transition: 0.3s;
}

.brochure-btn:hover, .book-btn:hover {
  background-color: #fff;
  color: #242B33;
}

/* ===== Dots Navigation ===== */
.dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dot {
  height: 14px;
  width: 14px;
  margin: 0 6px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.4s;
}

.dot.active,
.dot:hover {
  background-color: #C2B687;
  transform: scale(1.2);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .banner-content {
    max-width: 90%;
    padding: 25px;
  }
  .banner-content h2 {
    font-size: 24px;
  }
  .tagline {
    font-size: 16px;
  }
}

.about-forest {
  position: relative;
  background-color: #ffffff;
  text-align: center;
  padding: 22px 20px 57px;
  overflow: hidden;
  font-family: 'Georgia', serif;
  color: #222;
}

/* Flying bird sprite */
.bird {
  position: absolute;
  top: 100px;
  left: -120px;
  width: 88px;
  height: 125px;
  background: url("https://forestnation.in/images/bird-cells-new.svg") no-repeat;
  background-size: 900px 125px; /* 10 frames side by side */
  animation:
    flyAcross 12s linear infinite,
    flap 1s steps(10) infinite;
}

/* Curved flight motion */
@keyframes flyAcross {
  0% {
    transform: translate(-150px, 0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    transform: translate(20vw, -30px);
  }
  40% {
    transform: translate(40vw, -10px);
  }
  60% {
    transform: translate(60vw, -40px);
  }
  80% {
    transform: translate(80vw, -15px);
  }
  95% {
    opacity: 1;
    transform: translate(100vw, -50px);
  }
  100% {
    opacity: 0;
    transform: translate(calc(100vw + 200px), -60px);
  }
}

/* Wing flapping animation */
@keyframes flap {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -900px 0;
  }
}

.about-forest h2 {
  font-size: 42px;
  font-weight: 600;
  color: #A3802E;
  margin-bottom: 21px;
}

/* General Divider */
.divider {
  width: 40%;
  height: 2px;
  background-color: #0f4d40;
  margin: 0 auto 40px;
  display: block;
}

.about-divider {
  width: 40%;
  margin: 0 auto 24px;
}

.about-divider img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Divider for sections with sub-heading in left column */
.why-choose-left .divider,
.experience-left .divider {
  width: 60px;
  height: 2px;
  background-color: #72BF4F;
  margin: 0 0 25px 0;
  display: block;
}

/* Divider for full-width sections */
.development-journey-section .divider,
.amenities-section .divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #72BF4F 0%, #0F4D40 100%);
  margin: 0 auto 30px;
  display: block;
}

.about-forest p {
  max-width: 950px;
  margin: 0 auto 25px;
  line-height: 1.8;
  font-size: 17px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #ee7e1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.read-more:hover {
  border-color: #ee7e1a;
  transform: translateX(5px);
}

.arrow {
  transition: transform 0.3s ease;
}

.read-more:hover .arrow {
  transform: translateX(5px);
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
  position: relative;
  background-color: #ffffff;
  padding: 60px 80px;
  /* border-top: 2px solid #66B347; */
  border-bottom: 2px solid #A3802E;
}

.why-choose-us .container {
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Section */
.why-choose-left {
  padding-right: 40px;
}

.sub-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.green-line {
  width: 40px;
  height: 2px;
  background-color: #A3802E;
  display: block;
}

.sub-heading h3 {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #29313c;
  line-height: 1.3;
  margin-bottom: 30px;
}

.highlight-green {
  color: #66B347;
}

.intro-paragraph {
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}

.why-choose-image {
  margin-top: 35px;
  border: 1px solid rgba(102, 179, 71, 0.25);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 77, 64, 0.1);
}

.why-choose-image img {
  display: block;
  width: 100%;
  height: 582px;
  object-fit: cover;
}

/* Right Section - Feature Boxes */
.why-choose-right {
  padding-left: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.features-grid .feature-box:nth-child(5) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 360px;
  width: 100%;
}

.feature-box {
  border: 1px solid #A3802E;
  border-radius: 8px;
  padding: 25px;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.feature-box:hover {
  box-shadow: 0 4px 12px rgba(102, 179, 71, 0.15);
}

.feature-number {
  width: 50px;
  height: 50px;
  background-color: #A3802E;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #29313c;
  margin: 0 0 12px 0;
}

.feature-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-choose-us {
    padding: 50px 60px;
  }
  
  .why-choose-wrapper {
    gap: 50px;
  }
  
  .main-heading {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-choose-left {
    padding-right: 0;
  }
  
  .why-choose-right {
    padding-left: 0;
  }
  
  .main-heading {
    font-size: 28px;
  }
  
  .why-choose-image {
    margin-top: 30px;
  }
  
  .why-choose-image img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 40px 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .main-heading {
    font-size: 24px;
  }
  
  .intro-paragraph {
    font-size: 15px;
  }
  
  .features-grid .feature-box:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }
  
  .why-choose-image img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 30px 20px;
  }
  
  .main-heading {
    font-size: 20px;
  }
  
  .feature-box {
    padding: 20px;
  }
  
  .feature-number {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  .why-choose-image img {
    height: 200px;
  }
}

/* ===== Experience Life Section ===== */
.experience-life {
  background-color: #ffffff;
  padding: 70px 80px;
  border-bottom: 2px solid #A3802E;
}

.experience-life .container {
  max-width: 1400px;
  margin: 0 auto;
}

.experience-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}



.experience-title {
  font-size: 34px;
  line-height: 1.3;
  color: #29313c;
  margin: 10px 0 20px 0;
  font-weight: 700;
}

.experience-paragraph {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  margin: 0 0 26px 0;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-feature {
  display: grid;
  grid-template-columns: 56px auto;
  gap: 16px;
  padding: 18px;
  border: 1px solid #A3802E;
  border-radius: 10px;
  background: #fff;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));

}

.exp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #A3802E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.exp-content h4 {
  margin: 2px 0 6px 0;
  font-size: 18px;
  color: #29313c;
  font-weight: 700;
}

.exp-content p {
  font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}



.experience-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}
.experience-image video {
  display: block;
  width: 100%;
  height: 754px;
  object-fit: cover;
  border-radius: 22px;
}

@media (max-width: 1200px) {
  .experience-life {
    padding: 60px 60px;
  }
}

@media (max-width: 992px) {
  .experience-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .experience-image img {
    height: 420px;
  }
  
  .why-choose-left .divider,
  .experience-left .divider {
    margin: 0 auto 25px;
  }
  
  .development-journey-section .divider,
  .amenities-section .divider {
    width: 60px;
    margin: 0 auto 25px;
  }
}

@media (max-width: 768px) {
  .experience-life {
    padding: 40px 30px;
  }
  .experience-title {
    font-size: 26px;
  }
  .experience-image img {
    height: 360px;
  }
  
  .divider {
    width: 50px;
    margin-bottom: 20px;
  }
  
  .about-forest .divider {
    width: 30%;
  }
  
  .development-journey-section .divider,
  .amenities-section .divider {
    width: 50px;
    height: 2px;
    margin: 0 auto 20px;
  }
}

@media (max-width: 480px) {
  .experience-life {
    padding: 30px 20px;
  }
  .experience-image img {
    height: 300px;
  }
  
  .divider {
    width: 40px;
    margin-bottom: 15px;
  }
  
  .about-forest .divider {
    width: 25%;
  }
  
  .why-choose-left .divider,
  .experience-left .divider {
    width: 50px;
    margin: 0 auto 20px;
  }
  
  .development-journey-section .divider,
  .amenities-section .divider {
    width: 40px;
    margin: 0 auto 15px;
  }
}

/* ===== Our Development Journey Section ===== */
.section-space {
  padding-top: 80px;
  padding-bottom: 80px;
}

.development-journey-section {
  background-color: #ffffff;
  position: relative;
  padding: 80px;
  border-bottom: 2px solid #A3802E;
}

.development-journey-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section titles */
.section-title-area {
  margin-bottom: 50px;
}

.section-sub-title {
  text-transform: uppercase;
  position: relative;
  color: #4B4B4D;
  margin-bottom: 18px;
  font-size: 14px;
  padding-left: 75px;
  font-weight: 400;
  line-height: 17px;
  display: inline-block;
}

.section-sub-title::before {
  content: '';
  background: #72BF4F;
  width: 60px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 6px;
}

.section-sub-title::after {
  content: '';
  background: #275D4D;
  width: 60px;
  height: 1px;
  position: absolute;
  left: 3px;
  top: 9px;
}

.development-journey-section .section-title {
  font-weight: 600;
  font-size: 37px;
  line-height: 45px;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.development-journey-section .section-title span {
  color: #0F4D40;
}

.development-title {
  font-size: 34px;
  line-height: 1.3;
  color: #29313c;
  margin: 10px 0 20px 0;
  font-weight: 700;
}

.section-title-area p {
  color: #666;
  font-size: 17px;
  line-height: 1.8;
  max-width: 800px;
}

/* Project Section */
.project-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px;
  z-index: 1;
  margin-bottom: 60px;
}

.project-wrapper-item {
  position: sticky;
  top: 100px; /* controls overlap height */
  z-index: 1;
  background: #242B33;
  border: 1px solid #A3802E;
  padding: 40px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Give each card a higher z-index as it appears */
.project-wrapper-item:nth-child(1) { z-index: 3; }
.project-wrapper-item:nth-child(2) { z-index: 4; }
.project-wrapper-item:nth-child(3) { z-index: 5; }
.project-wrapper-item:nth-child(4) { z-index: 6; }
.project-wrapper-item:nth-child(5) { z-index: 7; }

.project-wrapper-img,
.project-wrapper-content {
  flex: 1;
}

.project-wrapper-img img {
  border-radius: 25px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.project-wrapper-content .section-title {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
  text-align: left;
  font-family: "Jost", sans-serif;
  color: #A3802E;;
}

.project-wrapper-content p {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}

/* Alternate layout for even cards */
.project-wrapper-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Call to Action Buttons */
.development-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn.view-layouts {
  background-color: #A3802E;
  color: #ffffff;
  border: 2px solid #A3802E;
}

.cta-btn.view-layouts:hover {
  background-color: #242B33;
  border-color: #242B33;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(114, 191, 79, 0.3);
}

.cta-btn.check-availability {
  background-color: transparent;
  color: #A3802E;
  border: 2px solid #A3802E;
}

.cta-btn.check-availability:hover {
  background-color: #C2B687;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(114, 191, 79, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
  .development-journey-section {
    padding: 60px;
  }
}

@media (max-width: 992px) {
  .development-journey-section {
    padding: 50px 40px;
  }

  .project-wrapper-item {
    flex-direction: column;
    text-align: center;
    top: 0;
    position: relative;
  }

  .project-wrapper-item:nth-child(even) {
    flex-direction: column;
  }

  .project-wrapper-content .section-title {
    text-align: center;
  }

  .development-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .section-space {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .development-journey-section {
    padding: 50px 30px;
  }

  .section-title-area {
    margin-bottom: 40px;
  }

  .section-sub-title {
    padding-left: 60px;
    font-size: 12px;
  }

  .section-sub-title::before,
  .section-sub-title::after {
    width: 45px;
  }

  .development-title {
    font-size: 26px;
  }

  .development-journey-section .section-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .project-wrapper {
    gap: 40px;
    margin-bottom: 40px;
  }

  .project-wrapper-item {
    padding: 30px 20px;
  }

  .project-wrapper-content .section-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .development-journey-section {
    padding: 40px 20px;
  }

  .section-sub-title {
    padding-left: 50px;
    font-size: 11px;
  }

  .section-sub-title::before,
  .section-sub-title::after {
    width: 35px;
  }

  .development-title {
    font-size: 22px;
  }

  .development-journey-section .section-title {
    font-size: 24px;
  }

  .project-wrapper-item {
    padding: 25px 15px;
  }

  .project-wrapper-content .section-title {
    font-size: 20px;
  }

  .cta-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
} 

.amenities-section {
  padding: 80px;
}

.amenities-section .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.text-column {
  flex: 1;
  min-width: 300px;
}

.view-all-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #A3802E;
  border-radius: 30px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background-color: #A3802E;
  color: #ffffff;
}

.slider-buttons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.slider-buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #A3802E;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-buttons button:hover:not(:disabled) {
  background-color: #A3802E;
  color: #fff;
}

.slider-buttons button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cards-column {
  flex: 2;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.cards-column::-webkit-scrollbar {
  display: none;
}

.amenity-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 280px;
  scroll-snap-align: start;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.amenity-card:hover {
  transform: translateY(-8px);
}

.amenity-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-text {
  padding: 15px 20px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  background: #242B33;
  color: #ffffff;
  margin-top: -5px;
  /* border-top: 1px solid #eee; */
}
.amenity-paragraph{
  text-align: center;
  padding: 0px 20px;
}

.distance-section {
  position: relative;
  height: 58vh; /* creates enough scroll space */
  background: #ffffff;
}

.scroll-area {
  position: sticky;
  top: 0;
  height: 43vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 222px;
  overflow: hidden;
}

.car {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 390px;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 2;
}

.road-line {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 1px;
  background: #242B33;
  z-index: 0;
  transform: translateY(-50%);
}

.location {
  position: relative;
  text-align: center;
  z-index: 1;
}

.location .dot {
  width: 18px;
  height: 18px;
  background: #A3802E;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.time {
  position: absolute;
  top: calc(50% - 100px); /* lifts timing text above line */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.time h2 {
  font-size: 60px;
  line-height: 1;
  color: #40422b;
  margin: 0;
}

.time h2 span {
  font-size: 18px;
  position: relative;
  top: -25px;
  left: 5px;
}

.time small {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-top: -26px;
  margin-left: 87px;
}

.location p {
  position: absolute;
  top: calc(50% + 40px); /* pushes text below line */
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #222;
  white-space: nowrap;
}
.enquire-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #2e7a70;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 10px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  font-size: 16px;
}
.blogs-section {
  padding: 0px 0 80px;
  border-bottom: 2px solid #66B347;
}

.blogs-section .container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.title-wrap{
  flex: 1 1 62%;
  min-width:280px;
}

.blogs-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:30px;
  margin-bottom:40px;
}

.section-subtitle{
  display:inline-block;
  font-size:14px;
  letter-spacing:1px;
  color:#6b6b6b;
  font-weight:600;
  margin-bottom:18px;
  position:relative;
  padding-left:48px;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  left: 0px;
  top:8px;
  width:36px;
  height:3px;
  background: #58b45e;
  transform: translateY(-50%);
}

.section-title{
  font-weight:700;
  font-size:64px;             /* large on desktop */
  line-height:1;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#111;
  margin:0;
  margin-top:6px;
}

.section-title span {
  color: #0f4d40;
}

.blogs-intro{
  flex: 0 0 33%;
  max-width:360px;
  color:#5b5b5b;
  font-size:15px;
  text-align:left;
  margin-top:46px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  color: #333333;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ee7e1a;
  color: #fff;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 25px 20px;
}

.blog-content .date {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.blog-content h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
}
.blog-link{
  text-decoration: none;
}
@media (max-width: 768px) {
  .blogs-header {
    flex-direction: column;
  }
  .section-title {
    font-size: 28px;
  }
}
.layout-section {
  padding: 60px 0;
  position: relative;
}

.layout-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.layout-image img {
  width: 100%;
  max-width: 1000px;
  border-radius: 4px;
  display: block;
}

.layout-content {
  max-width: 480px;
}

.layout-title {
  font-size: 34px;
  line-height: 1.3;
  color: #29313c;
  margin: 10px 0 20px 0;
  font-weight: 700;
}

.layout-text {
  color: #2f2f2f;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.layout-btn {
  display: inline-block;
  background-color: #A3802E;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.layout-btn:hover {
  background-color: #242B33;
}


@media (max-width: 992px) {
  .layout-container {
    flex-direction: column;
    text-align: center;
  }

  .layout-content {
    max-width: 100%;
  }

  .layout-image img {
    max-width: 100%;
  }
}


/* About us Page Start */

/* Wrapper gives the outer white space */
.page-banner-wrapper {
  padding: 30px 0; /* creates top & bottom space */
  background-color: #fff; /* ensures clean white frame */
}

/* Banner styling */
.page-banner {
  position: relative;
  width: 90%;
  margin: 0 auto; /* centers the banner */
  min-height: 450px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
/* Content box with blur effect */
.all-banner-content {
  /* background: rgba(255, 255, 255, 0.6); */
  /* backdrop-filter: blur(10px); */
  border-radius: 20px;
  padding: 50px;
  max-width: 500px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.all-banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.all-banner-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner-wrapper {
    padding: 40px 0;
  }

  .page-banner {
    width: 95%;
    min-height: 350px;
    padding: 40px 20px;
  }

  .all-banner-content {
    padding: 30px;
  }

  .all-banner-content h1 {
    font-size: 30px;
  }

  .all-banner-content p {
    font-size: 15px;
  }
}

.about-section {
  padding: 0px 8% 30px;
  background-color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

/* Left image block */
.about-images {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.about-images .img-left img,
.about-images .img-right img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* Image sizes */
.img-left {
  width: 250px;
}

.img-right {
  width: 250px;
  margin-top: 60px;
}

/* Right text content */
.about-content {
  flex: 1;
  max-width: 550px;
}

.about-content .tag {
  display: inline-block;
  background: #C2B687;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 25px;
  margin-top: 10px;
}

.about-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-container {
    flex-direction: column;
    gap: 50px;
  }

  .about-images {
    justify-content: center;
  }

  .img-left,
  .img-right {
    width: 45%;
    margin: 0;
  }

  .img-right {
    margin-top: 0;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-content p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .img-left,
  .img-right {
    width: 100%;
  }

  .about-content h2 {
    font-size: 30px;
  }
}
/* Section container */
.vision-mission-section {
  position: relative;
  padding: 120px 0 30px;
  overflow: hidden;
}

/* Background shapes (yellow + black) */
.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(237 227 99);
  /* background: linear-gradient(160deg, #ffcc00 50%, #1a1a1a 50%); */
  z-index: 0;
}

/* Flex container */
.vision-mission-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* gap: 50px; */
  flex-wrap: wrap;
  padding: 0 5%;
}

/* Boxes (Vision & Mission) */
.vision-box,
.mission-box {
  background: #fff;
  /* border-radius: 10px; */
  padding: 40px 30px;
  flex: 1 1 300px;
  max-width: 400px;
  height: 400px;
  text-align: left;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
}

.vision-box h3,
.mission-box h3 {
  color: #242B33;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.vision-box p,
.mission-box p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

/* Center image */
.center-image {
  flex: 0 0 auto;
  max-width: 320px;
  margin-top: -80px; /* overlap effect */
}

.center-image img {
  width: 100%;
  height: 562px;
  /* border-radius: 12px; */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .vision-mission-container {
    flex-direction: column;
    align-items: center;
  }

  .center-image {
    margin: 40px 0;
  }

  .vision-box,
  .mission-box {
    max-width: 500px;
    text-align: center;
  }
}
.samarth-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #ffffff;   /* same deep green like reference */
  padding: 0;
  width: 100%;
}

.samarth-left {
  width: 50%;
  padding: 40px 60px;
}

.samarth-right {
  width: 50%;
}

.samarth-right img {
  width: 100%;
  height: 518px;
  object-fit: cover;
  display: block;
}

.samarth-title {
  font-size: 40px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #242B33;
}

.samarth-text {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 18px;
}

/* Responsive */
@media(max-width: 900px) {
  .samarth-section {
      flex-direction: column;
  }
  .samarth-left, .samarth-right {
      width: 100%;
  }
  .samarth-left {
      padding: 50px 30px;
  }
}
.inspiration-section {
  /* background: #e7dfc2; */
  padding: 40px 0;
}

.inspiration-container {
  max-width: 1400px;
  height: 400px;
  margin: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.inspiration-left {
  background: #242B33; /* dark greenish black */
  color: #fff;
  width: 55%;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px 0px 0px 10px;
}

.inspiration-section-title {
  font-size: 40px;
  margin: 20px 0;
  font-weight: 600;
}

.inspiration-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #ffffff;
}

.inspiration-right {
  width: 45%;
}

.inspiration-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(200%) brightness(90%);
  border-radius: 0px 10px 10px 0px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .inspiration-container {
      flex-direction: column;
  }

  .inspiration-left,
  .inspiration-right {
      width: 100%;
  }

  .inspiration-left {
      padding: 50px 30px;
  }
}





/* Basic Section Layout */
.contact-section {
  /* background-color: #f7f8fa; */
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  max-width: 1200px;
  gap: 60px;
}

/* Circular Map */
.contact-map {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form Area */
.contact-form-area {
  flex: 1;
}

.contact-form-area h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
  font-family: 'Playfair Display', serif;
}

.contact-form-area p {
  color: #777;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 90%;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
}

textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  resize: none;
  font-size: 16px;
}

/* Submit Button */
.btn-submit {
  background-color: #A3802E;
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  width: fit-content;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #242B33;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-map {
    width: 350px;
    height: 350px;
  }

  .contact-form-area p {
    max-width: 100%;
  }

  .form-row {
    flex-direction: column;
  }
}


.contact-info-section {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 30px;
}

.contact-card {
  width: 350px;
  text-align: center;
  border: 1px solid #A3802E;
  border-radius: 20px;
  padding: 20px 20px;
  transition: all 0.3s ease;

  /* NEW FIX */
  display: flex;
  flex-direction: column;
  height: 311px; /* Adjust height as needed */
}

.contact-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-card button {
  background: #A3802E;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;

  /* NEW FIX → Always push button to the bottom */
  margin-top: auto;
}
/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .contact-info-section {
    flex-wrap: wrap;
    gap: 30px;
  }

  .contact-card {
    width: 45%;   /* Two cards per row */
    height: auto; /* Auto height for tablet */
  }
}
.contact-icon svg {
  stroke: #A3802E !important;
}
/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .contact-info-section {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .contact-card {
    width: 90%;
    height: auto; 
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .contact-card h3 {
    font-size: 18px;
  }

  .contact-card p {
    font-size: 14px;
  }

  .contact-card button {
    padding: 10px 30px;
    font-size: 15px;
  }
}
.samarth-peace-section {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* fixes overflowing issue */
}

.peace-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
  color: #A3802E;
}

.peace-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.peace-content p {
    font-size: 17px;
    font-weight: lighter;
    line-height: 1.7;
    margin-bottom: 10px;
}

.sc-feature-card-section {
  background: #faf7f2;
  padding: 60px 20px;
}

.sc-feature-wrapper {
  max-width: 1250px;
  margin: 0 auto;
}

.sc-feature-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #242B33;
}

.sc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

/* Card Structure */
.sc-feature-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;   /* important */
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.sc-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Card Image */
.sc-feature-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* Text Container */
.sc-card-content {
  padding: 20px 22px;
}

.sc-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #46351f;
  margin-bottom: 6px;
}

.sc-card-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}


/* MAIN SECTION */
.comfort-section {
  width: 100%;
  padding: 70px 20px;
  box-sizing: border-box;
}

/* CENTER CONTAINER */
.comfort-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.comfort-title {
  font-size: 38px;
  font-weight: 700;
  color: #242B33;
  margin-bottom: 10px;
}

.comfort-subtitle {
  font-size: 18px;
  color: #5a4b36;
  margin-bottom: 40px;
}

/* GRID WRAPPER — 5 IN ONE LINE */
.comfort-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}

/* CARD STYLING */
.comfort-card {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: 0.3s ease;
}

.comfort-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.comfort-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY TEXT */
.comfort-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  text-align: center;        /* FIX 1 */
  line-height: 1.3;          /* FIX 2 */
  display: flex;             /* FIX 3 */
  justify-content: center;   /* FIX 4 */
  align-items: center;       /* FIX 5 */
}

.comfort-card:hover .comfort-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* MESSAGE SECTION */
.comfort-message {
  max-width: 800px;
  margin: 30px auto 0;
  text-align: center;
}

.comfort-message h3 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #242B33;
}

.comfort-message p {
  font-size: 18px;
  color: #4c4335;
  line-height: 1.7;
}

.comfort-message blockquote {
  margin-top: 20px;
  font-size: 20px;
  font-style: italic;
  color: #A3802E;
  border-left: 4px solid #A3802E;
  padding-left: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .comfort-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .comfort-grid {
    grid-template-columns: 1fr;
  }
}
.values-section {
  background: #242B33; /* main dark bg */
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
  margin: 20px auto;
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 30px;
}

.values-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 8px;
  background: linear-gradient(90deg, #ffffff 0%, #C2B687 80%);
  -webkit-background-clip: text;
  color: transparent;
}

.values-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* CARD */
.value-card {
  display: flex;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px);
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: #A3802E; /* gold border on hover */
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

/* ICON */
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A3802E; /* gold icon */
  flex-shrink: 0;
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

/* TEXT */
.value-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #C2B687; /* sand color heading */
}

.value-desc {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

/* RESPONSIVE */
@media (min-width: 700px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .values-grid li:nth-child(5) {
    grid-column: span 2;
  }
}
/* SECTION */
.promise-section {
  background: #F9F6F0; /* soft cream-white elegant background */
  padding: 70px 20px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
}

/* CONTAINER */
.promise-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.promise-title {
  font-size: 32px;
  font-weight: 700;
  color: #242B33; /* dark blue-grey heading */
  margin-bottom: 20px;
  position: relative;
}

/* Underline Accent */
.promise-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #A3802E; /* gold line */
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* PARAGRAPH */
.promise-text {
  font-size: 16px;
  line-height: 1.7;
  color: #242B33;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* CLOSING MESSAGE BOX */
.closing-box {
  margin-top: 40px;
  padding: 30px 25px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #C2B687; /* sand tone border */
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* QUOTE TEXT */
.closing-line {
  font-size: 18px;
  font-style: italic;
  color: #A3802E; /* gold */
  line-height: 1.6;
  margin-bottom: 16px;
}

/* CHANT */
.closing-chant {
  font-size: 20px;
  font-weight: 700;
  color: #242B33;
  letter-spacing: 1px;
}
