@import url("./index.css");

body {
  font-family: Satoshi, 'Inter', sans-serif;
}

/* ==========================================================================
   Component: Hero.css
   ========================================================================== */

/* About Hero Section Styles */
.about-hero-section {
  width: 100%;
  background: #ffffff;
  padding: 0 clamp(16px, 3vw, 40px);
  overflow: hidden;
  position: relative;
  min-height: auto;
  box-sizing: border-box;
}

.about-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 24px 0 clamp(36px, 5vw, 60px) 0;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tagline */
.about-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.about-hero-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tagline-dash {
  color: #85BD56;
  font-weight: 700;
  font-size: 16px;
}

/* Heading: Who we are */
.about-hero-title {
  font-family: Satoshi, Inter, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 56px;
  color: rgb(6, 6, 18);
  font-style: normal;
  margin: 0 0 clamp(16px, 2vw, 28px) 0;
  text-align: center;
}

.about-hero-title .green {
  color: var(--85BD56, #85BD56);
}

.about-hero-title-underline {
  width: 60px;
  height: 4px;
  background: #599632;
  border-radius: 2px;
  margin: 12px auto 40px auto;
}

/* Outer Card Frame styling */
.about-hero-card-frame {
  display: flex;
  width: 100%;
  max-width: 1320px;
  padding: clamp(10px, 1.5vw, 16px);
  justify-content: center;
  align-items: center;
  border-radius: clamp(16px, 2vw, 24px);
  border: 1px solid #FFFFFF;
  background: #F5F5F5;
  box-shadow: 0 0 6px 1px rgba(6, 6, 18, 0.16) inset;
  box-sizing: border-box;
}

/* Outer Card styling */
.about-hero-card {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: clamp(12px, 1.5vw, 18px);
  box-shadow: 0 10px 40px rgba(6, 6, 18, 0.05);
  overflow: hidden;
  border: 1px solid #E5E4E2;
}

/* Inner Card styling */
.about-hero-inner-card {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  box-sizing: border-box;
}

/* Left part of card: Text content */
.about-hero-card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  padding: clamp(24px, 3.5vw, 40px) clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  background: #FFFFFF;
}

/* Story Tagline */
.about-hero-story-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.story-dash {
  color: #599632;
  font-weight: 700;
  font-size: 16px;
}

.about-hero-story-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
}

.about-hero-card-heading {
  color: var(--060612, #060612);
  text-align: left;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(26px, 3.6vw, 44px);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(34px, 4.4vw, 56px);
  margin: 0 0 12px 0;
}

.about-hero-card-heading .highlight-green {
  color: #599632;
}

.green-bar-underline {
  width: 48px;
  height: 4px;
  background: #599632;
  border-radius: 2px;
  margin-bottom: 18px;
}

.about-hero-card-desc-group {
  margin-bottom: 8px;
}

.about-hero-card-desc-group p {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(13.5px, 1.1vw, 15px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 10px 0;
  text-align: justify;
}

.about-hero-card-desc-group p:last-child {
  margin-bottom: 0;
}

/* Google Reviews Badge styling */
.google-reviews-badge {
  background: #F7F7F7;
  border: 1px solid #EDEDED;
  border-radius: 16px;
  padding: clamp(12px, 1.5vw, 16px) clamp(14px, 2vw, 20px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 20px);
  width: 100%;
  box-sizing: border-box;
  margin-top: 12px;
}

.reviews-avatars-group {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
  margin-left: -12px;
  flex-shrink: 0;
}

.avatar-img.avatar-dummy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F0F8EC;
  box-sizing: border-box;
}

.avatar-img:first-child {
  margin-left: 0;
}

.avatar-plus-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EAEAEA;
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #060612;
  margin-left: -12px;
  flex-shrink: 0;
}

.reviews-rating-info {
  text-align: left;
}

.rating-stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.rating-number-text {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 12px;
  color: #69686E;
  font-weight: 500;
  margin-left: 8px;
}

.rating-trusted-text {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(12.5px, 1vw, 13.5px);
  color: #060612;
  margin: 0;
  font-weight: 500;
}

.rating-trusted-text .green-highlight {
  color: #599632;
  font-weight: 700;
}

/* Right part of card: Image container */
.about-hero-card-right {
  width: clamp(300px, 32vw, 440px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.about-hero-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background-color: lightgray;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .about-hero-card-frame {
    padding: 12px;
    border-radius: 20px;
  }
  .about-hero-card {
    border-radius: 14px;
  }
  .about-hero-inner-card {
    flex-direction: column-reverse;
    gap: 12px;
    padding: 12px;
  }
  .about-hero-card-right {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .about-hero-image {
    height: 320px;
    min-height: 0;
  }
  .about-hero-card-left {
    padding: 32px 24px;
  }
}

@media (max-width: 1300px) {
  .about-hero-container {
    padding: 8px 0 32px 0;
  }
}

@media (max-width: 960px) {
  .about-hero-section,
  .about-meaning-section {
    padding: 0 24px;
  }
  .about-hero-container {
    padding: 8px 0 32px 0;
  }
}

@media (max-width: 600px) {
  .about-hero-image {
    height: 220px;
    min-height: 0;
  }
  .google-reviews-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .avatar-img:first-child {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .about-hero-section,
  .about-meaning-section {
    padding: 0 16px;
  }
  .about-hero-container {
    padding: 4px 0 20px 0;
  }
  .about-hero-image {
    height: 180px;
    min-height: 0;
  }
  .about-hero-card-frame,
  .about-craft-card-frame {
    padding: 8px;
    border-radius: 16px;
  }
  .about-hero-card,
  .about-craft-card {
    border-radius: 12px;
  }
  .about-hero-inner-card {
    gap: 8px;
    padding: 8px;
  }
}

/* ==========================================================================
   Component: Story.css
   ========================================================================== */

/* About Story Section Styles */
.about-story-section {
  width: 100%;
  background: #ffffff;
  padding: 0 clamp(16px, 3vw, 40px);
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.about-story-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(36px, 5vw, 60px) 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Tagline */
.about-story-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.about-story-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Main Heading */
.about-story-heading {
  color: var(--060612, #060612);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(26px, 3.6vw, 44px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 48px 0;
  text-align: left;
  max-width: 1280px;
  width: 100%;
}

/* Content Grid */
.about-story-content-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(32px, 4vw, 64px);
  width: 100%;
}

/* Left Column: Image */
.about-story-grid-left {
  flex: 1;
  min-width: 0;
}

.about-story-image {
  width: 100%;
  height: clamp(240px, 35vw, 524px);
  border-radius: clamp(12px, 1.5vw, 16px);
  background-color: lightgray;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Right Column: Text */
.about-story-grid-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story-grid-right p {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(14px, 1.15vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .about-story-content-grid {
    flex-direction: column;
    gap: 24px;
  }
  .about-story-grid-left,
  .about-story-grid-right {
    width: 100%;
  }
}



/* ==========================================================================
   Component: Leaf.css
   ========================================================================== */

/* About Leaf Section Styles */
.about-leaf-section {
  width: 100%;
  background: #ffffff;
  padding: 0 clamp(16px, 3vw, 40px);
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.about-leaf-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(36px, 5vw, 60px) 0;
  box-sizing: border-box;
}

/* Two-Column Grid */
.about-leaf-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: clamp(32px, 4vw, 64px);
  width: 100%;
}

/* Left Column */
.about-leaf-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.about-leaf-title {
  color: var(--060612, #060612);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  max-width: 100%;
  white-space: nowrap;
}

.about-leaf-intro {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(14px, 1.15vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 16px 0 clamp(24px, 3vw, 40px) 0;
  max-width: 608px;
}

/* Features list */
.about-leaf-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.about-leaf-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.feature-icon-box {
  width: clamp(44px, 4vw, 56px);
  height: clamp(44px, 4vw, 56px);
  border-radius: 8px;
  border: 1px solid #E5E4E2;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(6, 6, 18, 0.02);
}

.feature-icon-box svg {
  width: clamp(20px, 2vw, 24px);
  height: clamp(20px, 2vw, 24px);
}

.feature-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-title {
  color: var(--060612, #060612);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 4px 0;
}

.feature-desc {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(13px, 1.05vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  max-width: 528px;
}

/* Right Column: Cards */
.about-leaf-right {
  flex: 1;
  max-width: 440px;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.about-leaf-outer-card {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 1px solid #FFF;
  background: #F5F5F5;
  box-shadow: 0 0 6px 1px rgba(6, 6, 18, 0.16) inset;
  padding: clamp(10px, 1.5vw, 16px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-leaf-inner-card {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 8px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(6, 6, 18, 0.04);
}

.leaf-symbol-image {
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
}

/* Responsive Overrides */
@media (max-width: 1000px) {
  .about-leaf-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .about-leaf-right {
    width: 100%;
  }
  .about-leaf-outer-card {
    height: auto;
    aspect-ratio: 608 / 400;
  }
  .about-leaf-left {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
}

/* ==========================================================================
   Component: Team.css
   ========================================================================== */

/* About Team Section Styles */
.about-team-section {
  width: 100%;
  background: #ffffff;
  padding: 0 clamp(16px, 3vw, 40px);
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.about-team-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(36px, 5vw, 60px) 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-team-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Header Tagline & Title */
.about-team-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.about-team-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-team-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
  margin-bottom: 48px;
}

.about-team-title {
  color: var(--060612, #060612);
  text-align: left;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(26px, 3.6vw, 44px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 850px) {
  .about-team-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Team Members List layout */
.about-team-members-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
  width: 100%;
}

.about-team-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  width: 100%;
}

.about-team-row.layout-text-right {
  flex-direction: row;
}

.about-team-row.layout-text-left {
  flex-direction: row-reverse;
}

.team-image-column {
  width: clamp(280px, 30%, 380px);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-image-outer-card {
  display: flex;
  width: 100%;
  height: clamp(260px, 24vw, 360px);
  padding: clamp(10px, 1.5vw, 16px);
  justify-content: center;
  align-items: center;
  border-radius: clamp(12px, 1.5vw, 16px);
  border: 1px solid #FFF;
  background: #F5F5F5;
  box-shadow: 0 0 6px 1px rgba(6, 6, 18, 0.16) inset;
  box-sizing: border-box;
}

.team-image-card {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  border-radius: 8px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 8px 30px rgba(6, 6, 18, 0.06);
}

/* Glassmorphic Label Overlay inside image card */
.team-image-label-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  height: auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 14px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.label-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.member-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.member-label-divider {
  width: 100%;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.35);
  margin: 5px 0;
}

.member-designation {
  color: #FFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(10px, 0.85vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  opacity: 0.9;
  letter-spacing: 0.6px;
}

.member-name {
  color: #FFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(15px, 1.25vw, 19px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  margin: 2px 0 0 0;
}

.member-linkedin-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.member-linkedin-link:hover {
  transform: scale(1.08);
  opacity: 0.95;
}

.member-linkedin-svg {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

/* Text & Quote Card Column */
.team-text-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.member-description-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 24px;
}

.member-desc-p {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(14px, 1.15vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* Quote Card Box */
.member-quote-card {
  width: 100%;
  min-height: 90px;
  border-radius: 16px;
  background: var(--85BD56, #85BD56);
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8;
  padding: clamp(16px, 2vw, 24px) clamp(20px, 2.5vw, 32px);
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.member-quote-text {
  width: 100%;
  color: #FFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(14.5px, 1.2vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 2;
  text-align: left;
}

.quote-svg-mark {
  position: absolute;
  right: 20px;
  bottom: 8px;
  z-index: 1;
  pointer-events: none;
}

/* Responsive Overrides */
@media (max-width: 1150px) {
  .about-team-row,
  .about-team-row.layout-text-left,
  .about-team-row.layout-text-right {
    flex-direction: column !important;
    align-items: center;
    gap: 32px;
  }

  .team-image-column, .team-image-outer-card {
    width: 100%;
    height: auto;
  }
  
  .team-image-card {
    width: 100%;
    height: clamp(240px, 50vw, 420px);
  }
  
  .team-text-column {
    max-width: 100%;
    width: 100%;
  }
  
  .member-quote-card {
    width: 100%;
    max-width: 100%;
  }
}

/* ==================== TIMELINE SECTION ==================== */
.timeline-section {
  padding: 0 clamp(16px, 3vw, 40px);
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.timeline-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) 0;
  position: relative;
}

.timeline-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
  margin-bottom: 48px;
}

.timeline-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.timeline-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.timeline-tagline span {
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-main-heading {
  color: var(--060612, #060612);
  text-align: left;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(26px, 3.6vw, 44px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  white-space: nowrap;
}

.timeline-main-heading .highlight-green {
  color: #599632;
}

.timeline-header-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 580px;
}

.timeline-subheading {
  color: rgb(105, 104, 110);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  text-align: right;
}

@media (max-width: 850px) {
  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .timeline-header-right {
    justify-content: flex-start;
    max-width: 100%;
  }
  .timeline-subheading {
    text-align: left;
  }
}

.timeline-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
}

/* SVG Winding Curved Line Container */
.timeline-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.timeline-svg-track {
  stroke: #E5E4E2;
  stroke-width: 3.5px;
  stroke-dasharray: 6 6;
}

.timeline-svg-progress {
  stroke: #599632;
  stroke-width: 4px;
  stroke-linecap: round;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  padding-right: 45px;
  position: relative;
  margin-bottom: 50px;
  box-sizing: border-box;
}

.timeline-item.right {
  align-self: flex-end;
  justify-content: flex-start;
  margin-left: 50%;
  padding-right: 0;
  padding-left: 45px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Numbered Station Pin Badge */
.timeline-pin {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #599632;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 2px #599632, 0 4px 12px rgba(89, 150, 50, 0.3);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.timeline-pin span {
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.timeline-item.right .timeline-pin {
  right: auto;
  left: -16px;
}

/* Year Label Next to Line Pin */
.timeline-year-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 800;
  color: #599632;
  z-index: 3;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.timeline-item .timeline-year-label {
  right: 32px;
}

.timeline-item.right .timeline-year-label {
  left: 32px;
}

/* Milestone Card Container */
.timeline-content-card {
  background: #FFFFFF;
  border: 1px solid #E0E0DC;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(6, 6, 18, 0.04);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  overflow: hidden;
}

/* Card Main Text Content (left side) */
.timeline-card-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(14px, 1.8vw, 18px) clamp(20px, 2.5vw, 30px);
}

.timeline-title {
  color: #1A1A1A;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.timeline-desc {
  color: #69686E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: clamp(13px, 1.1vw, 14.5px);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

/* Year Panel (right side — matches reference image) */
.timeline-card-year-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F3F6EF;
  border-left: 2px solid #D4E2C8;
  padding: clamp(12px, 1.5vw, 16px) clamp(20px, 2.5vw, 32px);
  min-width: 110px;
  flex-shrink: 0;
}

.timeline-card-year {
  color: #2E5A08;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Hide the old icon box — no longer needed */
.timeline-card-icon {
  display: none;
}

/* Hide old card header wrapper */
.timeline-card-header {
  display: none;
}

/* Timeline Mobile Media Queries */
@media (max-width: 992px) {
  .timeline-item {
    width: 100%;
    padding-left: 68px;
    padding-right: 0;
    justify-content: flex-start;
  }
  
  .timeline-item.right {
    margin-left: 0;
    padding-left: 68px;
  }

  .timeline-pin, .timeline-item.right .timeline-pin {
    left: 9px;
    right: auto;
  }

  .timeline-year-label, .timeline-item.right .timeline-year-label {
    left: 46px;
    right: auto;
  }
  
  .timeline-item::before, .timeline-item.right::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 43px;
    height: 2px;
    background: #D4E7CA;
    z-index: 2;
    transition: background-color 0.4s ease, height 0.3s ease;
  }

  .timeline-item.line-reached::before,
  .timeline-item.active::before {
    background: #599632;
    height: 2.5px;
  }

  .timeline-content-card {
    max-width: 100%;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .timeline-item.line-reached .timeline-content-card,
  .timeline-item.active .timeline-content-card {
    border-color: rgba(89, 150, 50, 0.4);
    box-shadow: 0 4px 20px rgba(89, 150, 50, 0.12);
  }
}

@media (max-width: 480px) {
  .timeline-item {
    padding-left: 52px;
  }

  .timeline-item.right {
    padding-left: 52px;
  }

  .timeline-pin, .timeline-item.right .timeline-pin {
    left: 4px;
    right: auto;
  }

  .timeline-item::before, .timeline-item.right::before {
    left: 20px;
    width: 32px;
  }

  .timeline-content-card {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  
  .timeline-card-year-panel {
    border-left: none;
    border-top: 2px solid #D4E2C8;
    padding: 16px;
    min-width: unset;
  }
}

/* ==================== LEAF TAGLINE & PHILOSOPHY ==================== */
.about-leaf-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.about-leaf-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-leaf-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
  margin-bottom: 48px;
}

.about-leaf-subtitle {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: rgb(105, 104, 110);
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 850px) {
  .about-leaf-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.about-leaf-paragraphs p {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(14px, 1.15vw, 15.5px);
  line-height: 1.6;
  color: #69686E;
  margin: 0 0 16px 0;
  text-align: left;
}

/* ==================== MEANING TAGLINE ==================== */
.about-meaning-tagline {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.about-meaning-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-meaning-heading .highlight-green {
  color: #599632;
}

/* ==================== WHAT PARIVARTAN REALLY MEANS ==================== */
.about-meaning-section {
  width: 100%;
  padding: 0 clamp(16px, 3vw, 40px);
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.about-meaning-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) 0;
}

.about-meaning-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.about-meaning-heading {
  color: var(--060612, #060612);
  text-align: left;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(24px, 3.2vw, 44px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 48px 0;
}

.about-meaning-text {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(14px, 1.2vw, 16.5px);
  line-height: 1.6;
  color: #69686E;
  margin: 0;
  max-width: 100%;
  width: 100%;
}

/* ==================== TEAM PHILOSOPHY & CRAFT CARD ==================== */
.about-team-philosophy-section {
  width: 100%;
  padding: clamp(32px, 4vw, 40px) clamp(16px, 3vw, 40px);
  background: #FFFFFF;
  box-sizing: border-box;
}

.about-team-philosophy-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.about-team-philosophy-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  width: 100%;
}

.about-team-philosophy-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-team-philosophy-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.about-team-philosophy-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-team-philosophy-title .highlight-green {
  color: #599632;
}

.about-team-philosophy-title {
  color: var(--060612, #060612);
  text-align: center;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(26px, 3.6vw, 44px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 8px 0;
}

.about-team-philosophy-subtitle {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: rgb(105, 104, 110);
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.about-craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 48px;
}

.about-craft-item {
  background: #FFFFFF;
  border: 1px solid #EDEDED;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(6, 6, 18, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-craft-item:hover {
  transform: translateY(-4px);
  border-color: #85BD56;
  box-shadow: 0 10px 28px rgba(133, 189, 86, 0.12);
}

.about-craft-icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(133, 189, 86, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-craft-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-craft-item-title {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(14.5px, 1.2vw, 16.5px);
  font-weight: 500;
  line-height: 1.5;
  color: #1F2937;
  margin: 0;
}

@media (max-width: 900px) {
  .about-craft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}

@media (max-width: 600px) {
  .about-craft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.about-craft-card p:last-child {
  margin-bottom: 0;
}

.about-craft-card p.highlight-text {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  color: #599632;
  margin: 6px 0 16px 0;
  text-align: center;
  text-wrap: balance;
}

/* ==================== DIVIDER BANNER ==================== */
.about-divider-banner {
  width: 100%;
  padding: clamp(36px, 5vw, 60px) clamp(16px, 3vw, 40px);
  background: #FFFFFF;
  color: var(--060612, #060612);
  text-align: center;
  box-sizing: border-box;
}

.about-divider-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-divider-quote-icon svg {
  stroke: #599632;
  margin-bottom: 4px;
}

.about-divider-text {
  color: var(--060612, #060612);
  text-align: center;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(24px, 3.2vw, 44px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

/* ==================== TIMELINE CLOSING STATEMENT ==================== */
.timeline-closing-statement {
  max-width: 760px;
  margin: clamp(32px, 4vw, 60px) auto 0 auto;
  text-align: center;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 600;
  line-height: 1.6;
  color: #599632;
  padding: clamp(16px, 2vw, 24px) clamp(20px, 3vw, 36px);
  background: #F7F7F7;
  border-radius: 16px;
  border: 1px solid #E5E4E2;
  box-shadow: 0 4px 20px rgba(6, 6, 18, 0.03);
}

.timeline-closing-statement p {
  margin: 0;
}

/* ==================== DEFINING LINE ==================== */
.member-defining-line {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
  color: #599632;
  background: #F0F8EC;
  border: 1px solid #E5E4E2;
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 16px;
}

.defining-tag {
  color: #060612;
  font-weight: 800;
  margin-right: 4px;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  width: 100%;
  background: #FFFFFF;
  padding: 0 clamp(16px, 3vw, 40px);
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(36px, 5vw, 60px) 0;
  box-sizing: border-box;
}

/* Header side-by-side layout matching the remaining sections */
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  width: 100%;
}

.testimonials-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  width: 100%;
  text-align: left;
}

.testimonials-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 496px;
  width: 100%;
  text-align: left;
  margin-top: 34px;
}

.testimonials-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.testimonials-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.testimonials-main-heading {
  width: 100%;
  max-width: 720px;
  color: var(--060612, #060612);
  font-family: Satoshi, sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  margin: 0;
}

.testimonials-header-desc {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

.testimonials-carousel-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  align-self: flex-end;
}

.testimonials-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #E0E0E0;
  background: #FFFFFF;
  color: #060612;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(6, 6, 18, 0.04);
}

.testimonials-nav-btn:hover {
  background: #85BD56;
  border-color: #85BD56;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(133, 189, 86, 0.35);
}

.testimonials-nav-btn:disabled,
.testimonials-nav-btn.disabled {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background: #F3F4F6 !important;
  border-color: #E5E7EB !important;
  color: #9CA3AF !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Video Testimonials carousel track */
.video-testimonials-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 40px;
  padding: 12px 0;
}

.video-testimonials-wrapper::-webkit-scrollbar {
  display: none;
}

.video-testimonials-row {
  display: flex;
  gap: 24px;
  width: max-content;
}

.video-card {
  width: 288px;
  height: 380px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
  scroll-snap-align: start;
}

.video-card-overlay {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card:hover .video-card-bg-img {
  transform: scale(1.05);
}

.video-card-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.play-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.play-button svg {
  margin-left: 2px;
  transition: transform 0.3s ease;
}

.video-card:hover .play-button {
  background: var(--85BD56, #85BD56);
  border-color: var(--85BD56, #85BD56);
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(133, 189, 86, 0.4);
}

.video-card-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.video-card-category {
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(133, 189, 86, 0.85);
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.video-card-name {
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.video-card-duration {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(6, 6, 18, 0.55);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

/* Written Testimonials Header Bar with Navigation */
.written-testimonials-header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 28px;
  width: 100%;
}

.written-testimonials-heading {
  grid-column: 2;
  text-align: center;
  color: #060612;
  font-family: Satoshi, 'Outfit', 'Inter', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
}

.written-testimonials-header-bar .testimonials-carousel-nav {
  grid-column: 3;
  justify-self: end;
}

/* Written Testimonials carousel track */
.written-testimonials-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 0 24px 0;
}

.written-testimonials-wrapper::-webkit-scrollbar {
  display: none;
}

.written-testimonials-row {
  display: flex;
  gap: 24px;
  width: max-content;
}

.written-card {
  width: 480px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1.5px solid #F0F2F5;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(6, 6, 18, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
  scroll-snap-align: start;
}

.written-card:hover {
  transform: translateY(-2px);
  border-color: #E4E7EC;
  box-shadow: 0 6px 20px rgba(6, 6, 18, 0.04);
}

.written-card-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.written-card-text {
  color: var(--060612, #060612);
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 28px 0;
  text-align: left;
  white-space: pre-line;
}

.written-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F0F2F5;
  padding-top: 20px;
  margin-top: auto;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #E4E7EC;
}

.author-avatar-dummy {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F2F5;
  flex-shrink: 0;
}

.author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.author-name {
  color: var(--060612, #060612);
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.author-meta {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.company-logo-wrapper {
  height: 44px;
  display: flex;
  align-items: center;
}

.company-logo {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
}

/* Testimonials Responsive */
@media (max-width: 960px) {
  .testimonials-section {
    padding: 0 24px;
    overflow: hidden;
  }
  .testimonials-container {
    padding: 32px 0;
  }
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    margin-bottom: 40px;
  }
  .testimonials-header-left,
  .testimonials-header-right {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }
  .testimonials-tagline {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }
  .testimonials-main-heading {
    font-size: 36px;
    line-height: 46px;
    text-align: left;
  }
  .testimonials-header-desc {
    text-align: left;
    margin: 0;
  }
  .video-testimonials-wrapper,
  .written-testimonials-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    margin-bottom: 32px;
  }
  .video-testimonials-row {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: video-testimonials-scroll 25s linear infinite !important;
  }
  .written-testimonials-row {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: written-testimonials-scroll 35s linear infinite !important;
  }
  .video-card {
    width: 240px;
    height: 320px;
    flex-shrink: 0;
  }
  .written-card {
    width: 300px;
    max-width: 82vw;
    padding: 20px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 0 16px;
  }
  .testimonials-container {
    padding: 20px 0;
  }
  .testimonials-main-heading {
    font-size: 28px;
    line-height: 36px;
  }
  .video-testimonials-row {
    gap: 12px;
    animation-duration: 22s !important;
  }
  .written-testimonials-row {
    gap: 12px;
    animation-duration: 30s !important;
  }
  .video-card {
    width: 205px;
    height: 275px;
  }
  .written-card {
    width: 270px;
    max-width: 82vw;
    padding: 18px;
  }
  .written-card-text {
    font-size: 13.5px;
    line-height: 23px;
  }
}

/* ==================== VIDEO PREVIEW OVERLAY ==================== */
.video-preview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 18, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  z-index: 1000;
}

.video-preview-modal {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-preview-window {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.video-preview-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  border: 0;
}

.video-preview-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}

.video-preview-caption-title {
  color: #FFFFFF;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.video-preview-caption-note {
  color: rgba(255, 255, 255, 0.65);
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-style: italic;
  line-height: 20px;
}

.video-preview-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-preview-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 768px) {
  .video-preview-overlay {
    padding: 16px;
  }
  .video-preview-close {
    top: -40px;
  }
}

/* Mobile Responsive Overrides for Spacing, Widths, and Text Justification */
@media (max-width: 960px) {
  .about-leaf-section,
  .about-team-section,
  .timeline-section,
  .testimonials-section,
  .cta-section,
  .contact-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 768px) {
  /* Justify text content in Philosophy and Leaf sections */
  .about-leaf-paragraphs p,
  .about-meaning-text {
    text-align: justify !important;
    text-justify: inter-word;
  }

  /* Left align the Team Craft card content on mobile to prevent awkward gaps */
  .about-craft-card {
    align-items: flex-start !important;
  }
  .about-craft-card p {
    text-align: left !important;
  }

  /* Section title rows, headers, and subtitles left-align on mobile */
  .about-meaning-heading,
  .about-team-title,
  .about-team-header-left,
  .about-team-header-right,
  .about-team-title-row,
  .about-team-philosophy-subtitle,
  .about-leaf-left,
  .about-leaf-title,
  .about-leaf-subtitle,
  .about-leaf-header-left,
  .about-leaf-header-right,
  .about-leaf-header-row,
  .about-meaning-content {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    white-space: normal !important;
  }

  /* Tagline containers align to the left of the section on mobile while keeping SVGs and text vertically centered */
  .about-team-tagline,
  .about-leaf-tagline,
  .about-meaning-tagline,
  .about-team-philosophy-tagline,
  .about-story-tagline,
  .timeline-tagline,
  .testimonials-tagline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* Ensure all tagline text and chevron SVGs remain vertically centered on the exact same axis */
  .about-hero-tagline,
  .about-team-tagline,
  .about-leaf-tagline,
  .about-meaning-tagline,
  .about-team-philosophy-tagline,
  .about-story-tagline,
  .timeline-tagline,
  .testimonials-tagline {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    gap: 12px !important;
  }

  .about-hero-tagline span,
  .about-team-tagline span,
  .about-leaf-tagline span,
  .about-meaning-tagline span,
  .about-team-philosophy-tagline span,
  .about-story-tagline span,
  .timeline-tagline span,
  .testimonials-tagline span {
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
  }

  .about-hero-tagline svg,
  .about-team-tagline svg,
  .about-leaf-tagline svg,
  .about-meaning-tagline svg,
  .about-team-philosophy-tagline svg,
  .about-story-tagline svg,
  .timeline-tagline svg,
  .testimonials-tagline svg {
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .about-leaf-section,
  .about-team-section,
  .timeline-section,
  .testimonials-section,
  .cta-section,
  .contact-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  /* Reset frame insets slightly on extra small screens to maximize card text width */
  .about-craft-card-frame,
  .about-hero-card-frame {
    padding: 6px !important;
  }
  
  .about-craft-card {
    padding: 20px 16px !important;
  }
}

/* Active Nav Item & Active Dropdown Item Styles */
.nav-link.active,
.nav-item.active > .nav-link {
  color: #75BF46 !important;
  font-weight: 600;
}

.nav-item.active > .nav-link svg,
.nav-link.active svg path {
  stroke: #75BF46;
}

.desktop-nav .dropdown-item.active {
  background: rgba(133, 189, 86, 0.12);
  color: #599632;
  font-weight: 600;
  padding-left: 24px;
}

.desktop-nav .dropdown-item.active img.submenu-leaf {
  opacity: 1;
  transform: scale(1.25) rotate(15deg);
}

.drawer-menu-item.active {
  background: rgba(117, 191, 70, 0.1) !important;
  border-left: 3px solid #75BF46;
}

.drawer-submenu-item.active {
  background: rgba(117, 191, 70, 0.12) !important;
  color: #599632 !important;
  font-weight: 600;
}

.drawer-submenu-item.active .submenu-leaf {
  opacity: 1 !important;
  transform: scale(1.2) rotate(10deg);
}

/* ==================== UNIFORM GLOBAL SECTION SPACING (STORY PAGE) ==================== */
.about-hero-section,
.about-meaning-section,
.about-leaf-section,
.about-team-section,
.about-divider-banner,
.timeline-section,
.testimonials-section,
.cta-section,
.contact-section {
  margin-bottom: 60px !important;
}

.about-meaning-container,
.about-leaf-container,
.about-team-container,
.about-divider-container,
.timeline-container,
.testimonials-container,
.cta-container,
.contact-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.about-hero-container {
  padding-top: 24px !important;
  padding-bottom: 0 !important;
}

/* Section with gray background fill (24+ Years of Change) */
.about-meaning-section[style*="background"] {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* Tablet Uniform Section Spacing */
@media (max-width: 960px) {
  .about-hero-section,
  .about-meaning-section,
  .about-leaf-section,
  .about-team-section,
  .about-divider-banner,
  .timeline-section,
  .testimonials-section,
  .cta-section,
  .contact-section {
    margin-bottom: 44px !important;
  }

  .about-meaning-container,
  .about-leaf-container,
  .about-team-container,
  .about-divider-container,
  .timeline-container,
  .testimonials-container,
  .cta-container,
  .contact-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .about-hero-container {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
  }

  .about-meaning-section[style*="background"] {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
}

/* Mobile Uniform Section Spacing */
@media (max-width: 480px) {
  .about-hero-section,
  .about-meaning-section,
  .about-leaf-section,
  .about-team-section,
  .about-divider-banner,
  .timeline-section,
  .testimonials-section,
  .cta-section,
  .contact-section {
    margin-bottom: 32px !important;
  }

  .about-meaning-container,
  .about-leaf-container,
  .about-team-container,
  .about-divider-container,
  .timeline-container,
  .testimonials-container,
  .cta-container,
  .contact-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .about-hero-container {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
  }

  .about-meaning-section[style*="background"] {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

/* ==================== UNIFORM TITLE-TO-CONTENT HEADER GAPS (MATCHING INDEX.HTML) ==================== */
.about-hero-title,
.about-meaning-heading,
.about-leaf-header-row,
.about-team-title-row,
.timeline-header,
.testimonials-header {
  margin-bottom: 48px !important;
}

@media (max-width: 960px) {
  .about-hero-title,
  .about-meaning-heading,
  .about-leaf-header-row,
  .about-team-title-row,
  .timeline-header,
  .testimonials-header {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 480px) {
  .about-hero-title,
  .about-meaning-heading,
  .about-leaf-header-row,
  .about-team-title-row,
  .timeline-header,
  .testimonials-header {
    margin-bottom: 32px !important;
  }
}


