.sec_ot1 {
  min-height: 100vh;
  background-image: url(/wp-content/uploads/2026/05/ChatGPT-Image-09_14_30-10-thg-5-2026.png);
  background-size: cover;
}

.sec_outs2,
.sec_timnsa {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  background-color: rgb(247, 244, 238);
}

.hero_our_str {
  position: relative;
  color: #f5f5f5;
  overflow: hidden;
  margin: 0 auto;
}

/* CONTAINER */
.hero_our_str .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: 10px;
  align-items: center;
}

/* BADGE */
.hero_our_str .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: auto;
  color: #000;
  font-weight: 600;
}

.hero_our_str .dot {
  width: 6px;
  height: 6px;
  background: #eab308;
  border-radius: 50%;
}

/* TITLE */
.hero_our_str .content h1 {
  font-size: 72px;
  line-height: 1.05;
  margin: 25px 0;
  color: #000;
  font-weight: 600;
}

.hero_our_str .content .italic {
  font-style: italic;
  color: #118c46;
}

/* DESC */
.hero_our_str .content p {
  color: #000;
  font-size: 16px;
  line-height: 1.7;
}

/* BUTTONS */
.hero_our_str .actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero_our_str .btn-primary {
  background: #d4a73c;
  color: #000;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.hero_our_str .btn-primary:hover {
  background: #facc15;
}

.hero_our_str .btn-play {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  background: none;
  border: none;
  cursor: pointer;
  margin: 0;
}

.hero_our_str .btn-play .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  transition: 0.3s;
}

.hero_our_str .btn-play:hover .icon {
  border-color: #eab308;
  background: rgba(234, 179, 8, 0.15);
}

/* IMAGE */
.hero_our_str .image-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 520px;
}

.hero_our_str .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.hero_our_str .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* TEXT ON IMAGE */
.hero_our_str .image-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero_our_str .image-content small {
  color: #facc15;
  font-size: 11px;
  letter-spacing: 2px;
}

.hero_our_str .image-content h3 {
  margin: 5px 0 0;
  color: #fff;
}

/* PLAY BUTTON */
.hero_our_str .play-btn {
  width: 50px;
  height: 50px;
  background: #eab308;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.hero_our_str .play-btn {
  display: flex;
  align-items: center;
}

.hero_our_str .play-btn:hover {
  transform: scale(1.1);
}

/* CARD */
.hero_our_str .card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: #f5f5f5;
  color: #000;
  padding: 18px;
  border-radius: 16px;
  width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero_our_str .number {
  font-size: 32px;
  font-weight: bold;
  color: #1f4d36;
}

.hero_our_str .text {
  font-size: 13px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero_our_str .container {
    grid-template-columns: 1fr;
  }

  .hero_our_str.content h1 {
    font-size: 42px;
  }

  .hero_our_str .card {
    display: none;
  }
}

/* css 2s */
.stats-section {
  position: relative;
  margin-top: 25px;
}

.stats-container {
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* item */
.stats-item {
  padding: 32px;
}

/* number */
.stats-number {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  /* primary */
}

/* label */
.stats-label {
  margin-top: 8px;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* borders */
.border-left {
  border-left: 1px solid #e5e7eb;
}

.border-top {
  border-top: 1px solid #e5e7eb;
}

/* responsive */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-item {
    padding: 40px;
  }

  .stats-number {
    font-size: 48px;
  }

  .md-no-top {
    border-top: none !important;
  }

  .border-left-md {
    border-left: 1px solid #e5e7eb;
  }
}

/* css timeline*/
/* ── Section wrapper ── */
.timeline-section {
  margin: 0 auto;
}

/* ── Header ── */
.timeline-header {
  max-width: 43rem;
  margin-bottom: 5rem;
}

.eyebrow {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #4a7c59;
  margin-bottom: 1rem;
}

.timeline-section .headline {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  color: #1a2b1f;
  line-height: 1.05;
  font-weight: 700;
}

.timeline-section .headline em {
  font-style: italic;
  color: #b5614a;
}

.timeline-section .subline {
  margin-top: 1.25rem;
  color: #5a6360;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ── Timeline track ── */
.timeline-section .track {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* Vertical line */
.timeline-section .track::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #d4cfc5, transparent);
}

/* ── Single item ── */
.timeline-section .item {
  position: relative;
  display: grid;
  gap: 2rem;
}

/* ── Dot ── */
.timeline-section .dot-wrap {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.timeline-section .dot {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #f5f5f5;
  border: 2px solid #1a2b1f;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.timeline-section .dot svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #4a7c59;
}

.timeline-section .dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .3);
  animation: ping 3s ease-in-out infinite;
}

@keyframes ping {

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

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

/* ── Image card ── */
.timeline-section .img-wrap {
  position: relative;
  padding-left: 4.5rem;
  /* room for dot + line */
}

.timeline-section .img-inner {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 1.75rem;
  background: #f5f5f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.timeline-section .img-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.timeline-section .img-inner:hover img {
  transform: scale(1.05);
}

.timeline-section .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 43, 31, .4), transparent);
  opacity: 0;
  transition: opacity .3s;
  border-radius: inherit;
}

.timeline-section .img-inner:hover .img-overlay {
  opacity: 1;
}

.timeline-section .chapter-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(247, 244, 238, .92);
  backdrop-filter: blur(6px);
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 500;
  color: #000;
  z-index: 2;
}

.timeline-section .badge-dot {
  width: .375rem;
  height: .375rem;
  border-radius: 50%;
  background: gold;
  flex-shrink: 0;
}

/* ── Text block ── */
.timeline-section .text-block {
  padding-left: 4.5rem;
}

.timeline-section .year-big {
  font-size: clamp(4rem, 10vw, 5.5rem);
  color: rgba(201, 168, 76, .35);
  line-height: 1;
  margin-bottom: 1rem;
  user-select: none;
}

.timeline-section .period {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #4a7c59;
  margin-bottom: .75rem;
}

.timeline-section .item-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: #1a2b1f;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.timeline-section .item-body {
  color: #5a6360;
  font-size: 1rem;
  line-height: 1.75;
}

/* ── DESKTOP layout ── */
@media (min-width: 768px) {
  .timeline-section .track::before {
    left: 51%;
    transform: translateX(-50%);
  }

  .timeline-section .item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }

  /* Dot sits on the centre line */
  .timeline-section .dot-wrap {
    left: 50%;
    top: 50%;
  }

  /* Even items: image left, text right */
  .timeline-section .item:nth-child(odd) .img-wrap {
    order: 1;
    padding-left: 0;
    padding-right: 2rem;
  }

  .timeline-section .item:nth-child(odd) .text-block {
    order: 2;
    padding-left: 2rem;
    padding-right: 0;
  }

  /* Odd items: text left (right-aligned), image right */
  .timeline-section .item:nth-child(even) .img-wrap {
    order: 2;
    padding-left: 2rem;
    padding-right: 0;
  }

  .timeline-section .item:nth-child(even) .text-block {
    order: 1;
    padding-right: 2rem;
    padding-left: 0;
    text-align: right;
  }
}

/** Testimonial CSS */
/* ── Section ── */
.quote-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: radial-gradient(hsl(155 35% 12% / .04) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* Grain overlay */
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}

/* ── Container ── */
.quote-inner {
  position: relative;
  margin: 0 auto;
  max-width: 64rem;
  padding: 0 1.5rem;
  text-align: center;
}


/* ── Quote icon ── */
.quote-icon {
  display: block;
  margin: 0 auto 2rem;
  width: 2.5rem;
  height: 2.5rem;
  color: #facc15;
}

/* ── Blockquote ── */
.quote-section blockquote {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  color: #1a1612;
  font-weight: 400;
  text-wrap: balance;
  border-left: none;
  font-style: normal;
}

.quote-section blockquote .italic-clay {
  font-style: italic;
  color: #a0522d;
}

/* ── Author ── */
.author-row {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #facc15;
  color: #facc15;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  flex-shrink: 0;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 500;
  color: #facc15;
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #202124;
  margin-top: 0.15rem;
}

.cta_ssds {
  background-color: #fff;
}

/**/
.explore_story_section {
  padding: 5rem 0;
  background-color: #fff;
}

.explore_story_section .container {
  margin: 0 auto;
  padding: 0 1.5rem;
}

.explore_story_section .header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.explore_story_section .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #3B6D11;
  margin-bottom: 0.75rem;
}

.explore_story_section .heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #000;
  max-width: 32rem;
  line-height: 1.2;
  margin: 0;
}

.explore_story_section .all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.explore_story_section .all-link:hover {
  color: #D85A30;
}

.explore_story_section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.explore_story_section .card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  aspect-ratio: 4/5;
  display: block;
  text-decoration: none;
}

.explore_story_section .card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  border-radius: 24px;
}

.explore_story_section .card:hover img {
  transform: scale(1.1);
}

.explore_story_section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.85) 0%, rgba(20, 20, 20, 0.25) 50%, transparent 100%);
}

.explore_story_section .badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #2C2C2A;
  font-weight: 500;
}

.explore_story_section .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #fff;
}

.explore_story_section .card-body h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.explore_story_section .card-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0.5rem 0 0;
}

.explore_story_section .read-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #FAC775;
}

.explore_story_section .read-link svg {
  transition: transform 0.2s;
}

.explore_story_section .card:hover .read-link svg {
  transform: translate(3px, -3px);
}

/**/
.cta-section {
  position: relative;
  padding: 96px 24px;
  background: #118c46;
  color: #f0ede6;
  overflow: hidden;
  text-align: center;
  border-radius: 25px;
  margin-bottom: 55px;
}

.cta-bg-blur-1 {
  position: absolute;
  top: -128px;
  right: -128px;
  height: 500px;
  width: 500px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  filter: blur(80px);
  pointer-events: none;
}

.cta-bg-blur-2 {
  position: absolute;
  bottom: -128px;
  left: -128px;
  height: 400px;
  width: 400px;
  border-radius: 50%;
  background: rgba(144, 190, 144, 0.15);
  filter: blur(80px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(240, 237, 230, 0.2);
  padding: 6px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 32px;
  color: #f0ede6;
}

.cta-badge-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #d4af37;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.cta-heading {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 24px;
  color: #f0ede6;
}

.cta-heading em {
  font-style: italic;
  color: #e8d08a;
}

.cta-desc {
  max-width: 640px;
  margin: 0 auto 40px;
  color: rgba(240, 237, 230, 0.7);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: #d4af37;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: #e8d08a;
}

.btn-primary svg {
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(240, 237, 230, 0.3);
  padding: 14px 28px;
  font-size: 14px;
  color: #f0ede6;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(240, 237, 230, 0.1);
}