.banner-sec {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 5;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal; */
/* } */

/* .banner-text h1 {
  font-size: 3rem;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.banner-text p {
  font-size: 1.2rem;
  margin-top: 10px;
} */

/* Fix carousel height */
.carousel-item {
  height: 60vh;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  /* Move content toward the left side */
  transform: translateY(-50%);
  text-align: left !important;
  width: 40%;

  /* Optional: keeps text from stretching too wide */
}

.carousel-caption h3,
.carousel-caption p {
  text-align: left;
  color: #7b8b5e;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  /* font-weight: 1.9rem; */
}

.carousel-caption h3 {
  font-size: 3.5rem;
  /* Adjust as needed */
  /* font-weight: bold; */
}

.carousel-caption p {
  font-size: 1.2rem;
  color: #333;
}

.carousel-caption-1 {
  position: absolute;
  top: 50%;
  left: 15%;
  /* Push caption to the right side */
  transform: translateY(-50%);
  text-align: left !important;
  /* Align text to the right */
  width: 40%;
  /* Optional: adjust as needed */
}

.carousel-caption-1 h3,
.carousel-caption-1 p {
  text-align: left;
  color: black;
  font-family: "Raleway", sans-serif;
  font-style: normal;
}

.carousel-caption-1 h3 {
  font-size: 3.9rem;
  /* font-weight: bold; */
}

.carousel-caption-1 p {
  font-size: 1.2rem;
  color: #fff;
}

.carousel-caption-2 {
  position: absolute;
  top: 50%;
  right: 15%;
  /* Push caption to the right side */
  transform: translateY(-50%);
  text-align: right !important;
  /* Align text to the right */
  width: 40%;
  /* Optional: adjust as needed */
}

.carousel-caption-2 h3,
.carousel-caption-2 p {
  text-align: right;
  color: #7b8b5e;
  font-family: "Raleway", sans-serif;
  font-style: normal;
}

.carousel-caption-2 h3 {
  font-size: 3.5rem;
  /* font-weight: bold; */
}

.carousel-caption-2 p {
  font-size: 1.2rem;
  color: #333;
}

.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 100px 8%;
  background: #fff;
  overflow: hidden;
  flex-wrap: wrap;
  position: relative;
}

/* TEXT AREA */
.about-text {
  flex: 1;
  padding-right: 40px;
  padding-left: 160px;
  animation: fadeInLeft 1.5s ease-out;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.about-text h1 {
  font-size: 3.9rem;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: #7b8b5e;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 20px;
  color: #000;
  line-height: 1.7;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 18px;
  font-size: 18px;
}

.luxury-list {
  margin: 20px 0;
  padding-left: 20px;
}

.luxury-list li {
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  margin-bottom: 10px;
}

/* IMAGES */
.about-images {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sustain-circle {
  position: absolute;
  bottom: 14px;
  right: 100px;
  width: 130px;
  height: 130px;
  background: #7b8b5e;
  border-radius: 50%;
}


.about-images img:first-child {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  opacity: 0;
  padding: 50px;
  animation: fadeUp 1.3s ease-out forwards, floatUp 6s ease-in-out infinite;
}

/* .about-images img:last-child {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  bottom: -80px;
  left: 2px;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1.6s ease-out forwards, floatDown 7s ease-in-out infinite;
  animation-delay: 0.3s;
} */

/* ================== ANIMATIONS ================== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1200px) {
  .about-text {
    padding-left: 100px;
  }

  .about-text h1 {
    font-size: 3.9rem;
  }
}

@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    text-align: start;
    padding: 80px 6%;
  }

  .about-text {
    padding: 0;
    margin-bottom: 40px;
  }

  .about-text h1 {
    font-size: 3.9rem;
  }

  .about-text p {
    font-size: 18px;
    margin-right: 60px;
  }

  .luxury-list {
    text-align: left;
    padding-left: 0;
  }

  .about-images img:first-child {
    width: 280px;
    height: 280px;
  }

  .about-images img:last-child {
    width: 160px;
    height: 160px;
    bottom: -50px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 5%;
  }

  .about-text h1 {
    font-size: 3.9rem;
  }

  .about-text p {
    font-size: 16px;
    margin-right:0;
  }
  .sustain-circle{
    bottom: -40px;
    right: -10px;
  }
  .about-images img:first-child {
    width: 400px;
    height: 400px;
    padding: 0px;
  }

  /* 
  .about-images img:last-child {
    width: 120px;
    height: 120px;
    bottom: -40px;
  } */
}

.leadership-wrap {
  background: #fff;
}

/* CENTERED HEADING */
.lead-top-center {
  text-align: center;
  margin-bottom: 25px;
}

.lead-heading {
  font-size: 3.9rem;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}

/* CENTER ALL CONTENT */
.center-slider {
  justify-content: center;
}

/* SLIDER */
.lead-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 15px;
  justify-content: center;
}

.lead-card {
  min-width: 180px;
  text-align: center;
}

.lead-card img {
  width: 100px;
  height: 100px;
  /* object-fit: cover; */
  /* border-radius: 50%; */
  /* border: 1px solid #ddd; */
}

.leadership-wrap {
  background: #7b8b5e;
  /* theme strip */
  padding-top: 60px;
  /* keep spacing clean */
  padding-bottom: 60px;
}


.name {
  margin-top: 12px;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.role {
  color: #666;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.fade-pop {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.7s ease-out;
}

.fade-pop.show {
  opacity: 1;
  transform: scale(1);
}

/* Optional: Add hover effect for images */
/* .mission-img:hover,
.vision-img:hover {
    transform: scale(1.04);
    transition: 0.3s ease-in-out;
} */
/* .mission-list {
    margin-top: 10px;
    padding-left: 20px;
}

.mission-list li {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.6;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #4b5a3c;
} */

/* ------------ Mission Section Styling ------------ */

.mission-title {
  font-size: 3.9rem;
  /* Updated to match hero heading */
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* Updated from 700 → 600 */
  color: #7b8b5e;
  padding-left: 180px;
}

.mission-text {
  /* font-size: 1.5rem; Updated → matches hero paragraph */
  line-height: 1.7;
  color: #333;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
  font-size: 18px;
  padding-left: 180px;
}

.mission-list {
  padding-left: 210px;
}

.mission-list li {
  margin-bottom: 8px;
  color: #4d4d4d;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* ------------ Blob-Shaped Image ------------ */
.mission-img-wrapper {
  width: 100%;
  max-width: 420px;
  margin: auto;
  position: relative;
}

.mission-img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  /* box-shadow: 0 12px 30px rgba(0,0,0,0.15); */
  transition: all 0.4s ease-in-out;
}

.sustain-circle-1 {
  position: absolute;
  bottom: -40px;
  right: -10px;
  width: 130px;
  height: 130px;
  background: #7b8b5e;
  border-radius: 50%;
}

/* Hover animation
.mission-img:hover {
  transform: scale(1.04) translateY(-5px); */
/* box-shadow: 0 18px 40px rgba(0,0,0,0.25); */
/* } */

/* Responsive */
@media (max-width: 768px) {
  .mission-img {
    border-radius: 50%;
    height: 400px;
    width: 400px;
  }

  .mission-title {
    text-align: center;
     padding-left:0;
  }
  .mission-text{
    padding-left:0;
  }
  .mission-list{
    padding-left: 25px;
  }
  
}
/* Default (Desktop & Tablet) */
.mission-text,
.vision-text,
.mission-list,
.vision-list {
  text-align: center;
}





/* ================= VISION SECTION ================= */

.vision-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 6%;
  /* uniform alignment like all sections */
  margin-bottom: 100px;
  box-sizing: border-box;
}

.vision-title {
  font-size: 3.9rem;
  color: #7b8b5e;
  margin-bottom: 20px;
  font-family: "Raleway", sans-serif;
  padding-right: 100px;
}

.vision-text {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 20px;
  font-family: "Raleway", sans-serif;
  padding-right: 100px;
}

.vision-list {
  padding-right: 18px;
}

.vision-list li {
  margin-bottom: 8px;
  color: #4d4d4d;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-right: 130px;
}

.vision-img-wrapper {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}

.vision-img {
  height: 350px;
  width: 350px;
}

.sustain-circle-2 {
  position: absolute;
  bottom: -14px;
  left: 100px;
  width: 130px;
  height: 130px;
  background: #7b8b5e;
  border-radius: 50%;
  z-index: 30;
  overflow: visible;
}



.vision-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Brand Slider Animation ===== */
/* Make the whole section full-width */
#brands {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  /* Break container limit */
  background: #ffffff;
  overflow: hidden;
}

/* Override Bootstrap container only for this section */
#brands .container {
  max-width: 100%;
}

/* Slider wrapper */
.brand-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* Track -->
   Set it to move continuously */
.brand-track {
  display: flex;
  width: max-content;
  animation: scrollBrands 18s linear infinite;
}

/* Brand logos */
.brand-track img {
  height: 80px;
  margin: 0 40px;
  object-fit: contain;

  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

/* Keyframes */
/* @keyframes scrollBrands {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
} */

/* Responsive adjustments */
/* @media (max-width: 768px) {
  .brand-track {
    gap: 40px;
    animation-duration: 25s;
  }
  .brand-track img {
    height: 55px;
  }
}
@media (max-width: 480px) {
  .brand-track {
    gap: 30px;
    animation-duration: 30s;
  }
  .brand-track img {
    height: 40px;
  }
} */
/* default hidden state */
.fade-left,
.fade-right,
.fade-up,
.fade-pop {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

/* fade from left */
.fade-left {
  transform: translateX(-40px);
}

/* fade from right */
.fade-right {
  transform: translateX(40px);
}

/* fade up */
.fade-up {
  transform: translateY(40px);
}

/* zoom pop */
.fade-pop {
  transform: scale(0.9);
}

/* when visible */
.show {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}
/* ========== RESPONSIVE ========== */

 @media (max-width: 767px) {
 /* .vision-section {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }
.vision-title {
    text-align: center;
     padding-right:0;
  }
  .vision-text, .vision-list{
    padding-right:0;
  }

  .vision-img-wrapper {
    max-width: 260px;
  }*/
    .vision-text, .vision-title{
    padding-right:0;
  }
  .vision-list, .vision-list li{
    padding-right:0;
  }
  .sustain-circle-2{
    bottom: -40px;
    left: -10px;
    right: auto;
  }
} 

@media (max-width: 320px) {
 .vision-title {
    text-align: center;
     padding-right:0;
  }
  .vision-text, .vision-list{
    padding-right:0;
  }
   .vision-img-wrapper {
    max-width: 220px;
  }
}
/* =========================================
   ABOUT PAGE – MOBILE & SMALL SCREEN FIX
   (SAFE OVERRIDES ONLY)
========================================= */

/* ---------- COMMON SMALL SCREENS ---------- */
@media (max-width: 767px) {

  /* Reset heavy paddings */
  .mission-title,
  .mission-text,
  .mission-list,
  .vision-title,
  .vision-text,
  .vision-list,
  .vision-list li {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Center text content */
  .mission-title,
  .vision-title {
    text-align: center;
    font-size: 2.4rem;
  }

  .mission-text,
  .vision-text {
    text-align: center;
    font-size: 16px;
  }

  .mission-list,
  .vision-list {
    padding-left: 20px;
    text-align: left;
  }

  /* Image scaling */
  .mission-img,
  .vision-img {
    width: 260px;
    height: 260px;
  }

  .mission-img-wrapper,
  .vision-img-wrapper {
    max-width: 260px;
  }

  /* Decorative circles reposition */
  .sustain-circle-1 {
    width: 90px;
    height: 90px;
    bottom: -20px;
    right: -10px;
  }

  .sustain-circle-2 {
    width: 90px;
    height: 90px;
    bottom: -20px;
    left: 0;
  }

  /* Spacing between sections */
  .mission-section,
  .vision-section {
    padding: 50px 15px;
  }
}

/* ---------- EXTRA SMALL DEVICES ---------- */
@media (max-width: 480px) {

  .mission-title,
  .vision-title {
    font-size: 2rem;
  }

  .mission-img,
  .vision-img {
    width: 220px;
    height: 220px;
  }

  .mission-img-wrapper,
  .vision-img-wrapper {
    max-width: 220px;
  }
}

/* ---------- VERY SMALL DEVICES ---------- */
@media (max-width: 360px) {

  .mission-title,
  .vision-title {
    font-size: 1.8rem;
  }

  .mission-text,
  .vision-text {
    font-size: 15px;
  }
}
/* =========================================
   ABOUT TEXT – MOBILE & SMALL SCREEN FIX
   (SAFE OVERRIDES ONLY)
========================================= */

/* ---------- MOBILE & SMALL TABLETS ---------- */
@media (max-width: 767px) {

  .about-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
  }

  .about-text h1 {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .about-text p {
    font-size: 16px;
    margin-right: 0;
  }

  .luxury-list {
    padding-left: 20px;
    text-align: left;
  }

  /* Image scaling */
  .about-images img:first-child {
    width: 260px;
    height: 260px;
    padding: 0;
  }

  /* Decorative circle */
  .sustain-circle {
    width: 90px;
    height: 90px;
    bottom: -20px;
    right: 0;
  }
}

/* ---------- EXTRA SMALL DEVICES ---------- */
@media (max-width: 480px) {

  .about-text h1 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-images img:first-child {
    width: 220px;
    height: 220px;
  }
}

/* ---------- VERY SMALL DEVICES ---------- */
@media (max-width: 360px) {

  .about-text h1 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 14.5px;
  }
}
/* =========================================
   FORCE CENTER ABOUT IMAGE (MOBILE & XS)
========================================= */

@media (max-width: 767px) {

  .about-images {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }

  .about-images img:first-child {
    display: block;
    margin: 0 auto !important;
    padding: 0 !important;   /* THIS IS THE KEY FIX */
  }

  .sustain-circle {
    right: 50%;
    transform: translateX(50%);
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .about-images img:first-child {
    margin: 0 auto !important;
  }

  .sustain-circle {
    bottom: -25px;
    right: 50%;
    transform: translateX(50%);
  }
}
/* ===============================
   MOBILE RESPONSIVE FIX
================================ */
@media (max-width: 767px) {

  /* Mission text & list */
  .mission-text {
    padding-left: 0;
    text-align: center;
  }

  .mission-list {
    padding-left: 0;
    text-align: center;
  }

  .mission-list li {
    text-align: center;
  }

  /* Vision text & list */
  .vision-text {
    padding-right: 0;
    text-align: center;
  }

  .vision-list {
    padding-right: 0;
    text-align: center;
  }

  .vision-list li {
    text-align: center;
  }

  /* Titles center on mobile */
  .mission-title,
  .vision-title {
    text-align: center;
  }
}
/* Keep UL text aligned like paragraph */
.mission-list,
.vision-list {
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}

/* Ensure list text flows normally */
.mission-list,
.vision-list {
  display: block;
  width: 100%;
}

/* Mobile fix */
@media (max-width: 767px) {
  .mission-list,
  .vision-list {
    text-align: left !important;
  }
}
/* Force paragraph text to behave like normal content */
.mission-text,
.vision-text {
  text-align: left;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Mobile fix */
@media (max-width: 767px) {
  .mission-text,
  .vision-text {
    text-align: left !important;
  }
}
/* =========================================
   FINAL DESKTOP FIX – MISSION & VISION
   (SAFE OVERRIDE – NO BREAKS)
========================================= */

/* Desktop only */
@media (min-width: 768px) {

  /* Center the content block */
  .mission-section .fade-left,
  .vision-section .fade-left {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  /* Remove heavy paddings */
  .mission-title,
  .mission-text,
  .mission-list,
  .vision-title,
  .vision-text,
  .vision-list,
  .vision-list li {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Keep headings centered */
  .mission-title,
  .vision-title {
    text-align: center;
  }

  /* Paragraph & list left-aligned */
  .mission-text,
  .vision-text,
  .mission-list,
  .vision-list {
    text-align: left;
  }
}



