.why-choose-about-section {
  margin-bottom: 80px;
  box-sizing: border-box;
}

/* fluid, responsive title & description using clamp() */
.about-title {
  font-size: clamp(32px, 7vw, 96px); 
  letter-spacing: 0;
  margin-bottom: 24px;
  line-height: clamp(36px, 7.8vw, 100px);
  text-align: center !important;
  color: #304F6E;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}

/* description: allow WP autop but style the cofntainer */
.about-description {
  font-size: clamp(16px, 1.8vw, 24px);
  color: #8B8B8B;
  line-height: 1.6; 
  margin-bottom: 40px;
  text-align: center !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* spacing wrapper */
.about-section-container {
  margin-bottom: 100px;
  padding-left: 16px;
  padding-right: 16px;
}

/* Stats container: desktop horizontal */
.stats-about-container {
  display: flex;
  margin-bottom: 40px;
  width: 100%;
  background-color: #7CB342;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
  overflow: hidden;
  align-items: stretch;
  gap: 0;
}

/* each stat block */
.stat-about-block {
  background-color: #739248;
  color: white;
  padding: clamp(18px, 2.2vw, 30px);
  text-align: center;
  flex: 1 1 0;
  min-width: 0; 
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* vertical divider between stat blocks on larger screens */
@media (min-width: 768px) {
  .stat-about-block:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background-color: #546c3485;
  }
	
}
@media (max-width: 768px){
	.globel-about-container{
        height: 300px !important;

	}
}

/* numbers and labels */
.stat-about-number {
  font-size: clamp(22px, 40px, 48px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-about-label,
.stat-label {
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 500;
}

/* Buttons group - centered and responsive */
.buttons-about-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* button style */
.oval-about-button {
  background-color: #304F6E;
  color: #FFFFFF;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 160%;
}

/* hover */
.oval-about-button:hover {
  background-color: #2c3e50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 73, 94, 0.3);
}

/* ---------- Tablet & Mobile adjustments ---------- */

/* Tablet: medium screens */
@media (max-width: 991px) {
  .why-choose-about-section {
      margin-bottom: 60px;
  }
  
  .about-section-container { 
      margin-bottom: 60px; 
      padding-left: 20px;
      padding-right: 20px;
  }
  
  .about-title { 
      margin-bottom: 18px; 
      width: 80%;
  }
  
  .about-description { 
      margin-bottom: 28px; 
      max-width: 720px; 
      font-size: clamp(15px, 2vw, 22px);
  }

  /* Slightly smaller padding for stats */
  .stat-about-block { 
      padding: clamp(14px, 2vw, 22px); 
  }
  
  .stat-about-number { 
      font-size: clamp(20px, 3.2vw, 40px); 
  }
  
  .stat-about-label {
      font-size: clamp(11px, 1.3vw, 15px);
  }
  
  .oval-about-button {
      min-width: 180px;
      font-size: 13px;
      padding: 11px 22px;
  }
  
  .buttons-about-container {
      gap: 15px;
  }
}

/* Mobile: stack stats vertically and make buttons full-width */
@media (max-width: 767px) {
  .why-choose-about-section {
      margin-bottom: 40px;
      padding-top: 10px;
      padding-bottom: 10px;
  }
	.date{
		padding-left: 15px !important;
	}
  
  .about-section-container {
      margin-bottom: 40px;
      padding-left: 15px;
      padding-right: 15px;
  }

  .about-title {
      font-size: clamp(28px, 8.5vw, 48px);
      line-height: 1.2;
      width: 100%;
      margin-bottom: 16px;
  }

  .about-description {
      font-size: clamp(14px, 3.8vw, 18px);
      margin-bottom: 24px;
      padding-left: 0;
      padding-right: 0;
      line-height: 1.6;
  }

  /* Stack stats vertically */
  .stats-about-container {
      flex-direction: column;
      border-radius: 10px;
      margin-bottom: 30px;
  }

  .stat-about-block {
      padding: 18px 16px;
      min-width: 0;
      text-align: center;
  }

  /* remove dividers on stacked layout */
  .stat-about-block::after { 
      display: none; 
  }
  
  .stat-about-number {
      font-size: clamp(24px, 6vw, 36px);
      margin-bottom: 8px;
  }
  
  .stat-about-label {
      font-size: clamp(12px, 3vw, 14px);
  }

  /* Buttons: make each button full width (or nearly) */
  .oval-about-button {
      min-width: 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 12px 20px;
      font-size: 14px;
  }

  .buttons-about-container {
      padding-left: 0;
      padding-right: 0;
      gap: 12px;
      justify-content: center;
      flex-direction: column;
      align-items: stretch;
  }

  /* Vision section responsive */
  .vision-section { 
      padding-top: 40px; 
      padding-bottom: 40px; 
  }
  
  .vision-section .container {
      padding-left: 15px;
      padding-right: 15px;
  }
  
  .vision-section .row {
      flex-direction: column;
  }
  
  .vision-section .col-lg-7 {
      order: 1;
      margin-bottom: 30px;
      padding-left: 0;
      padding-right: 0;
  }
  
  .vision-section .col-lg-5 {
      order: 2;
      padding-left: 0;
      padding-right: 0;
  }
  
  .vision-title {
      font-size: clamp(28px, 6vw, 48px);
      margin-bottom: 12px;
      line-height: 1.2;
  }
  
  .vision-copy p {
      font-size: clamp(14px, 3.5vw, 16px);
      line-height: 1.7;
      margin-bottom: 16px;
  }
  
  .vision-card { 
      max-width: 100%;
      width: 100%;
      margin-top: 0;
      margin-left: auto;
      margin-right: auto;
  }
  
  .vision-card .avatar-wrap {
      padding: 10px;
  }
  
  .vision-card .team-name {
      font-size: clamp(20px, 4.5vw, 24px);
      margin-bottom: 6px;
  }
  
  .vision-card .team-role {
      font-size: clamp(12px, 3vw, 14px);
  }
  
  /* Easy Process mobile */
  .easy-process-section {
      padding: 35px 12px;
  }
  
  .easy-process-title {
      font-size: clamp(24px, 6.5vw, 40px);
      margin-bottom: 10px;
  }
  
  .easy-process-subtitle {
      font-size: 13px;
      margin-bottom: 20px;
  }
  
  .easy-process-flow {
      margin: 25px 0;
      gap: 12px;
  }
  
  .easy-process-pill {
      padding: 18px 28px;
  }
  
  .easy-step-text {
      font-size: 15px;
  }
  
  .easy-step-icon img {
      width: 26px;
      height: 26px;
  }
	.post-description{
		font-size:20px !important;
	}
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  .vision-section .col-lg-7 {
      margin-bottom: 25px;
  }
.vision-section{
  padding: 0 12px !important;
}
  .vision-card {
      max-width: 340px;
  }
  
  .easy-process-pill {
      padding: 26px 48px;
      max-width: 90%;
  }
}

/* Small tweak for very narrow phones */
@media (max-width: 480px) {
  .why-choose-about-section {
      margin-bottom: 30px;
      padding-top: 80px;
      padding-bottom: 5px;
  }
  
  .about-section-container {
      margin-bottom: 30px;
      padding-left: 12px;
      padding-right: 12px;
  }
  
  .about-title { 
      font-size: clamp(22px, 10vw, 40px); 
      width: 100%; 
      margin-bottom: 12px;
      line-height: 1.15;
  }
  
  .stat-about-number { 
      font-size: clamp(20px, 7.5vw, 32px); 
  }
  
  .stat-about-label {
      font-size: clamp(11px, 3.5vw, 13px);
  }
  
  .about-description { 
      font-size: 14px; 
      line-height: 1.5; 
      margin-bottom: 20px;
  }
  
  .stats-about-container {
      margin-bottom: 25px;
      border-radius: 8px;
  }
  
  .stat-about-block {
      padding: 16px 12px;
  }
  
  .oval-about-button {
      padding: 11px 18px;
      font-size: 13px;
  }
  
  .buttons-about-container {
      gap: 10px;
  }
	.globel-about-container{
		height: 260px !important;
	}
  
  /* Vision section small mobile */
  .vision-section {
      padding-top: 30px;
/*       padding-bottom: 30px; */
	  padding-left: 20px;
	  padding-right: 20px;
  }
  
  .vision-title {
      font-size: clamp(24px, 6.5vw, 40px);
      margin-bottom: 10px;
  }
  
  .vision-copy p {
      font-size: 13px;
      line-height: 1.6;
      margin-bottom: 14px;
  }
  
  .vision-card {
      border-radius: 16px;
  }
  
  .vision-card .avatar-wrap {
      padding: 8px;
  }
  
  .vision-card .team-name {
      font-size: clamp(18px, 5vw, 22px);
  }
  
  .vision-card .team-role {
      font-size: 12px;
  }
  
  /* Easy Process small mobile */
  .easy-process-section {
      padding: 40px 12px;
  }
  
  .easy-process-title {
      font-size: clamp(24px, 6vw, 40px);
      line-height: 1.2;
      margin-bottom: 12px;
  }
  
  .easy-process-subtitle {
      font-size: 14px;
      line-height: 1.5;
  }
  
  .easy-process-flow {
      margin: 30px 0;
      gap: 12px;
  }
  
  .easy-process-pill {
      padding: 20px 30px;
      max-width: 100%;
  }
  
  .easy-step-text {
      font-size: 16px;
  }
  
  .easy-step-icon img {
      width: 28px;
      height: 28px;
  }
}

/* Vision section*/
.vision-section {
/* Override global section flex from custom.css */
display: block !important;
align-items: normal !important;
justify-content: normal !important;
flex-direction: row !important;
position: relative;
overflow: visible;
}

.vision-section .container {
position: relative;
}

.vision-section .row {
position: relative;
}

.vision-section .col-lg-7 {
position: relative;
z-index: 1;
overflow: visible;
max-width: 100%;
word-wrap: break-word;
overflow-wrap: break-word;
}

.vision-section .col-lg-5 {
position: relative;
z-index: 2;
}

/* Heading + text */
.vision-title {
font-size: clamp(32px, 6vw, 64px);
color: #304F6E;
margin-bottom: 16px;
font-weight: 500;
position: relative;
z-index: 1;
}

.vision-copy {
position: relative;
z-index: 1;
overflow: visible;
max-width: 100%;
word-wrap: break-word;
overflow-wrap: break-word;
}

.vision-copy p {
color: #8B8B8B;
font-size: 16px;
line-height: 1.8;
margin-bottom: 18px;
word-wrap: break-word;
overflow-wrap: break-word;
max-width: 100%;
margin-right: 0;
}

.vision-card {
max-width: 360px;
width: 100%;
border-radius: 24px;
border: 1px solid #DFDFDF;
box-shadow: 0 12px 34px rgba(19,39,56,0.08);
background: #ffffff;
position: relative;
z-index: 10;
overflow: hidden;
margin-left: auto;
margin-right: auto;
}

.vision-card .avatar-wrap {
padding: 12px;
}

.vision-card .avatar {
width: 100%;
border-radius: 14px;
object-fit: cover;
display: block;
}

.vision-card .team-name {
font-size: 24px;
font-weight: 500;
color: #304F6E;
margin-bottom: 7px;
}

.vision-card .team-role {
font-size: 14px;
color: #8B8B8B !important;
font-weight: 500;
}

/* global section */
.globel-about-container {
  position: relative;
  height: 520px;
  overflow: hidden;
  width: 100%;
  flex: 1;
  margin: 0;
  padding: 0;
}

/* process section */
.easy-process-section {
padding: 60px 15px;
background: linear-gradient(90deg, #fafafa 0%, #f4f8fb 100%);
background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
background-size: 18px 18px;
}

.easy-process-title {
font-size: clamp(32px, 4.5vw, 64px);
color: #304F6E;
margin-bottom: 16px;
text-align: left;
font-weight: 500;
line-height: 80px;
}

.easy-process-subtitle {
font-size: 16px;
color: #8B8B8B;
line-height: 150%;
font-weight: 400;
}

/* flow row */
.easy-process-flow {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: nowrap;
margin: 40px 0;
}

/* pill */
.easy-process-pill {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 30px 53px;
background: #82A256;
color: #fff;
border-radius: 999px;
white-space: nowrap;
}

.easy-step-icon {
border-radius: 999px;
display: inline-flex;
align-items: center;
justify-content: center;
/* overflow: hidden; */
}
.easy-step-icon img {
width: 34px;
height: 34px;
object-fit: contain;
}

.easy-step-text {
font-size: 20px;
font-weight: 700;
line-height: 100%;
}

/* arrows */
.easy-process-arrow .easy-arrow-icon {
color: #214a68;
font-size: 22px;
line-height: 1;
}

/* Easy Process responsive */
@media (max-width: 991px) {
.easy-process-section {
  padding: 50px 20px;
}
	.globe-about{
/* 		position:absolute;
		bottom:0; */
	}
.easy-process-title {
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.3;
  margin-bottom: 14px;
}

.easy-process-subtitle {
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.6;
}

.easy-process-flow {
  flex-direction: column;     /* stack steps vertically */
  align-items: center;
  margin: 30px 0;
  gap: 15px;
}

.easy-process-pill {
  padding: 22px 35px;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

.easy-step-text {
  font-size: clamp(18px, 2.5vw, 20px);
}

.easy-process-arrow {
  transform: rotate(90deg);
  margin: 0;
}

.easy-process-arrow .easy-arrow-img {
  width: 24px;
  height: auto;
}
}

@media (max-width: 767px) {
.easy-process-section {
  padding: 40px 15px;
}

.easy-process-title {
  font-size: clamp(26px, 6vw, 48px);
  line-height: 1.25;
  margin-bottom: 12px;
  text-align: center;
}

.easy-process-subtitle {
  font-size: clamp(14px, 3.5vw, 16px);
  text-align: center;
  line-height: 1.6;
}

.easy-step-text {
  font-size: clamp(16px, 4vw, 18px);
}

.easy-step-icon img {
  width: 30px;
  height: 30px;
}
}

/* Main timeline section */
.timeline-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 2rem 0;
  margin: 4rem 0;
  background: transparent;
}

.timeline-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .timeline-wrapper {
/*     margin: 5rem 0; */
  }
}

/* Sticky container */
.section-inner {
  position: sticky;
	 top: -22.5vh;
  height: 148vh;
  overflow: visible;
/*   top: 0; */
/*   height: 100vh; */
/*   overflow: hidden; */
  width: 100%;
  max-width: 100vw;
}

@media (max-width: 1023px) {
  .section-inner {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: auto;
    min-height: 100vh;
  }

  .timeline-section {
    overflow-x: hidden;
    overflow-y: visible;
    padding: 1rem 0;
    margin: 2rem 0;
  }

  .timeline-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
  }
}

/* Left wrapper with circle graphics */
.left-wrapper {
  position: relative;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .left-wrapper {
    width: 150%;
    margin-top: -70%;
    max-width: 120vw;
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  .left-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate3d(-30vw, -50%, 0);
    width: 80vw;
    max-width: 1200px;
    z-index: 2;
    overflow: visible;
  }
}

/* Animated dots container */
.dots-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}

.dots-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1023px) {
  .dots-inner {
    transform: rotate(90deg) scaleY(-1);
  }
}

.dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #fff;
  transform-origin: 50%;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

/* SVG circle decoration */
.svg-circle {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1272 / 1314;
  transform: rotate(90deg) scaleY(-1);
  z-index: 1;
  overflow: hidden;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .svg-circle {
    top: 0;
    left: 0;
/*     width: 78vw; */
	  width: 73vw;
/*     max-width: 1000px; */
	  max-width: 1300px;
    transform: none;
    z-index: 1;
    overflow: visible;
  }
}

.timeline-svg {
  width: 100%;
  height: 100%;
}

/* Green inner accent circle on the inner ring */
.timeline-svg .timeline-accent {
  stroke: #82A256;
  stroke-width: 2;
  fill: none;
}

/* Date labels wrapper */
.date-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .date-wrapper {
    transform: rotate(0);
    z-index: 2;
    overflow: visible;
  }
}

.date-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 64.8%;
  aspect-ratio: 1;
}

@media (min-width: 1024px) {
  .date-content {
    justify-content: flex-end;
    transform: translate(1.2vw, 0);
  }
}

/* Date labels styling */
.date {
  position: absolute;
  width: 50%;
  padding-left: 125px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: left;
  transition: opacity 0.6s;
  transform: rotate(calc(var(--index-rotate) * -25deg));
  transform-origin: 100% 50%;
}

@media (min-width: 1024px) {
  .date {
    /* padding-right: 2.8125rem; */
    padding-right: 11.8125rem;
    padding-left: 0;
    font-size: 1.25rem;
    text-align: right;
    transform: rotate(calc(var(--index-rotate) * 25deg));
    transform-origin: 0 50%;
  }
}

.date.active {
  opacity: 1;
}

.date.past {
  opacity: 0.08;
}

.date.future {
  opacity: 0.5;
}

/* Right side content wrapper */
.right-wrapper {
  padding: 0 1rem;
  margin-top: 1.5625rem;
}

@media (max-width: 1023px) {
  .right-wrapper {
    display: flex;
    flex-grow: 1;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .right-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    overflow: visible;
    z-index: 3;
    max-width: 100vw;
  }
}

/* Logo display */
.logo-wrapper {
  position: absolute;
  display: grid;
  place-items: center;
}

@media (max-width: 1023px) {
  .logo-wrapper {
    top: 2rem;
    left: 0;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .logo-wrapper {
    left: 8vw;
  }
}

.logo {
  position: relative;
  grid-area: 1/1;
  max-width: 3.125rem;
  max-height: 3.125rem;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.logo img {
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .logo {
    max-width: 4.125rem;
    max-height: 4.125rem;
  }
}

.logo.visible {
  opacity: 1;
  transition: opacity 0.2s linear 0.2s;
}

/* Timeline posts wrapper */
.posts-wrapper {
  position: relative;
  display: grid;
  place-items: center stretch;
  width: 100%;
  max-width: 100%;
  transform-origin: 5% 50%;
  z-index: 3;
  overflow: visible;
}

.post {
  position: relative;
  grid-area: 1/1;
  z-index: 3;
  max-width: 100%;
  visibility: visible;
}

@media (min-width: 1024px) {
  .post {
    padding-left: 50.5vw;
    transform: rotate(calc(var(--index-rotate) * 23deg));
    transform-origin: 5% 50%;
    max-width: none;
    visibility: visible;
    will-change: transform, opacity;
  }
}

/* Overlay effects for posts */
.overlay,
.overlay-back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  content: '';
  background: linear-gradient(0deg, #0e0e0e, #1a1a1a00);
  opacity: 1;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .overlay,
  .overlay-back {
    display: block;
  }
}

.overlay-back {
  background: linear-gradient(180deg, #0e0e0e, #1a1a1a00);
  opacity: 0;
}

/* Post content styling */
.post-inner {
  position: relative;
  text-align: center;
}

@media (max-width: 1023px) {
  .post-inner {
    opacity: 0;
    display: none;
  }
  
  .post-inner.active {
    opacity: 1;
    display: block;
  }
}

@media (min-width: 1024px) {
  .post-inner {
    width: 39vw;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
    opacity: 0.04;
    visibility: visible;
    overflow-wrap: break-word;
    word-wrap: break-word;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
}

@media (max-width: 1023px) {
  .post-inner {
    max-width: 90vw;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

.post-inner.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  z-index: 10;
}

.post-inner:not(.active) {
  opacity: 0.04;
  visibility: visible;
}

.post-inner.active .overlay,
.post-inner.active .overlay-back {
  opacity: 0;
}

.post-title {
  font-size: 1.125rem;
  line-height: 1.1;
  opacity: 0.5;
  margin-bottom: 0.625rem;
font-weight: 600;
font-size: 20px;
	color:#82A256;

}

@media (min-width: 1024px) {
  .post-title {
    font-size: 1.19vw;
  }
}

.post-description {
  margin-top: 10px;
  line-height: 1.4;
font-weight: 600;
font-size: 24px;
color:#304F6E;
}

@media (min-width: 1024px) {
  .post-description {
    margin-top: 1.49vw;
    font-size: 1.9vw;
  }
}

/* Border utility class */
.border-t {
  border-top-width: 1px;
}

.border-gray-800 {
  border-color: #1f2937;
}