*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #1c1c1c;
  font-family: 'Poppins', Helvetica, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 80px));
  height: 60px;
  background: #2e2e2e;
  border-radius: 50px;
  box-shadow: 0 4px 6px #0000007a;
  z-index: 50;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.navbar-logo-link {
  width: 13.24%;
  display: block;
}

.navbar-logo {
  width: 100%;
  height: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 60px;
}

.navbar-links a {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #f07025;
}

/* ── PAGE WRAPPER ── */
.page {
  position: relative;
  width: 100%;
  min-width: 320px;
}

/* ── BG RECTANGLE (top hero image) ── */
.bg-rect-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(180px, 18vw, 360px) clamp(20px, 11.46vw, 220px) 0;
}

.hero-text {
  font-weight: 300;
  font-size: clamp(24px, 2.45vw, 47px);
  line-height: 1.3;
  color: #fff;
}

.hero-text .accent {
  color: #f07025;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
}

.hero-icon {
  width: 150px;
  height: auto;
  flex-shrink: 0;
  margin-top: 25px;
}


/* ── DECORATIVE GROUP (top-right) ── */
.deco-group-right {
  position: absolute;
  top: clamp(250px, 19.3vw, 371px);
  right: -43px;
  width: clamp(160px, 20.4vw, 392px);
  height: auto;
  pointer-events: none;
  transform: scale(1.2);
}

@media (max-width: 1280px) {
  .deco-group-right {
    top: 234px;
    right: -30px;
  }
}

@media (max-width: 1024px) {
  .deco-group-right {
    top: 187px;
    right: -25px;
  }
}

@media (max-width: 912px) {
  .deco-group-right {
    display: none;
  }
}



/* ── SHOWREEL BLOCK ── */
.showreel-block {
  position: relative;
  padding: clamp(40px, 6vw, 120px) clamp(20px, 11.46vw, 220px) 0;
}

.showreel-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.showreel-img-wrap img.showreel-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0px 0px 40px 10px #f0702538;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(80px, 8.44vw, 162px);
  height: clamp(80px, 8.44vw, 162px);
  border-radius: 50%;
  border: 5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.play-btn:hover {
  border-color: #f07025;
}

.play-btn img {
  width: clamp(36px, 4.2vw, 80px);
  height: auto;
}

.showreel-label {
  padding: 14px clamp(20px, 11.46vw, 220px) 0;
}

.showreel-label h2 {
  font-weight: 400;
  font-size: clamp(36px, 4.48vw, 86px);
  color: #fff;
}

/* ── DIVIDER LINE ── */
.divider {
  display: block;
  height: 0;
  border: none;
  border-top: 3px dotted rgba(255, 255, 255, 0.6);
  margin: 4px clamp(20px, 11.46vw, 220px) 0;
}

/* ── SECTION HEADING ROW ── */
.section-heading-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  padding: 0 20px;
}

.section-heading-content {
  display: flex;
  flex-direction: column;
}

.section-heading-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.section-badge {
  width: clamp(80px, 8vw, 154px);
  height: auto;
}

.section-title {
  font-weight: 400;
  font-size: clamp(50px, 6vw, 100px);
  color: #f07025;
  margin-left: 0;
}

.section-subtitle {
  margin-top: 16px;
  margin-left: calc(clamp(80px, 8vw, 154px) + 24px);
  max-width: 450px;
  font-weight: 400;
  font-size: clamp(14px, 1.04vw, 16px);
  color: #fff;
  line-height: 1.5;
}

/* ── SPOTLIGHT GRID ── */
.spotlight-grid {
  display: block;
  padding: 80px clamp(20px, 11.46vw, 220px) 0;
}

.spotlight-grid::after {
  content: "";
  display: table;
  clear: both;
}

#work-grid .card-text {
  gap: 80px;
}

#work .section-heading-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#work .section-heading-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

#work .section-subtitle {
  margin: 0;
  font-size: 20px;
  margin-left: 320px;
  max-width: 600px;
  line-height: 1.6;
}

/* Responsive - stack on smaller screens */
@media (max-width: 1024px) {
  #work .section-subtitle {
    margin-left: 240px;
  }
}

@media (max-width: 768px) {
  #work .section-subtitle {
    margin-left: 0;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  #work .section-heading-left {
    gap: 8px;
  }
  
  #work .section-subtitle {
    font-size: 16px;
    max-width: 100%;
  }
}

/* ── SPOTLIGHT CARD ── */
.spotlight-card {
  position: relative;
  width: calc(50% - 20px);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}

/* ── SPOTLIGHT CARD IMAGES ── */
.spotlight-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
}

.spotlight-card .card-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.spotlight-card .card-blur-bg {
  position: absolute;
  top: -3.29%;
  left: -6.94%;
  width: 110%;
  height: 65.84%;
  filter: blur(25px);
  z-index: 0;
  object-fit: cover;
}

@media (min-width: 769px) {
  .spotlight-card:nth-child(odd) {
    float: left;
    clear: left;
  }

  .spotlight-card:nth-child(even) {
    float: right;
    clear: right;
  }

  .spotlight-card.card-2 {
    margin-top: 130px;
  }

  .spotlight-card.card-3,
  .spotlight-card.card-4,
  .spotlight-card.card-5,
  .spotlight-card.card-6 {
    margin-top: 20px;
  }
}

/* ── WORK PAGE SPOTLIGHT CARDS MARGINS ── */
@media (min-width: 769px) {
  .spotlight-card.work-card-2 {
    margin-top: 180px;
  }

  .spotlight-card.work-card-3 {
    margin-top: 20px;
  }

  .spotlight-card.work-card-4 {
    margin-top: 20px;
  }

  .spotlight-card.work-card-5 {
    margin-top: 20px;
  }

  .spotlight-card.work-card-6 {
    margin-top: 20px;
  }

  .spotlight-card.work-card-8 {
    margin-top: 20px;
  }

  .spotlight-card.work-card-9,
  .spotlight-card.work-card-10,
  .spotlight-card.work-card-11,
  .spotlight-card.work-card-12 {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .spotlight-grid {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    gap: 60px;
  }

  .spotlight-card {
    width: 100%;
    margin-bottom: 0;
    margin-top: 0 !important;
    float: none;
  }
}

.spotlight-card .card-img-wrap {
  position: relative;
  overflow: hidden;
}

.spotlight-card .card-blur-bg {
  position: absolute;
  top: -3.29%;
  left: -6.94%;
  width: 110%;
  height: 65.84%;
  filter: blur(25px);
  z-index: 0;
  object-fit: cover;
}

.spotlight-card .card-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.spotlight-card .card-main-img:hover {
  transform: scale(1.1);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  margin-bottom: 8px;
}

.card-tags span {
  font-size: clamp(10px, 0.8vw, 12px);
  color: #a4a4a4;
  border: 1px solid #a4a4a4;
  padding: 4px 12px;
  border-radius: 20px;
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 20px;
}

.card-text h2 {
  font-weight: 400;
  font-size: clamp(22px, 1.98vw, 38px);
  line-height: 1.15;
  color: #fff;
}

.card-text p {
  font-weight: 400;
  font-size: clamp(14px, 1.04vw, 20px);
  color: #fff;
  line-height: 1.5;
}

.hidden-card {
  display: none;
}

.hidden-card.visible {
  display: flex;
}


/* ── CLIENTS SECTION ── */
.clients-heading-row {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 0 clamp(20px, 11.46vw, 220px);
  gap: clamp(40px, 8vw, 120px);
}

.clients-heading-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.clients-title {
  font-weight: 400;
  font-size: clamp(50px, 6vw, 100px);
  color: #f07025;
  margin-left: 0;
}

.clients-subtitle {
  max-width: 1200px;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  line-height: 1.5;
}

/* ── MARQUEE ── */
.marquee-wrap {
  display: block;
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  height: auto;
  overflow-x: scroll !important;
  overflow-y: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0;
  margin-top: 60px;
  margin-bottom: 60px;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.marquee-wrap::-webkit-scrollbar {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
}

.marquee-wrap::-webkit-scrollbar-track {
  display: none !important;
}

.marquee-wrap::-webkit-scrollbar-thumb {
  display: none !important;
}

.marquee-wrap:active,
.marquee-wrap.grabbing {
  cursor: grabbing;
  -webkit-cursor-grabbing: grabbing;
}

.marquee-wrap img {
  display: inline-block;
  vertical-align: middle;
  height: 135px;
  width: auto;
  max-width: none !important;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  image-rendering: auto;
  -webkit-print-color-adjust: exact;
}

.marquee-wrap img:hover {
  filter: brightness(1.1) contrast(1.05);
}

@media (max-width: 768px) {
  .marquee-wrap {
    padding: 15px 0;
    margin: 40px 0;
  }

  .marquee-wrap img {
    height: 80px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .marquee-wrap {
    -webkit-overflow-scrolling: touch;
  }
}

/* ── FOOTER ── */
footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-spacer {
  height: 68px;
  width: 100%;
}

.footer-main {
  position: relative;
  width: 100%;
  background: #1c1c1c;
  box-shadow: 0px -4px 60px rgba(240, 112, 37, 0.2);
  min-height: 424px;
}

.footer-deco {
  position: absolute;
  bottom: -65px;
  left: -10px;
  width: clamp(100px, 12vw, 240px);
  height: auto;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) clamp(20px, 11.46vw, 220px);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 415px;
}

.footer-col-logo img {
  width: clamp(160px, 15.7vw, 302px);
  height: auto;
}

.footer-address {
  font-weight: 400;
  font-size: clamp(14px, 1.04vw, 20px);
  color: #a4a4a4;
  line-height: 1.5;
  margin-top: 12px;
}

.footer-col-nav {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 4px;
}

.footer-col-nav a {
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 24px);
  color: #fff;
  transition: color 0.2s;
}

.footer-col-nav a:hover {
  color: #f07025;
}

.footer-col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 48px;
}

.back-to-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
}

.back-to-top span {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 24px);
  color: #fff;
  transition: color 0.2s;
}

.back-to-top-circle {
  width: 44px;
  height: 44px;
  border-radius: 50px;
  border: 2px solid #f07025;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.back-to-top-circle i {
  font-size: 32px;
  color: #f07025;
  font-weight: 700;
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  vertical-align: 0 !important;
  line-height: 0 !important;
}

.back-to-top-circle i::before {
  vertical-align: 0 !important;
}

.back-to-top:hover .back-to-top-circle {
  background-color: #f07025;
  border-color: #f07025;
}

.back-to-top:hover .back-to-top-circle i {
  color: #fff;
}

.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.social-icons a img {
  height: clamp(24px, 2.34vw, 44px);
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s;
}

.social-icons a:hover img {
  opacity: 0.75;
}

.copyright {
  font-weight: 400;
  font-size: clamp(14px, 1.04vw, 20px);
  color: #fff;
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 900px) {
  .navbar {
    top: 20px;
  }

  .hero-section {
    padding-top: clamp(120px, 20vw, 200px);
  }

  .showreel-block {
    padding-top: clamp(40px, 8vw, 80px);
  }

  .section-heading-row,
  .clients-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-subtitle,
  .clients-subtitle {
    margin-left: 0;
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-col-right {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .navbar-links {
    gap: 20px;
  }

  .section-title,
  .clients-title {
    margin-left: 0;
  }

  .spotlight-grid {
    gap: 40px;
  }
}

/* ── WORK PAGE EXTRAS ── */
.hidden-card {
  display: none !important;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
}

.card-tags span {
  font-size: 10px;
  color: #a4a4a4;
  border: 1px solid #4a4a4a;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.see-more-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -20px;
  padding-bottom: 80px;
  clear: both;
}

.see-more-btn {
  border: 1px solid #f07025;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  padding: 10px 40px;
  cursor: pointer;
  text-transform: lowercase;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.see-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f07025;
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.see-more-btn:hover {
  color: #fff;
  border-color: #f07025;
}

.see-more-btn:hover::before {
  left: 0;
}

.archive-grid {
  padding: 0 clamp(20px, 11.46vw, 220px);
  margin-top: 40px;
}

.archive-row-divider {
  width: 100vw;
}

.top-divider {
  margin: 0 clamp(20px, 11.46vw, 220px) 40px;
}

.archive-heading-row {
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 11.46vw, 220px);
}

.archive-badge-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.archive-title {
  font-weight: 400;
  font-size: clamp(50px, 6vw, 100px);
  color: #f07025;
  margin-left: 0;
}

.archive-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 0;
}

.archive-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 150px;
}

.archive-item {
  color: #fff;
  font-size: clamp(14px, 1.2vw, 16px);
  cursor: default;
  transition: color 0.3s;
}

.archive-item:hover {
  color: #f07025;
}

.center-hover-img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  max-width: 60%;
  max-height: 60vh;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  border-radius: 8px;
}

/* ── ABOUT PAGE ── */
.about-hero-section {
  padding: clamp(100px, 15vw, 160px) clamp(20px, 11.46vw, 220px) 0;
}

.about-hero-bg {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  margin-block: 40px;
  position: relative;
  z-index: 9999;
}

.about-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-intro-title {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-intro-deco {
  width: clamp(60px, 6vw, 100px);
  height: auto;
}

.about-intro-text {
  font-size: clamp(14px, 1.25vw, 20px);
  color: #fff;
  line-height: 1.6;
  max-width: 800px;
  margin-left: clamp(84px, 8.5vw, 124px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
  align-items: stretch;
}

.service-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px;
  position: relative;
  min-width: 0;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  width: 3px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0) 0%);
  background-position: center;
  background-size: 3px 10px;
  background-repeat: repeat-y;
}

.service-col-divider {
  display: none;
}

.service-header {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-end;
}

.service-icon {
  width: clamp(80px, 8vw, 120px);
  height: auto;
  flex-shrink: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-col h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  color: #f07025;
  font-weight: 400;
  text-align: left;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
  padding-bottom: 8px;
}

.service-col p {
  font-size: 20px;
  color: #a4a4a4;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}

.read-more-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
}

.read-more-line {
  position: absolute;
  width: 100%;
  height: 3px;
  border: none;
  background-image: url('../assets/line-1.svg');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  z-index: 1;
}

.read-more-btn {
  background: #1c1c1c;
  padding: 10px 24px;
  border: 1px solid #f07025;
  color: #fff;
  font-size: 24px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f07025;
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.read-more-btn:hover {
  color: #fff;
  border-color: #f07025;
}

.read-more-btn:hover::before {
  left: 0;
}

.read-more-btn.active {
  background: #f07025;
  border-color: #f07025;
}

.hidden-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(-15px) scaleY(0.85);
  filter: blur(8px);
}

.hidden-text.active {
  max-height: 600px;
  opacity: 1;
  margin-top: 16px;
  margin-bottom: 16px;
  transform: translateY(0) scaleY(1);
  filter: blur(0);
}

.hidden-text.closing {
  animation: closeTextSmooth 0.8s cubic-bezier(0.16, 0.5, 0.3, 1) forwards;
}

@keyframes closeTextSmooth {
  0% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    filter: blur(0);
    max-height: 600px;
  }
  70% {
    opacity: 0.3;
    filter: blur(4px);
  }
  100% {
    opacity: 0;
    transform: translateY(-15px) scaleY(0.85);
    filter: blur(8px);
    max-height: 0;
  }
}

/* ── CULTIVATORS ── */
.cultivators-section {
  padding: 120px clamp(20px, 11.46vw, 220px) 0;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cultivators-heading {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  max-width: 700px;
}

.cultivators-desc {
  font-size: 20px;
  color: #a4a4a4;
  line-height: 1.8;
  margin: 80px 0 0 0;
  max-width: 650px;
  text-align: justify;
}

.founder-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-img-wrap {
  width: clamp(300px, 60vw, 800px);
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.founder-title {
  color: #f07025;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
}

.founder-name {
  color: #fff;
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

.section-divider-img {
  width: 100%;
  height: auto;
  margin-top: 40px;
  opacity: 0.6;
  flex-basis: 100%;
}


/* ── TEAM GRIDS ── */
.team-section {
  padding: 80px clamp(20px, 11.46vw, 220px) 0;
}

.team-heading {
  font-size: clamp(32px, 3vw, 48px);
  color: #f07025;
  font-weight: 400;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.team-member {
  display: block;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  border-radius: 4px;
}

.team-member h4,
.team-member p {
  margin: 0;
  padding: 0;
}

.team-member h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-top: 10px;
}

.team-member p {
  color: #f07025;
  font-size: 16px;
  line-height: 1.3;
  margin-top: 4px;
}

.section-divider2-img {
  width: 100%;
  height: auto;
  margin-top: 80px;
  opacity: 0.6;
  flex-basis: 100%;
}

.member-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.member-card img {
  width: 100%;
  display: block;
}

.member-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

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

.member-card .name {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.member-card .role {
  color: #ddd;
  font-size: 18px;
  margin-top: 4px;
}

.team-arrow {
  cursor: pointer;
}

.team-arrow circle {
  fill: transparent;
  stroke: #f07025;
  transition: all 0.3s ease;
}

.team-arrow polyline,
.team-arrow line {
  stroke: #f07025;
  transition: all 0.3s ease;
}

.team-arrow:hover circle {
  fill: #f07025;
}

.team-arrow:hover polyline,
.team-arrow:hover line {
  stroke: #ffffff;
}

/* ── COLLAPSIBLE TEAM ── */
.toggle-team-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  margin-bottom: 40px;
}

.team-arrow {
  transition: transform 0.3s ease;
}

.team-arrow.rotated {
  transform: rotate(-180deg);
}

.collapsible-team-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
  overflow: hidden;
}

.collapsible-team-wrap.expanded {
  grid-template-rows: 1fr;
}

.large-team-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.large-team-grid .team-member h4,
.large-team-grid .team-member p {
  display: none;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-col:nth-child(even)::after {
    display: none;
  }

  .service-col:nth-child(odd)::after {
    display: block;
  }

  .cultivators-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-grid,
  .large-team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-col::after {
    display: none;
  }

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

  .about-intro-text {
    margin-left: 0;
  }
}

/* ── PROJECT DETAIL PAGE ── */
.project-detail {
  padding: clamp(100px, 15vw, 160px) clamp(20px, 11.46vw, 220px) 20px;
}

.project-info {
  margin-block: 80px;
}

.project-info h1 {
  font-size: 44px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 24px;
}

.project-info p {
  color: #a4a4a4;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
  text-align: justify;
}

.project-imagery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-hero-img img,
.project-footer-img img,
.project-img-grid-half img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.project-hero-img {
  overflow: hidden;
  background: #0b3b60;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.project-hero-img img {
  width: 100%;
}

.project-img-grid-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Annual Report */
.annual-report-section {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.annual-report-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.annual-report-right {
  flex: 1;
  background: #1a1a1a;
  border-radius: 4px;
  padding: 0;
  min-height: 300px;
  overflow: hidden;
}

.annual-report-right img {
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  display: block;
}

.annual-report-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.annual-report-header h2 {
  color: #f07025;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #f07025;
  font-size: 12px;
  pointer-events: none;
}

.annual-year-select {
  appearance: none;
  background: #2e2e2e;
  border: 1px solid #f07025;
  border-radius: 6px;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 20px);
  font-family: inherit;
  padding: 8px 40px 8px 16px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.annual-year-select:hover,
.annual-year-select:focus {
  border-color: #f07025;
}

.annual-year-select option {
  background: #2e2e2e;
  color: #fff;
}

.annual-report-left p {
  color: #a4a4a4;
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
  text-align: justify;
}


/* Slider */
.related-projects-section {
  position: relative;
  margin-top: 40px;
  padding-bottom: 60px;
  overflow: visible;
}

.related-slider-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.related-slider-track {
  display: flex;
  gap: 40px;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.related-slider-track>.spotlight-card {
  flex: 0 0 calc(31.6% - 13.33px);
  /* 3 cards visible minus gap maths */
  min-width: 0;
  float: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  clear: none !important;
  width: auto !important;
}

.related-slider-track>.spotlight-card .card-text p {
  display: none;
}

.slider-controls {
  position: absolute;
  right: -50px;
  top: 40%;
  z-index: 10;
}

#related-card-text {
  margin-left: 20px;
}

.related-arrow-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  position: absolute;
  right: calc(2.4% - 27px);;
  top: 35%;
  transform: translateY(-50%);
  z-index: 20;
}

.related-arrow-btn svg {
  background-color: transparent;
  border-radius: 50%;
  width: 55px;
  height: 55px;
}

.related-arrow-btn.flipped {
  transform: translateY(-50%) rotate(180deg);
}

.related-slider-track > .spotlight-card .card-img-wrap {
  height: 280px;
}

.related-slider-track > .spotlight-card .card-main-img {
  height: 100%;
}

@media (max-width: 1024px) {
  .annual-report-section {
    flex-direction: column;
  }

  .annual-report-right {
    width: 100%;
  }

  .related-slider-track>.spotlight-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .project-img-grid-half {
    grid-template-columns: 1fr;
  }

  .related-slider-track>.spotlight-card {
    flex: 0 0 100%;
  }

  .related-arrow-btn {
    bottom: -50px;
    left: 50%;
    right: unset;
  }
}