/* ---------- base ---------- */
:root {
  --brand: #0b3b4a;
  --accent: #d4af37;
  --muted: #8a8a8a;
  --primary: #182820;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Crimson Pro", serif;
  color: #222;
  line-height: 1.5;
  background: #fff;
}

/* Fix for Bootstrap Modal scrollbar jump & aspect-ratio recalculations */
html {
  scrollbar-gutter: stable;
  /* Modern fix: reserve space for scrollbar */
}

/* --- CUSTOM PREMIUM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 12px !important;
}

::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
}

::-webkit-scrollbar-thumb {
  background: #d4af37 !important;
  /* Reverting to Luxury Gold */
  border-radius: 10px !important;
}

::-webkit-scrollbar-thumb:hover {
  background: #b8962d !important;
}

/* Firefox Support */
* {
  scrollbar-width: auto;
  scrollbar-color: #d4af37 #f1f1f1;
}

/* Hide scrollbar buttons for a cleaner look */
::-webkit-scrollbar-button {
  display: none !important;
}

body.modal-open {
  padding-right: 0 !important;
}

/* Ensure fixed nav doesn't shift */
.fixed-top.modal-open,
.fixed-bottom.modal-open,
.fixed-top.nav-bg {
  padding-right: 0 !important;
}

/* === PRIMARY FONT FAMILY === */
@font-face {
  font-family: "Crimson Pro";
  font-style: normal;
  font-weight: 400;
  src: url("assets/font/CrimsonPro-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Crimson Pro";
  font-style: normal;
  font-weight: 500;
  src: url("assets/font/CrimsonPro-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Crimson Pro";
  font-style: normal;
  font-weight: 600;
  src: url("assets/font/CrimsonPro-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Crimson Pro";
  font-style: normal;
  font-weight: 700;
  src: url("assets/font/CrimsonPro-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Trajan Pro Regular";
  font-style: normal;
  font-weight: 400;
  src: local("Trajan Pro Regular"),
    url("assets/font/TrajanPro-Regular.woff") format("woff"),
    url("assets/font/Trajan-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Trajan Pro Bold";
  font-style: normal;
  font-weight: 700;
  src: local("Trajan Pro Bold"),
    url("assets/font/TrajanPro-Bold.woff") format("woff"),
    url("assets/font/Trajan-Regular.ttf") format("opentype");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Trajan Pro Regular", serif;
}

/* NAV - transparent by default */
.nav-bg {
  background: rgba(3, 12, 24, 0);
  backdrop-filter: blur(6px);
  padding: 0.9rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  width: 100vw !important;
}

/* NAV - dark after scrolling past hero */
.nav-bg.scrolled {
  background: #182820;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.nav-link {
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

.dropdown-item:hover {
  background-color: #182820;
  color: #fff;
}

@media (max-width: 991px) {
  .nav-bg {
    padding: 0.9rem;
  }
}

.enquire-color {
  color: #fea700;
}

.brand-logo {
  width: 100%;
  height: 44px;
  /* border-radius: 8px; */
  object-fit: contain;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
}

.hero .swiper {
  width: 100%;
  height: 100%;
}

.hero .swiper-slide {
  position: relative;
}

.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dark overlay to improve text visibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.671) 0%,
      rgb(0 0 0 / 34%) 100%);
  z-index: 6;
  pointer-events: none;
}

/* hero content sits above overlay */
.hero-content {
  position: absolute;
  top: 40%;
  left: 50%;
  /* start from the middle */
  transform: translateX(-50%);
  z-index: 8;
  color: #fff;
  /* max-width: 900px; */
}

.hero-title {
  font-size: 46px;
  letter-spacing: 4px;
  /* font-weight: 600; */
  margin: 4px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: 6px;
}

/* CTA buttons */
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
  border: 0;
}

.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

/* ---------- HERO PAGINATION (vertical right) ---------- */
.hero .swiper-pagination {
  position: absolute !important;
  right: 40px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 9;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center;
  gap: 12px !important;
  width: auto !important;
  left: auto !important;
  height: auto !important;
  align-items: center !important;
}

.hero .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, 0.35) !important;
  opacity: 1 !important;
  margin: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  position: relative !important;
}

.hero .swiper-pagination-bullet-active {
  background: var(--accent) !important;
  transform: scale(1.1) !important;
}

.hero .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.5) !important;
}

.scroll-down-wrapper {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-down-indicator {
  position: relative;
  z-index: 10;
}

.scroll-down-indicator .btn {
  position: relative;
  /* needed for pseudo elements */
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid rgba(255, 255, 255, 1);
  /* static (inner) border = layer 1 */
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  overflow: visible;
  /* allow pulses to show outside */
  z-index: 2;
  pointer-events: auto;
  /* extra subtle pulse using box-shadow (gives a 3rd moving layer feel) */
  animation: boxPulse 2.6s infinite ease-in-out;
}

/* Make pseudo elements sit behind text and border */
.scroll-down-indicator .btn::before,
.scroll-down-indicator .btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% + 12px);
  /* start slightly larger than the box so border aligns */
  height: calc(100% + 12px);
  transform: translate(-50%, -50%) scale(1);
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.95);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  /* behind the button content */
  box-sizing: border-box;
  will-change: transform, opacity;
}

/* first pulse */
.scroll-down-indicator .btn::before {
  animation: pulseExpand 2.2s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
  animation-delay: 0s;
}

/* second pulse */
.scroll-down-indicator .btn::after {
  animation: pulseExpand 2.4s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
  animation-delay: 0.9s;
  /* stagger to make it read as "moving" */
  border-color: rgba(255, 255, 255, 0.85);
}

/* keyframes for the big expanding borders */
@keyframes pulseExpand {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: blur(0px);
  }

  60% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.18;
    filter: blur(6px);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
    filter: blur(8px);
  }
}

/* keyframes for the subtle box-shadow pulse (gives a 3rd moving outline feel) */
@keyframes boxPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }

  40% {
    box-shadow: 0 0 10px 6px rgba(255, 255, 255, 0.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* small polish so pulses don't cover text when high blur occurs */
.scroll-down-indicator .btn>* {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

/* optional responsive tweak to reduce effect on small screens */
@media (max-width: 420px) {
  .scroll-down-indicator .btn {
    padding: 10px 18px;
    font-size: 12px;
  }
}

/* ---------- MOBILE SLIDE-IN NAV ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #182820;
  color: #fff;
  z-index: 2000;
  transition: right 0.38s cubic-bezier(0.2, 0.9, 0.2, 1);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-body {
  padding: 20px 18px;
  overflow: auto;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-nav-list a.mobile-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.toggle-sub {
  background: none;
  border: 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* submenu (collapsed by default) */
.submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 10px 0 0 15px;
}

.submenu li {
  padding: 8px 0;
  border-bottom: 0;
}

.submenu a.mobile-link {
  font-size: 14px;
  opacity: 0.8;
}

.mobile-nav-list li.open .submenu {
  display: block;
}

/* responsive adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-content {
    /* left: 5%; */
    top: 40%;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-pagination {
    right: 3%;
  }
}

/* Section with background image */
.feature-split {
  position: relative;
  height: 750px;
  padding-top: 0px !important;
  padding-bottom: 6rem;
  background-image: url("assets/img/RoadDrive-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.main-feature-card {
  position: relative;
  background-color: white;
  width: 880px;
  height: 650px;
}

@media (max-width: 991px) {
  .main-feature-card {
    width: 100%;
    height: 650px;
  }
}

/* Vertical text */
.vertical-text {
  position: absolute;
  left: 1%;
  bottom: 10%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-size: 11px;
  letter-spacing: 2px;
  color: #333;
  font-weight: 500;
  z-index: 10;
}

.vertical-links {
  color: #355a48;
  text-decoration: none;
}

/* Content card */
.feature-card {
  margin-left: 270px;
  padding: 2rem;
  border-radius: 10px;
  width: 65%;
  z-index: 2;
  position: relative;
  background: transparent;
}

/* Main heading */
.feature-title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: #000;
  line-height: 1.2;
}

/* Vision Heading */
.vision-heading {
  font-family: "Trajan Pro Bold", serif;
  color: #c9a44c;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* Slightly tighter for block feel */
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem !important;
  /* Minimal gap */
}

.vision-block-container {
  text-align: left;
  max-width: 1100px;
  padding: 1.5rem 0;
  margin-top: 0;
  border-top: 1px solid rgba(201, 164, 76, 0.2);
  border-bottom: 1px solid rgba(201, 164, 76, 0.2);
}

/* Small subtitle text */
.feature-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.chairman-vision {
  font-size: 17px;
  /* Slightly smaller for tighter block */
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 0 !important;
}

@media (max-width: 991px) {
  .vision-block-container {
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
  }
}

/* Button style */
.feature-btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  background-color: #0b0b23;
  color: #fff;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.feature-btn:hover {
  background-color: #22224d;
  color: #fff;
}

/* Faded background text */
.faded-bg-text {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  letter-spacing: 6px;
}

/* Colored line at the bottom */
.colored-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #f2e6d5;
}

@media (max-width: 991px) {
  .feature-card {
    margin-left: 0;
    width: 100%;
  }
}

/* --- SECTION - same as before --- */
/* --- PREMIUM SPOTLIGHT STATS --- */
.spotlight-stats {
  background: url(assets/img/2-decades.jpeg) no-repeat center/cover;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.spotlight-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 15, 0.94) 0%, rgba(15, 30, 25, 0.678) 100%);
  z-index: 0;
}

.spotlight-stats .container {
  position: relative;
  z-index: 2;
}

.spotlight-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: "Trajan Pro Bold", serif;
}

.spot-desc {
  font-size: 1.25rem;
  opacity: 0.85;
  max-width: 800px;
  margin: 0 auto 5rem;
  line-height: 1.8;
}

.achievement-row.glass-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 0;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.achievement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.achievement-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(243, 111, 33, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.achievement-item:hover::before {
  opacity: 1;
}

.achievement-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.achievement-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.achievement-icon {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 2rem;
  background: rgba(255, 215, 0, 0.12);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #d4af37;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.achievement-item:hover .achievement-icon {
  background: #d4af37;
  color: #fff;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 30px rgba(243, 111, 33, 0.4);
}

.num-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.achievement-num {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Trajan Pro Regular", serif;
  color: #d4af37;
  /* background: linear-gradient(180deg, #ffffff 30%, #f36f21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
  line-height: 1.1;
  letter-spacing: -1px;
}

.achievement-plus {
  font-size: 2.2rem;
  font-weight: 600;
  color: #d4af37;
  margin-left: 5px;
  text-shadow: 0 0 15px rgba(243, 111, 33, 0.3);
}

.achievement-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 991px) {
  .achievement-row.glass-container {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .achievement-item {
    padding: 4rem 2rem;
  }

  .achievement-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .spotlight-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .spotlight-stats {
    padding: 7rem 0;
  }

  .achievement-num {
    font-size: 2.8rem;
  }

  .achievement-plus {
    font-size: 1.8rem;
  }
}

/* projects carousel */
.project-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

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

.project-card .meta {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 16px;
  border-radius: 8px;
}

/* gallery slide (grouped) */
.gallery-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px;
}

.gallery-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

/* ---------- testimonial basics (kept and adjustable) ---------- */
.testimonial {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.testimonial-img img {
  width: 250px;
  height: 335px;
  /* border-radius: 8px; */
  object-fit: cover;
}

.testimonial-content {
  max-width: 700px;
  margin: 0 auto;
  /* font-family: "Georgia", serif; */
  color: #666;
  line-height: 1.8;
  position: relative;
}

.testimonial-content .quote-mark {
  font-size: 60px;
  color: #666;
  /* line-height: 0.8; */
  position: absolute;
  top: -10px;
  left: 0;
}

.testimonial-text {
  font-size: 14px;
  /* font-style: italic; */
  margin: 20px 0 30px;
  /* padding-left: 40px; space for the quote image */
  text-indent: 20px;
  /* aligns first word nicely after space */
}

.testimonial-author h4 {
  font-size: 18px;
  /* font-weight: bold; */
  margin: 0;
  /* color: #222; */
}

.testimonial-author span {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* ---------- PAGINATION: Clean minimal dots ---------- */
.testimonialsSwiper .swiper-pagination {
  position: relative !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px !important;
  user-select: none;
  z-index: 10;
  min-height: 38px;
}

.quote-icon {
  width: fit-content;
  font-size: 80px;
  height: fit-content;
}

/* base bullet container */
.testimonialsSwiper .swiper-pagination-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 10px;
  height: 10px;
  transition: width 0.4s cubic-bezier(0.2, 0.9, 0.3, 1),
    height 0.4s cubic-bezier(0.2, 0.9, 0.3, 1),
    transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  cursor: pointer;
  box-sizing: content-box;
  opacity: 1 !important;
}

/* inactive dot */
.testimonialsSwiper .swiper-pagination-bullet .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(24, 40, 32, 0.2);
  border: none;
  display: block;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1),
    background 0.3s ease;
  transform-origin: center center;
}

/* number (hidden by default) */
.testimonialsSwiper .swiper-pagination-bullet .num {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
  pointer-events: none;
}

/* active bullet */
.testimonialsSwiper .swiper-pagination-bullet-active {
  width: 38px;
  height: 38px;
  background-color: transparent;
}

.testimonialsSwiper .swiper-pagination-bullet-active .dot {
  transform: scale(0);
  opacity: 0 !important;
  visibility: hidden;
}

.testimonialsSwiper .swiper-pagination-bullet-active .num {
  opacity: 1;
  transform: scale(1);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: none;
  background: #182820;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* hover */
.testimonialsSwiper .swiper-pagination-bullet:hover .dot {
  transform: scale(1.3);
  background: rgba(24, 40, 32, 0.45);
}

/* spacing */
.testimonialsSwiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 8px !important;
}

/* awards */
/* awards */
.gallery-sec,
.awards-carousel-section {
  overflow: hidden;
}

.awards {
  background: var(--brand);
  color: #fff;
  padding: 3rem;
  border-radius: 8px;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 700px;
  gap: 30px;
  align-items: center;
  padding: 3rem 0;
  position: relative;
}

.map-wrapper .text-center {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  margin-right: -80px;
  /* overlaps map */
}

@media (max-width: 991px) {
  .map-wrapper .text-center {
    margin-right: 0px;
    /* overlaps map */
  }
}

.map-placeholder {
  background: #f2f2f2;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

/* footer */
footer {
  background: #182820;
  color: #cfd8d9;
  padding: 100px 0 50px 0;
}

/* offcanvas menu for mobile */
.offcanvas-right {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
  transition: right 0.35s ease;
}

.offcanvas-right.open {
  right: 0;
}

.offcanvas-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.offcanvas-body {
  padding: 1rem;
}

.nav-collapse-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f2f2f2;
}

/* refined visual details */
.section {
  padding: 4.5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 10px;
  }
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 1rem;
}

.muted {
  color: var(--muted);
}

.btn-accent {
  /* background: var(--accent); */
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
}

.rounded-20 {
  border-radius: 20px;
}

/* small helpers */
/* .dot-style .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2);
}

.dot-style .swiper-pagination-bullet-active {
  background: var(--accent);
} */

/* responsive tweaks */
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-pagination {
    right: 30px !important;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: 520px;
    height: 100vh;
  }

  .hero-pagination {
    right: 20px !important;
  }

  .scroll-down-indicator {
    bottom: 30px;
  }

  .scroll-down-indicator span {
    padding: 10px 20px;
    font-size: 12px;
  }

  .gallery-slide img {
    height: 160px;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 28px;
  }

  .gallery-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .gallery-slide {
    grid-template-columns: 1fr;
  }
}

.art-evolution-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  /* margin-bottom: 35px; */
}

/* Section Wrapper */
.art-evolution-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.feature-subtext {
  text-align: center;
  /* max-width: 700px; */
  margin: 0 auto 2.5rem;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* Value lists */
.value-lists {
  justify-content: center;
  gap: 60px;
}

/* Each list */
.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-list li {
  position: relative;
  font-size: 17px;
  color: #222;
  font-weight: 500;
  padding-left: 28px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
  text-align: start;
}

.value-list li::before {
  content: "âœ”";
  position: absolute;
  left: 0;
  top: 0;
  color: #182820;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.value-list li:hover {
  color: #182820;
  transform: translateX(4px);
}

.value-list li:hover::before {
  transform: scale(1.3);
  color: #000;
}

/* ========================================================================
   TESTIMONIALS VIDEO SLIDER — Clean Premium Redesign
   ======================================================================== */

/* --- Thumbnail base --- */
.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s ease;
}

/* --- Portrait reel-style cards --- */
.testimonialsSwiper .swiper-slide .video-container,
.testimonialsSwiper .swiper-slide iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 550px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  object-fit: cover;
}

.testimonialsSwiper .swiper-slide .video-container {
  position: relative;
  background: #f5f2ed;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s ease;
}

/* Subtle bottom gradient for depth — no gold shimmer */
.testimonialsSwiper .swiper-slide .video-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* No second pseudo-element needed */
.testimonialsSwiper .swiper-slide .video-container::after {
  display: none;
}

/* Hover: gentle lift + softer shadow */
.testimonialsSwiper .swiper-slide .video-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.testimonialsSwiper .swiper-slide .video-container:hover .video-thumbnail {
  transform: scale(1.04);
}

.testimonialsSwiper .swiper-slide .video-container:hover::before {
  opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 575px) {

  .testimonialsSwiper .swiper-slide .video-container,
  .testimonialsSwiper .swiper-slide iframe {
    border-radius: 12px;
  }

  .testimonialsSwiper .swiper-slide .video-container::before {
    border-radius: 0 0 12px 12px;
  }

  .testimonialsSwiper .play-button {
    width: 48px;
    height: 48px;
  }

  .testimonialsSwiper .play-icon {
    font-size: 20px;
  }
}

/* ========================================================================
   PLAY BUTTON — Clean, minimal
   ======================================================================== */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);

  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.play-button::before {
  display: none;
}

.play-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.play-icon {
  font-size: 24px;
  color: #182820;
  margin-left: 3px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.play-button:hover .play-icon {
  color: #d4af37;
  transform: scale(1.05);
}

/* ========================================================================
   PREMIUM VIDEO MODAL
   ======================================================================== */
.video-modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  background: #0a1a12;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  opacity: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(24, 40, 32, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  filter: invert(1);
}

.video-modal-close:hover {
  background: rgba(212, 175, 55, 0.9);
  border-color: #d4af37;
  transform: rotate(90deg) scale(1.1);
}

/* Video */
.modal-video {
  width: 100%;
  height: 640px;
  display: block;
  background-color: black;
}

@media (min-width: 992px) {
  .modal-video {
    max-height: 640px;
  }
}

/* PROJECT SECTION */
.project-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  width: 100%;
  min-height: 80vh;
}

/* TABS */
.project-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.proj-tab {
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid #355a48;
  background: none;
  cursor: pointer;
  font-weight: 600;
  color: #555;
  transition: 0.3s all ease;
}

.proj-tab.active {
  background: #355a48;
  color: #fff;
}

.proj-tab:hover {
  box-shadow: rgba(0, 0, 0, 0.445) 0px 4px 12px;
}

/* SLIDER */
.proj-slider {
  position: relative;
  width: 90%;
  height: 70vh;
  /* overflow: hidden; */
  border-radius: 8px;
  display: none;
}

.proj-slider.active {
  display: block;
}

/* Project description styles */
.proj-description {
  display: none;
  text-align: center;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.proj-description.active {
  display: block;
}

/* SLIDES */
.proj-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.proj-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* CARD */
.proj-card {
  width: 60%;
  height: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  bottom: -80px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* NAV DOTS */
.proj-card-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}

.proj-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.proj-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 20%;
  background: #355a48;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.proj-dots .dot.active {
  background: #355a48;
  transform: scale(1.2);
  opacity: 1;
}

/* TITLE AND DESCRIPTION */
.proj-card h2 {
  margin: 8px 0 10px;
  font-size: 22px;
  color: #222;
  font-family: "Trajan Pro Regular", serif;
}

.proj-card p {
  font-size: 18px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* NEXT ARROW */
.arrow-proj.next-proj {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-size: 60px;
  cursor: pointer;
  color: #355a48;
  transition: all 0.3s ease;
  z-index: 10;
}

.arrow-proj.next-proj:hover {
  transform: translateY(-50%) scale(1.1);
  color: rgba(0, 0, 0, 0.8);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .proj-card {
    width: 75%;
  }

  .arrow-proj.next-proj {
    right: 3%;
    font-size: 40px;
  }
}

@media (max-width: 520px) {
  .proj-card {
    width: 92%;
    padding: 16px;
  }

  .proj-card h2 {
    font-size: 1rem;
  }

  .proj-card p {
    font-size: 0.85rem;
  }
}

.gallery-sec {
  overflow: hidden;
}

.grid-slider-section {
  margin: 0 auto;
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
}

.grid-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.grid-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.grid-slide.active {
  display: block;
}

/* Custom 2-column grid */
.custom-grid {
  display: flex;
  gap: 10px;
}

.col-left,
.col-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.img-box {
  flex: 1;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* border-radius: 6px; */
}

/* Slider dots */
.grid-slider-dots {
  text-align: center;
  margin-top: 20px;
}

.grid-slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.grid-slider-dots .dot.active {
  background: #333;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .custom-grid {
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .custom-grid {
    flex-direction: column;
    /* stack everything vertically */
  }

  .col-left,
  .col-right {
    flex: none;
  }
}

.space-types {
  position: relative;
  /* needed for overlay */
  padding: 100px 0;
  background: url(https://www.icubeswire.com/projects/chintamani/assets/lastbg.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  /* ensures text is visible on dark overlay */
}

/* Dark overlay */
.space-types::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* adjust opacity as needed */
  z-index: 0;
  /* behind the content */
}

/* Make sure content is above overlay */
.space-types .container {
  position: relative;
  z-index: 1;
}

.space-types h1 {
  color: white;
}

.space-types p {
  color: white;
}

.space-types .space-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}

.space-types .space-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.space-card p {
  color: black;
}

.space-types h2 {
  letter-spacing: 1px;
}

.space-types h3 {
  font-size: 1.5rem;
}

.space-types p {
  line-height: 1.6;
}

.sec-padd {
  padding: 100px 0;
}

.video-wrapper {
  cursor: pointer;
}

.video-wrapper .play-btn {
  font-size: 60px;
  color: #ff7a0f;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-wrapper .video-thumb {
  display: block;
}

.video-wrapper video {
  display: block;
}

.rewards-height {
  height: 600px;
  overflow: visible;
  background: #182820;
}

.rewards-img {
  position: absolute;
  left: -110px;
  top: -200px;
  width: 650px;
}

@media (max-width: 991px) {
  .rewards-img {
    position: relative;
    left: 0;
    top: 0;
    /* transform: translateX(-50%); */
    width: 300px;
  }

  .rewards-height {
    height: fit-content;
  }
}

.contact-ul li {
  margin-bottom: 8px;
}

/* ðŸ”¹ Inner Page Banner */
.inner-banner {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.inner-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgb(24 40 32 / 55%);
  backdrop-filter: blur(2px);
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  animation: fadeUp 1s ease-out;
}

.breadcrumb {
  color: #d6b782;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
}

.breadcrumb span {
  margin: 0 8px;
  color: #fff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section */
.events-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7f9fa 0%, #f3f6f7 100%);
  color: #0b2730;
  /* font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial; */
}

.events-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* .events-header h2 {
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
}
.events-lead {
  color: var(--muted);
  margin: 0;
} */

/* Grid */
.events-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Make <a.event-item> behave like a card */
.event-item {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(11, 39, 48, 0.06);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.35s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.event-item:focus-visible {
  outline: 3px solid rgba(214, 183, 130, 0.25);
  outline-offset: 6px;
  border-radius: calc(var(--card-radius) - 2px);
}

.event-item:hover,
.event-item:focus {
  transform: translateY(-10px) rotateX(1.5deg);
  box-shadow: 0 30px 60px rgba(11, 39, 48, 0.12);
}

/* Media */
.event-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(180deg, #e9eef0, #ffffff);
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s ease;
}

.event-item:hover .event-media img,
.event-item:focus .event-media img {
  transform: scale(1.08) translateY(-4px);
  filter: brightness(0.93) contrast(1.05);
}

/* Decorative arrow in top-right of media area */
.event-deco {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  color: #fff;
  transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease;
  box-shadow: 0 6px 18px rgba(11, 39, 48, 0.08);
}

.event-item:hover .event-deco,
.event-item:focus .event-deco {
  transform: translateY(-4px) scale(1.03);
  background: #182820;
  color: #fff;
}

/* Meta pill: date & location */
.meta-pill {
  width: max-content;
  position: absolute;
  left: 14px;
  top: -12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 39, 48, 0.65);
  color: #fff;
  font-size: 0.85rem;
}

/* Body */
.event-body {
  padding: 1.15rem 1.25rem 1.45rem;
  background: #fff;
  height: 100%;
}

.event-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  color: #0b2730;
  text-transform: none;
}

.event-sub {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Tags */
.event-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.78rem;
  background: rgba(11, 39, 48, 0.06);
  padding: 6px 9px;
  border-radius: 999px;
  color: #314547;
}

/* small responsive tweak */
@media (max-width: 480px) {
  .event-media {
    height: 160px;
  }

  .event-body {
    padding: 0.9rem;
  }
}

/* ðŸŒŸ Section Styling */
.team-projects-section {
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: #222;
  position: relative;
}

/* .section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #df0a0a;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
} */

/* ðŸ“¸ Project Image */
.project-image {
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.project-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-image:hover img {
  transform: scale(1.05);
}

/* ðŸ’¼ Team Cards (Mini Style) */
.team-card.small {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  transform: translateY(0);
}

.team-card.small:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* ðŸ‘¥ Image inside mini card */
.team-card.small .team-img {
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.team-card.small .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

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

/* â„¹ï¸ Info */
.team-card.small .team-info {
  padding: 14px 10px 18px;
}

.team-card.small .team-info h5 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #222;
  font-weight: 600;
}

.team-card.small .team-info p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

/* âœ¨ Subtle divider */
.project-block {
  padding-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
}

.project-block:last-child {
  border: none;
}

/* ðŸ§­ Project Heading Style */
.project-header {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}

.project-title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0 20px;
}

/* ðŸ”´ Accent Lines beside heading */
.project-title::before,
.project-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: #182820;
  border-radius: 2px;
  transform: translateY(-50%);
  opacity: 0.8;
}

.project-title::before {
  left: -70px;
}

.project-title::after {
  right: -70px;
}

/* ðŸŽ‡ Optional subtle fade-in animation */
[data-aos="fade-up"] .project-header {
  animation: fadeSlideIn 0.8s ease forwards;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.strip {
  position: relative;
  background-image: url(assets/img/strip.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* darkness level */
  z-index: 0;
}

.strip>* {
  position: relative;
  z-index: 1;
  /* keeps content above the overlay */
}

/* form  */
.form-wrapper {
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  border: 2px solid var(--primary);
}

.form-title {
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* ========== BRAND SECTION - PARTNERS MARQUEE ========== */

.category-title {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #182820;
  text-transform: uppercase;
  position: relative;
  display: block;
  padding-bottom: 16px;
}



.category-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px !important;
}

.projects-intro-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 !important;
}

.projects-intro-section .feature-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.projects-intro-section .feature-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .category-title {
    font-size: 2rem;
  }

  .category-subtitle {
    font-size: 1.1rem;
  }

  .projects-intro-section .feature-title {
    font-size: 2rem;
  }

  .feature-title {
    font-size: 30px;
  }

  .projects-intro-section .feature-subtitle {
    font-size: 1rem;
  }
}

/* ========== BRAND SECTION - PARTNERS MARQUEE ========== */

.brand-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 100px 0;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f2420 0%, #1a3a2e 50%, #0d1f1a 100%);
}

/* Enhanced background with parallax effect */
.bg-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/img/drive-way.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  transform: scale(1.08);
  filter: saturate(0.85) contrast(1.08) brightness(0.92);
  will-change: transform;
  animation: bgFloat 25s ease-in-out infinite;
}

@keyframes bgFloat {

  0%,
  100% {
    transform: scale(1.08) translateY(0px);
  }

  50% {
    transform: scale(1.08) translateY(-8px);
  }
}

/* FIXED Overlay - Now properly working */
.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 36, 32, 0.72) 0%,
      rgba(15, 36, 32, 0.75) 25%,
      rgba(15, 36, 32, 0.76) 75%,
      rgba(15, 36, 32, 0.72) 100%);
  backdrop-filter: blur(2px);
  z-index: 2;
  pointer-events: none;
}

/* Additional dark vignette for depth */
.bg-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.brand-section .container {
  position: relative;
  z-index: 3;
  /* max-width: 1100px; */
}

/* Section Heading - Enhanced */
.brand-section .section-heading {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: headingFadeIn 0.8s ease-out;
}

@keyframes headingFadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Section Line */
.brand-section .section-line {
  width: 120px;
  height: 5px;
  margin: 18px auto 40px;
  border-radius: 8px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.15),
      rgba(214, 183, 130, 1) 50%,
      rgba(255, 255, 255, 0.15));
  box-shadow: 0 0 20px rgba(214, 183, 130, 0.5),
    0 8px 24px rgba(15, 36, 32, 0.6);
  animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(214, 183, 130, 0.5),
      0 8px 24px rgba(15, 36, 32, 0.6);
  }

  50% {
    box-shadow: 0 0 30px rgba(214, 183, 130, 0.7),
      0 12px 32px rgba(15, 36, 32, 0.8);
  }
}

/* ===========================
   MARQUEE NEW PREMIUM DESIGN
   =========================== */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.marquee {
  overflow: hidden;
  padding: 24px 0;
}

/* Make the track exactly twice the width so it loops smoothly */
.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee 28s linear infinite;
}

/* Correct movement amount */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50%));
  }
}

/* Pause on Hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* ===========================
   LOGO CARD - GLASS PREMIUM
   =========================== */
.logo-card {
  height: auto !important;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

/* Shine Effect */
/* Removed Shine Effect */
.logo-card::after {
  display: none;
}

/* On hover â†’ trigger animation & show shine */
.logo-card:hover::after {
  opacity: 1;
  animation: shine 1.1s ease-out forwards;
}

/* Reset shine instantly when mouse leaves */
.logo-card:not(:hover)::after {
  animation: none !important;
  opacity: 0 !important;
  left: -120% !important;
  /* back to start */
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }

  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.logo-text {
  margin: 0;
  font-size: 14px;
  /* color: rgba(255, 255, 255, 0.4); */
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  transition: all 0.4s ease;
  font-weight: 600;
}

.logo-card img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2) opacity(0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-card:hover img {
  transform: scale(1.15);
  filter: grayscale(0) brightness(1) opacity(1);
}

.logo-wrapper:hover .logo-text {
  opacity: 1;
  color: #f36f21;
  transform: translateY(2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .logo-card {
    min-width: 120px;
  }

  .logo-card img {
    height: 45px;
    max-width: 120px;
  }

  .logo-text {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .marquee-track {
    gap: 30px;
  }
}

/* =====================================================
   AWARDS CAROUSEL â€” MAIN SECTION
===================================================== */
.awards-carousel-section {
  background: #182820;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Container adjustments */
.awards-carousel-wrapper {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  overflow: hidden;
}

.awards-slide-content {
  width: 100%;
}

/* Swiper slide layout */
.awardsSwiper .swiper-slide {
  height: auto !important;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

/* =====================================================
   TEXT CONTENT
===================================================== */
.awards-text-content {
  padding: 20px 40px;
}

.awards-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #fff;
}

.awards-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #dcdcdc;
  margin-bottom: 20px;
}

.awards-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #bfbfbf;
}

/* =====================================================
   YEAR BADGE
===================================================== */
.awards-badge {
  display: inline-block;
  background: #df0a0a;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(223, 10, 10, 0.35);
}

.badge-year {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

/* =====================================================
   META ITEMS
===================================================== */
.awards-meta {
  display: flex;
  gap: 25px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #e6e6e6;
  opacity: 0.9;
  transition: 0.3s ease;
}

.meta-item:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* =====================================================
   IMAGE SECTION
===================================================== */
.awards-image-container {
  position: relative;
  padding-right: 30px;
}

.awards-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.awards-image {
  width: 100%;
  height: 440px;
  object-fit: contain;
  display: block;
  transition: transform 0.7s ease;
}

.awards-image-wrapper:hover .awards-image {
  transform: scale(1.05);
}

/* Overlay */
/* .awards-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.6));
  z-index: 2;
} */

/* =====================================================
   SWIPER NAVIGATION â€” FIXED + OUTSIDE SLIDER
===================================================== */
.awards-nav-prev,
.awards-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;

  color: white !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

/* Move them completely OUTSIDE */
.awards-nav-prev {
  left: 280px;
}

.awards-nav-next {
  right: 280px;
}

/* Hover effect */
.awards-nav-prev:hover,
.awards-nav-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Hide default Swiper arrow icons and use custom ones */
.awards-nav-prev::after,
.awards-nav-next::after {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.awards-nav-prev::after {
  content: "â€¹";
}

.awards-nav-next::after {
  content: "â€º";
}

/* =====================================================
   RESPONSIVE FIXES FOR ARROWS
===================================================== */

/* Tablets (â‰¤ 991px) */
@media (max-width: 991px) {
  .awards-nav-prev {
    left: -40px;
  }

  .awards-nav-next {
    right: -40px;
  }
}

/* Mobiles (â‰¤ 576px) â†’ bring arrows inside a bit */
@media (max-width: 576px) {

  .awards-nav-prev,
  .awards-nav-next {
    width: 40px;
    height: 40px;
  }

  .awards-nav-prev {
    left: 10px;
  }

  .awards-nav-next {
    right: 10px;
  }
}

/* Extra small (â‰¤ 400px) */
@media (max-width: 400px) {
  .awards-nav-prev {
    left: -10px;
  }

  .awards-nav-next {
    right: -10px;
  }
}

/* =====================================================
   VERTICAL LINKS
===================================================== */
.vertical-text {
  position: absolute;
  bottom: 20px;
  left: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.7;
  font-size: 13px;
  letter-spacing: 2px;
}

.vertical-links {
  color: white;
  text-decoration: none;
  font-size: 12px;
}

.vertical-links:hover {
  color: #df0a0a;
}

.global-vertical {
  position: fixed;
  top: 50%;
  bottom: auto;
  /* override inherited bottom */
  left: 35px;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center center;
  /* override left top origin */
  writing-mode: vertical-rl;
  /* transform: rotate(180deg); */
  font-size: 13px;
  letter-spacing: 2px;
  z-index: 1028;
  opacity: 0.8;
  height: max-content;
  color: white;
  /* base color */
  mix-blend-mode: difference;
  /* MAGIC */
}

/* Links */
.global-vertical a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

/* Hover still works */
.global-vertical a:hover {
  color: #df0a0a;
  mix-blend-mode: normal;
  /* keeps red visible */
}

@media (max-width: 1400px) {
  .global-vertical {
    font-size: 11px;
    left: 20px;
  }
}

@media (max-width: 1200px) {
  .global-vertical {
    font-size: 10px;
    left: 15px;
  }

  .global-vertical a {
    font-size: 10px;
  }
}

a:hover {
  color: #fea700 !important;
}

/* =====================================================
   RESPONSIVE STYLES 
===================================================== */

/* Tablets (â‰¤ 991px) */
@media (max-width: 991px) {
  .awardsSwiper .swiper-slide {
    padding: 20px;
  }

  .awards-text-content {
    padding: 10px 20px;
    text-align: center;
  }

  .awards-title {
    font-size: 28px;
  }

  .awards-subtitle {
    font-size: 18px;
  }

  .awards-meta {
    justify-content: center;
  }

  .awards-image-container {
    padding: 0;
    margin-top: 30px;
  }
}

/* Mobile (â‰¤ 576px) */
@media (max-width: 576px) {
  .awards-carousel-section {
    padding: 50px 0;
  }

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

  .awards-subtitle {
    font-size: 16px;
  }

  .awards-description {
    font-size: 14px;
  }

  .awards-meta {
    gap: 12px;
  }

  .meta-item {
    font-size: 13px;
  }

  .vertical-text {
    display: none !important;
  }
}

/* Extra small (â‰¤ 400px) */
@media (max-width: 400px) {
  .awards-title {
    font-size: 22px;
  }

  .awards-subtitle {
    font-size: 14px;
  }

  .awards-description {
    font-size: 13px;
  }
}

.awards-carousel-wrapper {
  position: relative;
}

.swiper-pagination-bullet-active {
  background-color: #fea700 !important;
}

.video-container video {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* FORCE TABLER ICON FONT (fix icon conflict) */
i.ti {
  font-family: "tabler-icons" !important;
  font-style: normal;
  font-weight: normal;
}

/* =====================================================
   ESG SLIDER STYLES
===================================================== */
.esg-slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.esg-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(243, 111, 33, 0.2);
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.esg-nav-btn:hover {
  background: #d4af37;
  color: #fff;
  /* box-shadow: 0 8px 25px rgba(243, 111, 33, 0.4); */
}

.esg-prev {
  left: 0;
}

.esg-next {
  right: 0;
}

.esg-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.esg-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 0 10px;
  box-sizing: border-box;
}

.esg-slide.active {
  opacity: 1;
}

.esg-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  height: 500px;
}

.esg-card:hover {
  background: rgba(243, 111, 33, 0.12);
  border-color: rgba(243, 111, 33, 0.4);
  box-shadow: 0 20px 40px rgba(243, 111, 33, 0.15);
}

.event-card-standard .event-card-image {
  aspect-ratio: 16 / 9;
  height: auto;
}

.event-card-standard .event-content {
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
  background: #fff;
}

.esg-image-slider {
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  order: 2;
}

.esg-card .esg-image-slider {
  width: 50%;
}

.esg-image-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.esg-image-track img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(100%);
  transition: transform 0.8s ease-in-out;
  z-index: 1;
}

.esg-image-track img.active {
  transform: translateX(0);
  z-index: 2;
}

.esg-image-track img.prev {
  transform: translateX(-100%);
  z-index: 1;
}

.esg-image-track img.next-prep {
  transform: translateX(100%);
  transition: none;
  z-index: 0;
}

.esg-card-content {
  padding: 30px;
  width: 50%;
  order: 1;
}

.esg-icon {
  font-size: 48px;
  color: #d4af37;
}

.esg-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.esg-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.esg-list li {
  color: #212529;
  margin-bottom: 20px;
  display: flex !important;
  align-items: center;
  position: relative;
}

/* Standalone / Light Section Overrides */
.bg-white .esg-list li,
.bg-light .esg-list li {
  color: #444;
}

.esg-list li span {
  font-weight: bold;
}

/* Standalone ESG Sections (Dedicated Page) */
.section .esg-image-slider {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 450px;
}

/* Maintain slider-specific width when in the slider */
.esg-card .esg-image-slider {
  width: 50%;
  height: 100%;
}

.esg-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.esg-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.esg-indicator.active {
  background: #d4af37;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.esg-indicator:hover {
  background: rgba(212, 175, 55, 0.7);
}

/* ESG Slider Responsive - Show all cards stacked on mobile */
@media (max-width: 768px) {
  .esg-slider-container {
    padding: 0 15px;
  }

  /* Hide parent slider navigation on mobile */
  .esg-nav-btn,
  .esg-indicators {
    display: none !important;
  }

  /* Stack slides vertically */
  .esg-slider-track {
    flex-direction: column;
    gap: 30px;
    transform: none !important;
  }

  /* Show all slides */
  .esg-slide {
    min-width: 100%;
    opacity: 1 !important;
  }

  /* Card layout - stack content and image */
  .esg-card {
    flex-direction: column;
    height: auto;
  }

  .esg-image-slider,
  .esg-card .esg-image-slider,
  .section .esg-image-slider {
    width: 100%;
    height: 300px;
    /* Improved height for mobile */
    min-height: auto;
    order: 1;
    position: relative;
    border-bottom: 2px solid rgba(243, 111, 33, 0.2);
  }

  .esg-image-track img {
    object-position: center 20%;
    /* Focus on the subject better on mobile */
  }

  .esg-card-content {
    width: 100%;
    padding: 25px 20px;
    order: 2;
  }

  .esg-icon {
    font-size: 36px;
    margin-bottom: 15px !important;
  }

  .esg-card h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .esg-slider-container {
    padding: 0 10px;
  }

  .esg-image-slider,
  .esg-card .esg-image-slider,
  .section .esg-image-slider {
    height: 260px;
    width: 95%;
    margin: 0 auto;
  }

  .esg-card-content {
    padding: 15px;
  }

  .esg-list li {
    font-size: 0.9rem;
  }
}

/* =====================================================
   PROMISES SECTION
===================================================== */
.promises-section {
  background: linear-gradient(rgba(24, 40, 32, 0.9), rgba(24, 40, 32, 0.9)), url('assets/img/main-banner.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.promise-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(243, 111, 33, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}

.promise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(243, 111, 33, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  border-radius: 24px;
}

.promise-card:hover {
  transform: translateY(-15px);
  border-color: rgba(243, 111, 33, 0.6);
  box-shadow: 0 25px 50px -12px rgba(243, 111, 33, 0.3);
}

.promise-card:hover::before {
  opacity: 1;
}

.promise-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  background: #d4af37;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.promise-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 0%, #f36f21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promise-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .promise-card {
    margin-bottom: 30px;
  }
}

/* =====================================================
   CHAIRMAN'S VISION STATEMENT
===================================================== */
.chairman-vision {
  font-size: 1.25rem;
  line-height: 1.8;
  font-style: italic;
  font-weight: 500;
  color: #182820;
  position: relative;
  padding: 2.5rem 3rem;
  margin: 2.5rem auto;
  max-width: 900px;
  letter-spacing: 0.5px;
  text-align: center;
}

.chairman-vision::before {
  content: "\201C";
  position: absolute;
  top: -15px;
  left: 0;
  font-size: 6rem;
  font-family: 'Crimson Pro', serif;
  color: rgba(243, 111, 33, 0.15);
  line-height: 1;
}

.chairman-vision::after {
  content: "\201D";
  position: absolute;
  bottom: -45px;
  right: 0;
  font-size: 6rem;
  font-family: 'Crimson Pro', serif;
  color: rgba(243, 111, 33, 0.15);
  line-height: 1;
}

@media (max-width: 991px) {
  .chairman-vision {
    font-size: 1.15rem;
    padding: 2rem;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .chairman-vision {
    font-size: 1.05rem;
    padding: 1.5rem 1rem;
    margin: 1.5rem auto;
  }

  .chairman-vision::before,
  .chairman-vision::after {
    font-size: 4rem;
  }

  .chairman-vision::before {
    top: -10px;
  }

  .chairman-vision::after {
    bottom: -30px;
  }
}

/* --- MEDIA MENTIONS (Evidence) --- */
.letter-spacing-2 {
  letter-spacing: 2px;
}

.media-mentions {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 18px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.85;
}

.media-link:hover {
  opacity: 1;
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: #f36f21;
}

.media-logo-img {
  max-height: 22px;
  width: auto;
  object-fit: contain;
  /* Original colors preserved */
  filter: none;
}

@media (max-width: 768px) {
  .media-mentions {
    justify-content: center;
    text-align: center;
  }

  .mention-links {
    justify-content: center;
  }
}

/* --- VIDEO SECTION --- */
.video-section {
  width: 100%;
  background: #ffffff !important;
}

.video-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 32px !important;
  /* Deeper rounding for modern premium feel */
  border: 1px solid rgba(195, 160, 80, 0.2);
  /* Subtle gold tint border */
  /* box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12), 0 10px 30px rgba(0, 0, 0, 0.05); */
}

@media (max-width: 767px) {
  .video-container {
    border-radius: 20px !important;
  }
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 991px) {
  .video-container {
    aspect-ratio: 16 / 9;
  }
}







/* --- EXACT MATCH MEDIA MENTIONS (Take 6) --- */
.reference-match-section {
  background: #1e2d24 !important;
  /* Specific Forest Green from reference */
  padding: 80px 0 !important;
}

/* Precise Gold Frame for Hero Image */
.framed-image-wrapper {
  position: relative;
  display: flex;
  /* Flex ensures the image can fill the height */
  padding: 15px;
  /* Visual space for the outer frame */
  width: 100%;
  height: 100%;
}

.framed-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #d4af37;
  /* The Outer Gold Frame */
  pointer-events: none;
  z-index: 5;
}

.framed-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Symmetrical fill */
  border: none;
  box-shadow: none;
}

/* Pioneers Highlight Line - Premium Content */
.pioneer-highlight {
  color: #c9a44c;
  /* Premium Gold/Champagne */
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  border-left: 2px solid #c9a44c;
  padding-left: 20px;
  margin: 30px 0;
  text-align: left;
}

@media (max-width: 991px) {
  .pioneer-highlight {
    font-size: 18px;
    padding-left: 15px;
    text-align: center;
    border-left: none;
    border-top: 1px solid #c9a44c;
    border-bottom: 1px solid #c9a44c;
    padding: 15px 0;
  }
}

/* Reference Label (Gold Serif) */
.reference-label {
  font-family: 'Crimson Pro', serif;
  color: #c9a44c;
  /* Slightly more muted gold like reference */
  font-size: 20px;
  letter-spacing: 3px;
  /* More tracking for prestige */
  margin-top: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
  text-transform: uppercase;
  font-weight: 500;
}

/* Reference Grid & Cards */
.reference-grid {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  align-items: center;
}

.reference-card {
  flex: 0 0 auto;
}

.reference-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 140px;
  /* Reference size */
  height: 75px;
  padding: 12px;
  border-radius: 8px;
  /* Rounded corners */
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.reference-link img {
  max-width: 90%;
  max-height: 40px;
  object-fit: contain;
}

.reference-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .reference-match-section {
    padding: 50px 0 !important;
  }

  .framed-image-wrapper {
    margin-bottom: 30px;
    padding: 10px;
  }

  .reference-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .reference-link {
    width: 140px;
    height: 75px;
  }
}

@media (max-width: 575px) {
  .reference-grid {
    gap: 10px;
  }

  .reference-card {
    flex: 0 0 calc(50% - 5px);
    width: calc(50% - 5px);
  }

  .reference-link {
    width: 100%;
    height: 65px;
  }

  .reference-label {
    font-size: 18px;
    text-align: center;
  }
}

/* Vertical Text Slider */
.text-slider-wrapper {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-slider-container {
  height: 32px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.text-slider-track {
  display: flex;
  flex-direction: column;
  animation: textSlideVertical 10s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
}

.text-slider-item {
  font-family: "Trajan Pro Regular", serif;
  font-size: 1.4rem;
  color: #d4af37;
  letter-spacing: 2px;
  height: 32px;
  line-height: 32px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

@keyframes textSlideVertical {

  0%,
  28% {
    transform: translateY(0);
  }

  33%,
  61% {
    transform: translateY(-32px);
  }

  66%,
  94% {
    transform: translateY(-64px);
  }

  100% {
    transform: translateY(-96px);
  }
}

@media (max-width: 768px) {
  .text-slider-item {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
}

/* =====================================================
   PREMIUM UI ENHANCEMENTS (Glassmorphism & Gradients)
===================================================== */
:root {
  --accent-gold: #d4af37;
  --accent-gold-light: #f1e5ac;
  --forest-dark: #0f2420;
  --forest-deep: #08140f;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-hover: rgba(255, 255, 255, 0.08);
}

.premium-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.premium-glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-divider-premium {
  width: 80px;
  height: 3px;
  background: var(--accent-gold);
  margin: 20px auto;
  position: relative;
}

.section-divider-premium::before,
.section-divider-premium::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.section-divider-premium::before {
  left: -15px;
}

.section-divider-premium::after {
  right: -15px;
}

/* Enhanced Hero Banner (Standardized for internal pages) */
.inner-banner {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inner-banner .overlay {
  background: linear-gradient(to bottom, rgba(8, 20, 15, 0.7), rgba(8, 20, 15, 0.9));
}

.banner-title {
  font-family: "Trajan Pro Regular", serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
  /* text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); */
}

@media (max-width: 768px) {
  .inner-banner {
    height: 40vh;
    min-height: 300px;
  }

  .banner-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
}

/* Standalone ESG page overrides (to prevent hiding standalone sections) */
.section .esg-slide {
  opacity: 1 !important;
  min-width: unset !important;
  padding: 0;
}

/* PR & Events Mockup Styling */
.event-card-featured,
.event-card-standard {
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  text-decoration: none !important;
}

.event-card-featured:hover,
.event-card-standard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-card-featured {
  background: #000;
}

.event-card-standard {
  background: #fff;
}

.event-card-image {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.event-card-standard .event-card-image {
  aspect-ratio: 16 / 9;
  height: auto;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* .event-card-featured:hover .event-card-image img,
.event-card-standard:hover .event-card-image img {
  transform: scale(1.05);
} */

.event-card-featured .event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.event-card-standard .event-content {
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
  background: #fff;
}

.event-card-standard .event-overlay-gradient {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}

.event-card-featured .event-title {
  font-family: "Trajan Pro Regular", serif;
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.event-card-standard .event-title {
  font-family: "Trajan Pro Regular", serif;
  font-size: 1.25rem;
  color: #182820;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-card-featured .event-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

.event-card-standard .event-desc {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.event-card-standard .meta-pill {
  top: -15px;
  left: 1.5rem;
  background: #fff !important;
  color: #182820 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 4px 12px;
  font-weight: 600;
}

.event-card-featured .meta-pill {
  position: static;
  display: inline-flex;
  margin-bottom: 1rem;
  background: #fff;
  color: #182820;
}

@media (max-width: 991px) {
  .event-card-featured .event-title {
    font-size: 1.8rem;
  }
}

/* =====================================================
   DNA HELIX TIMELINE
===================================================== */
.dna-section {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #0d1f1a 0%, #0b1a15 50%, #0d1f1a 100%);
  position: relative;
  overflow: hidden;
}

.dna-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold, #d4af37);
  margin-bottom: 0.75rem;
}

.dna-header {
  margin-bottom: 3.5rem;
}

.dna-header .feature-title {
  color: #fff;
}

.dna-header .feature-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.dna-header .section-divider-premium {
  background: var(--accent-gold, #d4af37);
}

/* ---- Helix Container ---- */
.dna-helix {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

/* ---- SVG Wave ---- */
.dna-wave {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ---- Node (row) ---- */
.dna-node {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
  /* Increased for image cards */
  z-index: 2;
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}


.dna-node:last-child {
  margin-bottom: 0;
}

/* Right-side node */
.dna-node--right {
  flex-direction: row;
  justify-content: flex-start;
  padding-left: 52%;
  transform: translateX(30px);
}

/* Left-side node */
.dna-node--left {
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 52%;
  transform: translateX(-30px);
}

/* Revealed state */
.dna-node.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Connector + Dot ---- */
.dna-connector {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dna-node--right .dna-connector {
  margin-right: 16px;
}

.dna-node--left .dna-connector {
  margin-left: 16px;
}

/* Connector line */
.dna-connector::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.25));
  transform: translateY(-50%);
}

.dna-node--left .dna-connector::before {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.05));
}

/* Dot */
.dna-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-gold, #d4af37);
  position: relative;
  z-index: 3;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

/* Active glow */
.dna-node.is-active .dna-dot {
  box-shadow:
    0 0 0 6px rgba(212, 175, 55, 0.15),
    0 0 20px rgba(212, 175, 55, 0.25);
  transform: scale(1.25);
}

/* ---- Card ---- */
.dna-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  max-width: 650px;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active card */
.dna-node.is-active .dna-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.06);
  transform: scale(1.03);
}

/* Hover */
.dna-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

/* ---- Card Typography ---- */
.dna-card-date {
  font-family: "Trajan Pro Regular", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold, #d4af37);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 1px;
  line-height: 1;
}

.dna-card-title {
  font-family: "Trajan Pro Regular", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.dna-card-desc {
  font-family: "Trajan Pro Regular", serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0;
}

/* ---- Card Image ---- */
.dna-card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 20px;
}

.dna-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.dna-wave-path--active {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

/* =====================================================
   DNA HELIX TIMELINE — Responsive
===================================================== */
@media (max-width: 991px) {
  .dna-section {
    padding: 4rem 0 5rem;
  }

  .dna-helix {
    max-width: 700px;
  }

  .dna-node--right {
    padding-left: 54%;
  }

  .dna-node--left {
    padding-right: 54%;
  }

  .dna-card {
    padding: 1.25rem 1.3rem;
    max-width: 280px;
  }

  .dna-card-date {
    font-size: 1.3rem;
  }

  .dna-card-title {
    font-size: 1rem;
  }

  .dna-connector {
    width: 36px;
  }
}

@media (max-width: 768px) {
  .dna-section {
    padding: 3.5rem 0 4rem;
  }

  .dna-header {
    margin-bottom: 2.5rem;
  }

  /* Hide SVG wave on mobile */
  .dna-wave {
    display: none;
  }

  .dna-helix {
    max-width: 100%;
    padding: 0;
    /* Subtle vertical line replacement */
    border-left: 2px solid rgba(212, 175, 55, 0.12);
    margin-left: 20px;
    padding-left: 24px;
  }

  /* Stack all nodes vertically, same direction */
  .dna-node,
  .dna-node--right,
  .dna-node--left {
    padding-left: 0;
    padding-right: 0;
    flex-direction: row;
    justify-content: flex-start;
    transform: translateY(20px);
    margin-bottom: 1.5rem;
  }

  .dna-node.is-revealed {
    transform: translateY(0);
  }

  .dna-connector {
    width: 32px;
    margin-right: 12px;
    margin-left: 0;
  }

  .dna-node--left .dna-connector {
    margin-left: 0;
    margin-right: 12px;
    order: -1;
  }

  .dna-node--left .dna-card {
    order: 0;
  }

  .dna-connector::before {
    display: none;
  }

  .dna-card {
    max-width: 100%;
    padding: 1.15rem 1.1rem;
    border-radius: 16px;
  }

  .dna-card-date {
    font-size: 1.2rem;
  }

  .dna-card-title {
    font-size: 0.95rem;
  }

  .dna-card-desc {
    font-size: 0.82rem;
  }

  .dna-dot {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .dna-section {
    padding: 3rem 0;
  }

  .dna-helix {
    margin-left: 14px;
    padding-left: 18px;
  }

  .dna-node {
    margin-bottom: 1.25rem;
  }

  .dna-card {
    padding: 1rem 0.9rem;
    border-radius: 14px;
  }

  .dna-card-date {
    font-size: 1.1rem;
  }

  .dna-card-title {
    font-size: 0.9rem;
  }

  .dna-card-desc {
    font-size: 0.78rem;
  }

  .dna-dot {
    width: 10px;
    height: 10px;
  }

  .dna-connector {
    width: 24px;
    margin-right: 10px;
  }
}

/* =====================================================
   ESG PAGE STYLES - Synchronized Icons
===================================================== */
.esg-icon-box {
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

/* Dark variant for dark sections */
.esg-icon-box--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.esg-icon-box i {
  font-size: 1.25rem;
  z-index: 2;
}

/* Hover Effects */
.esg-list li:hover .esg-icon-box,
.premium-glass-card:hover .esg-icon-box,
.esg-card-item:hover .esg-icon-box,
.esg-hover-container:hover .esg-icon-box,
.d-flex:hover .esg-icon-box {
  transform: translateY(-3px);
  border-color: #d4af37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.12);
}

.esg-icon-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.5s;
}

.esg-list li:hover .esg-icon-box::after,
.premium-glass-card:hover .esg-icon-box::after,
.esg-card-item:hover .esg-icon-box::after,
.esg-hover-container:hover .esg-icon-box::after {
  left: 100%;
}


/* ============================================
   SCENE TIMELINE — UCLA-INSPIRED CINEMATIC
   ============================================ */

/* Outer scroll-height container */
.scene-timeline-section {
  position: relative;
  width: 100%;
  background: #000;
  height: 900vh;
  /* Each step gets ~100vh of scroll */
  margin: 0 !important;
  padding: 0 !important;
}

/* Sticky viewport */
.sticky-wrapper {
  position: sticky;
  top: 76px;
  /* Offset for navbar */
  height: calc(100dvh - 76px);
  width: 100%;
  overflow: hidden;
  background: #000;
  z-index: 10;
}

/* ─── Background layers ─── */
.bg-layers {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  transform: scale(1.05);
}

.bg-layer.active {
  opacity: 1;
  z-index: 3;
  transform: scale(1);
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bg-layer.previous {
  opacity: 1;
  z-index: 2;
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 4;
}

/* ─── Interior two-panel grid ─── */
.timeline-interior {
  position: relative;
  z-index: 5;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
  padding: 0 60px;
}

/* ─── LEFT: Vertical Year Rail ─── */
.timeline-rail {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-indices {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 6;
}

.index-item {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  opacity: 0.35;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  /* Remove padding for mathematically perfect dot alignment */
  padding-left: calc(50% - 6px);
}

.index-item:hover {
  opacity: 0.8;
}

.index-item.active {
  opacity: 1;
}

.index-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-sizing: border-box;
}

.index-item.active .index-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
  transform: scale(1.3);
}

.index-item.active .index-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.index-year {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Trajan Pro Bold', serif;
  letter-spacing: 2px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.index-item.active .index-year {
  color: #fff;
  font-size: 1.25rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.rail-line {
  position: absolute;
  top: calc(25% + 6px);
  /* Starts exactly at center of first dot */
  bottom: calc(25% + 6px);
  /* Ends exactly at center of last dot */
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 4;
}

.rail-progress {
  position: absolute;
  top: 0;
  left: -0.5px;
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, var(--accent), #f3e5ab);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  transition: height 0.3s linear;
  z-index: 5;
}

/* ─── RIGHT: Content Area ─── */
.timeline-content-area {
  display: grid;
  /* Grid overlapping allows perfect centering of all cards without absolute positioning constraints */
  align-items: center;
  padding-left: 80px;
  height: 100%;
}

.scene-content {
  grid-area: 1 / 1;
  max-width: 1100px;
  padding: 40px 0 40px 48px;
  background: transparent;
  border-left: 2px solid rgba(212, 175, 55, 0.6);
  /* Refined elegant gold anchor line */
  position: relative;

  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.scene-content.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Stunning stroked year watermark integrating with the headline */
.timeline-section-header h2 {
  margin-top: 3.5rem;
}

.scene-marker {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  /* Reduced from 20px */
  font-family: 'Trajan Pro Bold', serif;
  line-height: 1;
  letter-spacing: 6px;
  position: relative;
  z-index: 0;
  transform: translateX(-5px);
}

.scene-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 2px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
}

.scene-desc {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  /* font-family: 'Trajan Pro Regular', serif; */
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 800px;
}


/* ─── RESPONSIVE: Tablet & Smaller Desktop ─── */
@media (max-width: 1440px) {
  .scene-marker {
    font-size: 2.8rem;
  }

  .scene-title {
    font-size: 1.8rem;
  }

  .scene-desc {
    font-size: 1rem;
    max-width: 700px;
  }
}

/* Height-based media query for laptops (e.g., 1366x768) */
@media (max-height: 800px) and (min-width: 992px) {
  .timeline-section-header h2 {
    font-size: 1.5rem !important;
    margin-top: 20px !important;
  }

  .scene-marker {
    font-size: 2.8rem;
    margin-bottom: 0px;
  }

  .scene-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .scene-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .timeline-indices {
    top: 20%;
    bottom: 20%;
  }

  .scene-people-grid {
    margin-top: 1rem !important;
    max-width: 320px !important;
  }

  .premium-project-card h5 {
    font-size: 0.95rem;
  }

  .possession-badge {
    padding: 0.3em 0.6em;
    font-size: 0.7rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  /* Navbar Tightening */
  .nav-link {
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
  }

  .navbar-nav {
    gap: 5px !important;
  }

  /* Timeline Spacing Fix for Overlap */
  .timeline-interior {
    grid-template-columns: 180px 1fr;
    padding: 0 30px;
  }

  .timeline-content-area {
    padding-left: 40px;
  }

  .scene-marker {
    font-size: 2.8rem !important;
  }

  .scene-title {
    font-size: 1.8rem !important;
  }

  .scene-desc {
    font-size: 1rem;
    max-width: 600px;
  }

  .premium-project-card h5 {
    font-size: 0.95rem;
  }
}

@media (max-width: 1200px) {
  .timeline-interior {
    grid-template-columns: 140px 1fr;
    padding: 0 30px;
  }

  .timeline-content-area {
    padding-left: 110px;
  }

  .scene-content {
    padding: 30px 24px;
  }
}

/* ─── RESPONSIVE: Mobile ─── */
@media (max-width: 991px) {
  .scene-timeline-section {
    height: 800vh !important;
    margin: 0;
  }

  .sticky-wrapper {
    top: 70px;
    height: calc(100dvh - 70px);
    display: block !important;
  }

  .timeline-section-header {
    text-align: left !important;
    padding-left: 65px !important;
    white-space: nowrap;
  }

  .timeline-section-header h2 {
    font-size: 1.4rem !important;
    margin-top: 30px !important;
  }

  .timeline-interior {
    grid-template-columns: 45px 1fr;
    grid-template-rows: 1fr;
    padding: 0 5px;
    align-items: stretch;
  }

  .timeline-rail {
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .rail-line {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
  }

  .rail-progress {
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .timeline-indices {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 0;
    right: 0;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }

  .index-item {
    flex-direction: row;
    gap: 0;
    padding: 0;
    padding-left: 0;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .index-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    position: relative;
    z-index: 10;
  }

  .index-year {
    display: none !important;
    /* Force hide to prevent overrides */
  }

  .index-item.active .index-dot {
    background: #d4af37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
    transform: scale(1.3);
  }

  /* Pulse effect for active dot on mobile */
  .index-item.active .index-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid #d4af37;
    animation: pulseDot 2s infinite;
  }

  @keyframes pulseDot {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }

    100% {
      transform: scale(2.5);
      opacity: 0;
    }
  }

  /* Content Area on Mobile - Restoring Grid Layering */
  .timeline-content-area {
    display: grid !important;
    /* Forces stacking */
    padding-left: 15px;
    padding-top: 0;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  .scene-content {
    grid-area: 1 / 1 !important;
    /* Key fix: stacks all panels on one spot */
    width: 100% !important;
    padding: 30px 15px;
    border-radius: 16px;
    box-sizing: border-box;
    border-left: none !important;
  }

  .scene-marker {
    font-size: 2.5rem;
  }

  .scene-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .scene-desc {
    font-size: 1rem;
    line-height: 1.6;
  }

  .scroll-hint {
    display: none;
  }

  /* Hide hint on mobile to save space */
}

@media (max-width: 575px) {
  .scene-timeline-section {
    height: 600vh !important;
  }

  .timeline-interior {
    padding: 0 16px;
  }

  .scene-content {
    padding: 24px 20px;
  }

  .scene-marker {
    font-size: 2rem;
  }

  .scene-title {
    font-size: 1.4rem;
  }

  .scene-desc {
    font-size: 0.95rem;
  }

}

/* =====================================================
   TIMELINE HIGHLIGHT IMAGES (2010-2011)
===================================================== */
.timeline-highlight-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.milestone-highlight-item {
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.milestone-highlight-item:hover {
  transform: translateY(-5px);
}

.milestone-img-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #d4af37, #fef4a4, #d4af37);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}

.milestone-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.milestone-highlight-item:hover .milestone-img-wrapper img {
  filter: grayscale(0%);
}

.milestone-label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* DNA Mini Highlights */
.timeline-highlight-row.mini {
  gap: 10px;
}

.milestone-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  object-fit: cover;
  transition: all 0.3s ease;
}

.milestone-mini:hover {
  transform: scale(1.2);
  z-index: 5;
  border-color: #d4af37;
}

@media (max-width: 991px) {
  .timeline-highlight-row {
    justify-content: center;
    gap: 15px;
  }
}

.project-card-wrapper {
  max-width: 600px;
  width: 100%;
}

/* Project Milestone Cards */
.premium-project-card {
  background: rgba(0, 0, 0, 0.616);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.premium-project-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(5px);
}

.premium-project-card h5 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0;
  color: #fff;
}

.possession-badge {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-weight: 400;
  padding: 0.4em 0.8em;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.phase-label {
  color: #d4af37;
  font-size: 0.9em;
  margin-left: 5px;
}

/* -----------------------------------------
   Precision Engineering Section Cards
   ----------------------------------------- */
@keyframes hCardFloat {
  0% {
    transform: translateY(0px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  50% {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
  }

  100% {
    transform: translateY(0px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
}

@keyframes hCardFloatOffset {
  0% {
    transform: translateY(0px) translateX(30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  50% {
    transform: translateY(-15px) translateX(30px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
  }

  100% {
    transform: translateY(0px) translateX(30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
}

.highlight-card-animated {
  animation: hCardFloat 8s ease-in-out infinite;
  transition: border-color 0.6s ease, background 0.6s ease, transform 0.6s ease;
}

.highlight-card-animated.offset {
  animation: hCardFloatOffset 8s ease-in-out infinite;
  animation-delay: -4s;
}

.highlight-card-animated:hover {
  border-color: rgba(212, 175, 55, 0.9) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  animation-play-state: paused;
}

@media (max-width: 991px) {
  .highlight-card-animated.offset {
    transform: translateX(0) !important;
    animation: hCardFloat 8s ease-in-out infinite;
    animation-delay: -4s;
  }
}

/* =========================================================================
   PREMIUM USP SHOWCASE SECTION
   ========================================================================= */

.premium-usp-showcase {
  background-color: #0b1712;
  /* Deep emerald / midnight teal */
}

/* Ambient Lighting Overlays */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.bg-gold-glow {
  width: 600px;
  height: 600px;
  background: #d4af37;
  top: -200px;
  left: -100px;
  animation: luxuryPulse 8s infinite alternate;
}

.bg-teal-glow {
  width: 500px;
  height: 500px;
  background: #182820;
  bottom: -150px;
  right: -50px;
  animation: luxuryPulse 10s infinite alternate-reverse;
}

@keyframes luxuryPulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

.gold-line-separator {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 auto;
}

/* Glassmorphic Panel Layout */
.usp-premium-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease, border-color 0.6s ease;
  background: rgba(11, 23, 18, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.usp-premium-panel:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.usp-panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 2.5s ease;
  z-index: 1;
}

.usp-premium-panel:hover .usp-panel-bg {
  transform: scale(1.08);
}

.usp-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(11, 23, 18, 0.75) 0%, rgba(11, 23, 18, 0.678) 100%);
}

.usp-panel-content {
  position: relative;
  z-index: 3;
  padding: 30px;
  transition: transform 0.6s ease;
}

.usp-premium-panel:hover .usp-panel-content {
  transform: translateZ(30px);
}

/* Typography styles for panel */
.usp-huge-text {
  font-size: 5rem;
  font-weight: 800;
  font-family: 'Trajan Pro Regular', serif;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #f9f2d0 0%, #d4af37 50%, #9a7818 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 5px 25px rgba(212, 175, 55, 0.2);
}

.usp-sub-text {
  font-size: 1.15rem;
  letter-spacing: 4px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .usp-huge-text {
    font-size: 4rem;
  }

  .usp-premium-panel {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .usp-huge-text {
    font-size: 3.2rem;
  }

  .usp-sub-text {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .usp-premium-panel {
    height: 320px;
  }
}

.pulse-glow-text {
  animation: USPgoldPulse 4s ease-in-out infinite;
}

@keyframes USPgoldPulse {

  0%,
  100% {
    filter: brightness(1) drop-shadow(0px 0px 10px rgba(212, 175, 55, 0.1));
  }

  50% {
    filter: brightness(1.2) drop-shadow(0px 0px 25px rgba(212, 175, 55, 0.4));
  }
}

/* Aesthetic structural accents */
.light-beam {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.08), transparent);
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}

.usp-premium-panel:hover .light-beam {
  opacity: 1;
}

.measurement-lines {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), transparent);
  z-index: 4;
}

.measurement-lines.left {
  left: 40px;
}

.measurement-lines.right {
  right: 40px;
}

.measurement-lines::before,
.measurement-lines::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 1px;
  background: rgba(212, 175, 55, 0.8);
  left: -3px;
}

.measurement-lines::before {
  top: 0;
}

.measurement-lines::after {
  bottom: 0;
}

.parking-lanes {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  border-bottom: 2px dashed rgba(212, 175, 55, 0.4);
  z-index: 4;
  overflow: hidden;
}

.parking-lanes::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
  animation: parkingMotion 4s linear infinite;
}

@keyframes parkingMotion {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.z-index-2 {
  z-index: 2;
}

/* =====================================================
   ESG ENVIRONMENT SECTION STYLES
   ===================================================== */
.sticky-slider {
  position: sticky !important;
  top: 100px !important;
  display: block !important;
  z-index: 100 !important;
  margin-bottom: 2rem;
  overflow: visible !important;
}

#environment,
#environment .container,
#environment .row {
  overflow: visible !important;
}

.env-category-header {
  margin: 3.5rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 5;
}

.env-category-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.env-category-header h4 {
  font-family: 'Trajan Pro Regular', serif;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.env-pointer-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.env-pointer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.env-pointer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.env-pointer-card:hover::before {
  opacity: 1;
}

.env-pointer-card i {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  display: block;
}

.env-pointer-card h6 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Trajan Pro Regular', serif;
}

.env-sub-list {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.env-sub-item {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.env-sub-item i {
  font-size: 0.9rem;
  margin-top: 3px;
  color: var(--accent);
  margin-bottom: 0;
}

.esg-pills .nav-link {
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.esg-pills .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.esg-pills .nav-link.active {
  background: linear-gradient(135deg, #d4af37, #f36f21);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  .esg-image-slider {
    height: 350px;
  }

  .env-category-header {
    margin: 2.5rem 0 1.5rem;
  }
}

/* ========================================= */
/* PREMIUM KINETIC PANORAMA (ENVIRONMENT)   */
/* ========================================= */
#environment {
  background-color: #0c120f;
  /* min-height: 120vh; */
  display: flex;
  overflow: hidden;
}

.kinetic-left {
  width: 45%;
  position: relative;
  height: 120vh;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.kinetic-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.kinetic-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s ease-out;
  transform: scale(1.1);
}

.kinetic-left img.active {
  opacity: 1;
  transform: scale(1);
}

.kinetic-right {
  width: 55%;
  display: flex;
  flex-direction: column;
  height: 120vh;
  background: #080d0b;
}

.kinetic-ribbon {
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: flex 0.8s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5rem;
  overflow: hidden;
  cursor: pointer;
  background: #0c120f;
  position: relative;
}

.kinetic-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(220, 180, 100, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.kinetic-ribbon:hover,
.kinetic-ribbon.active {
  flex: 3.5;
  background: #111a15;
}

.kinetic-ribbon:hover::before,
.kinetic-ribbon.active::before {
  opacity: 1;
}

.premium-heading {
  font-family: 'Trajan Pro Regular', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  letter-spacing: -0.5px;
}

.kinetic-ribbon:hover .premium-heading,
.kinetic-ribbon.active .premium-heading {
  color: #fff;
  transform: translateY(-5px);
  letter-spacing: 0px;
}

.kinetic-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease 0.2s, transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.kinetic-ribbon:hover .kinetic-content,
.kinetic-ribbon.active .kinetic-content {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
  margin-top: 2.5rem;
}

.kinetic-p {
  width: calc(50% - 1rem);
  border-left: 1px solid rgba(220, 180, 100, 0.3);
  padding-left: 1.5rem;
  transition: border-color 0.4s ease;
}

.kinetic-p:hover {
  border-left-color: #dcb464;
}

.kinetic-p h6 {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .kinetic-ribbon {
    padding: 0 3rem;
  }

  .premium-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  #environment {
    flex-direction: column;
    overflow: visible;
    height: auto;
    min-height: auto;
  }

  .kinetic-left,
  .kinetic-right {
    width: 100%;
    height: 50vh;
  }

  .kinetic-right {
    height: auto;
  }

  .kinetic-ribbon {
    flex: none !important;
    min-height: 100px;
    padding: 1.5rem 2rem;
  }

  .premium-heading {
    font-size: 1.8rem;
  }

  /* On mobile, only use the .active class for expansion, not :hover */
  .kinetic-ribbon.active {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .kinetic-p {
    width: 100%;
  }
}

/* UTILITIES FOR KINETIC CONTENT */
.bg-darker {
  background-color: #080d0b;
}

.x-small {
  font-size: 0.72rem;
  line-height: 1.5;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-widest {
  letter-spacing: 3px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* =====================================================
   GREEN POINTS SLIDER — ESG Environment Section
===================================================== */
.dark-luxury-bg {
  background: linear-gradient(145deg, #0c120f 0%, #080d0b 100%);
  position: relative;
}

.dark-luxury-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.gp-hero-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background-position: bottom;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gp-image-frame {
  overflow: hidden;
  border-radius: 24px;
}

.gp-image-frame:hover .gp-hero-img {
  transform: scale(1.05);
}

.gp-slider-wrapper {
  position: relative;
}

.greenPointsSwiper {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.5),
    inset 0 0 1px rgba(255, 255, 255, 0.1);
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gp-slide-pair {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 2.5rem;
  justify-content: center;
}

/* ---- Each Green Point Item ---- */
.gp-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.gp-item:last-child {
  border-bottom: none;
}

.gp-item:hover {
  transform: translateX(12px);
}

/* ---- Icon Box inside slider ---- */
.gp-item .esg-icon-box {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.gp-item .esg-icon-box i {
  font-size: 1.8rem;
  color: #d4af37;
  transition: all 0.5s ease;
}

.gp-item:hover .esg-icon-box {
  background: linear-gradient(135deg, #d4af37, #b8962d);
  border-color: #f1d27b;
  transform: translateY(-8px) rotate(8deg);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.gp-item:hover .esg-icon-box i {
  color: #0c120f !important;
  background: none !important;
  -webkit-text-fill-color: #0c120f;
}

/* ---- Item Body ---- */
.gp-item-body {
  flex: 1;
}

.gp-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 4px;
  margin-bottom: 8px;
  font-family: 'Trajan Pro Regular', serif;
  text-transform: uppercase;
  opacity: 0.9;
}

.gp-title {
  font-size: 1.35rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  font-family: 'Trajan Pro Regular', serif;
  letter-spacing: 0.3px;
  transition: color 0.4s ease;
}

.gp-item:hover .gp-title {
  color: #f1d27b;
}

/* ---- Sub-points ---- */
.gp-sub-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
}

.gp-sub-list li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.gp-sub-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700;
}

/* ---- Navigation Row ---- */
.gp-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.gp-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 4px;
  color: #d4af37;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Trajan Pro Regular', serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gp-nav-btn:hover {
  background: #d4af37;
  color: #0c120f;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

.gp-nav-btn i {
  font-size: 1.2rem;
}

/* ---- Counter ---- */
.gp-counter {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Trajan Pro Regular', serif;
  color: rgba(255, 255, 255, 0.4);
}

.gp-current {
  color: #d4af37;
  font-weight: 700;
  font-size: 1.8rem;
}

.gp-sep {
  font-size: 1.3rem;
}

.gp-total {
  font-size: 0.95rem;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .gp-hero-img {
    min-height: 420px;
  }

  .gp-slide-pair {
    min-height: auto;
  }
}

@media (max-width: 991px) {
  .gp-hero-img {
    min-height: 340px;
    height: 340px;
  }

  .gp-slide-pair {
    min-height: auto;
  }

  .gp-item {
    padding: 1.1rem 0.75rem;
  }
}

@media (max-width: 576px) {
  .gp-hero-img {
    min-height: 240px;
    height: 240px;
  }

  .gp-slide-pair {
    padding: 0.5rem 0.75rem;
    min-height: auto;
  }

  .gp-item {
    gap: 12px;
    padding: 1rem 0.5rem;
    margin: 0 -0.5rem;
  }

  .gp-item .esg-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
  }

  .gp-item .esg-icon-box i {
    font-size: 1.1rem;
  }

  .gp-title {
    font-size: 0.88rem;
  }

  .gp-sub-list li {
    font-size: 0.74rem;
  }

  .gp-nav-btn span {
    display: none;
  }

  .gp-nav-btn {
    padding: 11px 16px;
    border-radius: 50%;
  }
}

/* =====================================================
   LUXURY ENQUIRY MODAL (REVAMPED)
===================================================== */
.luxury-modal-content {
  background: #0d1611 !important;
  /* Deeper Green */
  border: none !important;
  border-radius: 0px !important;
  /* Sharp Luxury Edges */
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8) !important;
}

.luxury-form-side {
  background: #0d1611 !important;
}

.luxury-modal-side {
  position: relative;
  min-height: 400px;
  background: url('assets/img/Terrace-4k.png') no-repeat center center/cover !important;
}

.luxury-modal-logo {
  max-width: 150px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.luxury-side-title {
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-family: 'Trajan Pro Bold', serif;
}

.gold-line {
  width: 40px;
  height: 1px;
  background: #d4af37;
}

.luxury-form-title {
  letter-spacing: 3px;
  font-family: 'Trajan Pro Bold', serif;
}

.luxury-form-subtitle {
  letter-spacing: 2px;
}

.side-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 22, 17, 0.85);
  backdrop-filter: blur(2px);
}

.side-content {
  position: relative;
  z-index: 2;
}

.luxury-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: transparent !important;
  opacity: 0.5;
  filter: invert(1);
  transition: opacity 0.3s ease;
  z-index: 10;
}

.luxury-close-btn:hover {
  opacity: 1;
}

/* Luxury Form Elements */
.luxury-group {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem !important;
  /* Increased spacing for floated labels */
}

.luxury-input {
  width: 100%;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: #fff !important;
  padding: 12px 0 !important;
  font-size: 1rem !important;
  letter-spacing: 1px !important;
  transition: all 0.4s ease !important;
  outline: none !important;
  border-radius: 0 !important;
  height: auto !important;
  /* Reset height */
}

.luxury-input:focus {
  border-bottom-color: #d4af37 !important;
}

/* Override Webkit Autofill Styles */
.luxury-input:-webkit-autofill,
.luxury-input:-webkit-autofill:hover,
.luxury-input:-webkit-autofill:focus,
.luxury-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 50px #0d1611 inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
  font-family: 'Crimson Pro', serif !important;
}

.luxury-label {
  position: absolute;
  top: 12px;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  letter-spacing: 2px;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
}

/* Floating Label Logic */
.luxury-input:focus~.luxury-label,
input.luxury-input:not(:placeholder-shown)~.luxury-label,
.luxury-select:valid~.luxury-label {
  top: -15px;
  font-size: 0.75rem;
  color: #d4af37;
  opacity: 1;
}

.luxury-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d4af37' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0 center !important;
  background-size: 14px !important;
  padding-right: 30px !important;
}

.luxury-input option {
  background-color: #0d1611 !important;
  color: #fff !important;
  padding: 15px !important;
}

/* Luxury Button */
.luxury-btn {
  background: #d4af37 !important;
  color: #0d1611 !important;
  border: 1px solid #d4af37 !important;
  border-radius: 0 !important;
  font-family: 'Trajan Pro Bold', serif !important;
  font-size: 0.9rem !important;
  letter-spacing: 3px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxury-btn:hover {
  background: transparent !important;
  color: #d4af37 !important;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1) !important;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.luxury-btn:hover .btn-icon {
  transform: translateX(5px);
}

.luxury-thank-you-panel {
  background: #0d1611 !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 0 !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6) !important;
  max-width: 700px;
  width: 100%;
}

.thank-you-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('assets/img/Terrace-4k.png') no-repeat center center/cover;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 20, 15, 0.8), rgba(8, 20, 15, 0.95));
  z-index: 1;
}

.thank-you-hero .container {
  position: relative;
  z-index: 2;
}

.btn-outline-gold {
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  border-radius: 0 !important;
  font-family: 'Trajan Pro Bold', serif !important;
  transition: all 0.4s ease !important;
}

.btn-outline-gold:hover {
  background: #d4af37 !important;
  color: #182820 !important;
}

/* Checkmark Animation */
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #d4af37;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 0 auto;
  box-shadow: inset 0px 0px 0px #d4af37;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 40px #d4af37;
  }
}

/* --- CERTIFICATIONS SECTION --- */
.cert-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  border-radius: 24px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cert-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cert-card:hover::before {
  opacity: 1;
}

.cert-img-wrapper {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cert-img-wrapper img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.8) contrast(1.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-card:hover .cert-img-wrapper img {
  filter: grayscale(0) brightness(1) contrast(1);
  transform: scale(1.05);
}

.cert-card h5 {
  font-family: 'Trajan Pro Bold', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  z-index: 1;
  margin: 0;
  transition: color 0.4s ease;
}

.cert-card:hover h5 {
  color: #d4af37;
}


/* --- ESG REFACTORING STYLES --- */
.inner-banner.esg-hero {
  background-image: url('assets/img/main-banner.png');
}

.esg-section-light {
  background-color: #fbfbfb;
}

.esg-badge {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.8rem;
}

.feature-title-premium {
  font-size: 2rem;
  text-transform: none;
  letter-spacing: -1px;
  line-height: 1.2;
  font-family: 'Trajan Pro Regular', serif;
}

.feature-title-premium.large {
  font-size: 2.4rem;
}

@media (max-width: 991px) {
  .feature-title-premium {
    font-size: 2rem;
  }

  .feature-title-premium.large {
    font-size: 2.2rem;
  }
}

/* --- COMPLIANCE PAGE STYLES --- */
/* Premium Light Theme for Compliance */
.compliance-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Ambient soft glows for light background */
.compliance-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  border-radius: 50%;
}

.compliance-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(24, 40, 32, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  border-radius: 50%;
}

.compliance-container {
  position: relative;
  z-index: 2;
}

.compliance-item {
  background: #ffffff;
  border: 1px solid rgba(24, 40, 32, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.compliance-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #d4af37, #b8952a);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.compliance-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 35px rgba(24, 40, 32, 0.08);
}

.compliance-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.compliance-title {
  color: #182820;
  font-family: 'Trajan Pro Regular', 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.compliance-meta {
  color: #6c757d;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.compliance-meta i {
  color: #d4af37;
  margin-right: 8px;
}

/* Premium Button Design (Light Theme) */
.compliance-btn {
  background: transparent;
  color: #182820 !important;
  border: 1px solid #182820;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.compliance-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #182820;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.compliance-btn:hover {
  color: #d4af37 !important;
  border-color: #182820;
  box-shadow: 0 8px 20px rgba(24, 40, 32, 0.2);
}

.compliance-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.compliance-btn i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.compliance-btn:hover i {
  transform: translateY(2px);
}

.icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.icon-wrapper i {
  color: #d4af37;
  font-size: 1.2rem;
}

.inner-banner.compliance-banner {
  background-image: url('assets/img/main-banner.png');
}

.compliance-divider {
  width: 60px;
  height: 2px;
  background: #d4af37;
  margin: 30px auto 0;
}

/* --- PREMIUM DOC CARD (2-COLUMN GRID) --- */
.premium-doc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.premium-doc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.premium-doc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 40, 32, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
}

.premium-doc-card:hover::before {
  opacity: 1;
}

.doc-download-btn {
  position: relative;
  z-index: 1;
  background: #182820;
  color: #ffffff;
  padding: 14px 35px;
  border-radius: 50px;
  font-family: 'Trajan Pro Regular', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  border: 1px solid #182820;
  box-shadow: 0 8px 20px rgba(24, 40, 32, 0.15);
}

.premium-doc-card:hover .doc-download-btn {
  background: #d4af37;
  color: #182820;
  border-color: #d4af37;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}

.doc-download-btn i {
  font-size: 1.1rem;
  transition: transform 0.4s ease;
}

.premium-doc-card:hover .doc-download-btn i {
  transform: translateY(3px);
}

.doc-title-text {
  position: relative;
  z-index: 1;
  font-family: 'Crimson Pro', serif;
  font-size: 1.15rem;
  color: #182820;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

.premium-doc-card:hover .doc-title-text {
  color: #d4af37;
}

/* --- WHATSAPP STICKY BUTTON --- */
.whatsapp-sticky-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-sticky-btn:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  color: #FFF !important;
}

@media (max-width: 767px) {
  .whatsapp-sticky-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

/* ---------- BLOG PAGE ---------- */
.blog-section {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

/* List Card Styling */
.blog-list-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(24, 40, 32, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none !important;
  color: inherit !important;
  margin-bottom: 30px;
}

.blog-list-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(24, 40, 32, 0.08);
}

.blog-list-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-list-card:hover .blog-list-image img {
  transform: scale(1.05);
}

.blog-list-body {
  padding: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-list-title {
  font-family: 'Crimson Pro', 'Trajan Pro', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #182820;
  margin-bottom: 12px;
  line-height: 1.35;
  transition: color 0.3s ease;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-list-card:hover .blog-list-title {
  color: #d4af37;
}

.blog-list-excerpt {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 20px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-list-readmore {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: all 0.3s ease;
}

.blog-list-readmore i {
  -webkit-text-fill-color: #d4af37;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.blog-list-card:hover .blog-list-readmore i {
  transform: translateX(5px);
}

/* --- Blog Meta --- */
.blog-meta-pill {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
}

.blog-meta-date {
  font-size: 0.8rem;
  color: #777777;
  font-weight: 500;
}

/* --- Premium Pagination --- */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.premium-pagination {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-pagination li {
  margin: 0;
}

.premium-pagination a,
.premium-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(24, 40, 32, 0.1);
  background: #ffffff;
  color: #182820;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.premium-pagination a:hover {
  border-color: #d4af37;
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.premium-pagination li.active span {
  background: linear-gradient(135deg, #d4af37, #b8952a);
  border-color: #d4af37;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.premium-pagination li.disabled span {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.05);
}

/* Responsive Customizations */
@media (max-width: 991px) {
  .blog-list-image {
    height: 240px;
  }

  .blog-list-body {
    padding: 25px;
  }

  .blog-list-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 767px) {
  .blog-list-image {
    height: 200px;
  }

  .blog-list-body {
    padding: 20px;
  }

  .blog-list-title {
    font-size: 1.25rem;
    -webkit-line-clamp: 2;
  }

  .blog-list-excerpt {
    font-size: 0.88rem;
    -webkit-line-clamp: 3;
    margin-bottom: 15px;
  }

  .blog-list-card {
    margin-bottom: 20px;
  }
}