/* =========================
    ABOUT PAGE
========================= */

.about-page {
    --about-ink: #071d2f;
    --about-muted: #6c7784;
    --about-blue: #2D2A7B;
    --about-deep: #053047;
    --about-surface: #ffffff;
    --about-soft: #f4f9fd;
    color: var(--about-ink);
    overflow-x: clip;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page p {
    margin: 0;
}

.about-hero {
    position: relative;
    isolation: isolate;
    padding: 74px 0 58px;
    overflow: hidden;
    /* background:
        radial-gradient(circle at 16% 45%, rgba(7, 152, 216, 0.10), transparent 18%),
        radial-gradient(circle at 82% 28%, rgba(35, 164, 85, 0.10), transparent 20%),
        linear-gradient(180deg, rgba(255,255,255,0.9), rgba(244,249,253,0.86)); */
}

.about-hero-inner {
    max-width: 730px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--about-blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-hero h1 {
    max-width: 690px;
    margin: 12px auto 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
}

.about-hero p {
    max-width: 580px;
    margin: 0 auto 24px;
    color: var(--about-muted);
    font-size: 16px;
    line-height: 1.8;
}

.about-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2D2A7B, #533BFF);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(7, 152, 216, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-primary-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(7, 95, 149, 0.28);
}

.about-ring {
    position: absolute;
    top: 50%;
    width: 124px;
    height: 124px;
    border: 2px dashed rgba(7, 152, 216, 0.35);
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--about-deep);
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-50%);
}

.about-ring span {
    font-size: 11px;
    color: var(--about-muted);
    font-weight: 700;
}

.about-ring strong {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.about-ring-left {
    left: max(24px, calc((100vw - 1180px) / 2));
}

.about-ring-right {
    right: max(24px, calc((100vw - 1180px) / 2));
}

@media (max-width: 1024px) {
    .about-hero {
        padding: 56px 0 48px;
    }

    .about-ring {
        width: 96px;
        height: 96px;
    }

    .about-ring strong {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 48px 0 40px;
    }

    .about-hero h1 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .about-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-ring {
        display: none;
    }

    .about-primary-btn {
        width: 100%;
        max-width: 280px;
    }
}

.about-team-banner {
    background: #fff;
}

/* Harsh here starts */

/* ===============================
   WHO WE ARE SECTION
================================= */

.who-we-are-section{
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}

.who-we-are-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

/* LEFT SIDE */
.who-we-are-content{
  width: 38%;
  position: relative;
}

.section-top-line{
  width: 55px;
  height: 6px;
  background: #1a9b43;
  border-radius: 20px;
  margin-bottom: 22px;
}

.who-we-are-content h2{
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 700;
  color: #0b2d73;
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
}

.who-we-are-content h2 span{
  color: #1a9b43;
}

.title-underline{
  width: 75px;
  height: 4px;
  background: #182d67;
  border-radius: 20px;
  margin-bottom: 42px;
}

.who-we-are-content p{
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  color: #111;
  margin-bottom: 34px;
  font-weight: 400;
  max-width: 520px;
  font-family: "Poppins", sans-serif;
}

/* RIGHT IMAGE */
.who-we-are-image{
  width: 62%;
  position: relative;
  
  /* border thickness */
  

  /* border color */


  /* same polygon shape */
  clip-path: polygon(
    10% 0%,
    100% 0%,
    92% 100%,
    0% 100%
  );
}

.who-we-are-image img{
  width: 100%;
  display: block;
  border-radius: 40px;
  object-fit: cover;

  /* inner shape */
  clip-path: polygon(
    10% 0%,
    100% 0%,
    92% 100%,
    0% 100%
  );
}

/* QUOTE BOX */
.workspace-quote{
  position: absolute;
  left: 0;
  bottom: 0;
  background: #0b2d73;
  color: #fff;
  padding: clamp(18px, 3vw, 30px) clamp(20px, 3.5vw, 42px);
  width: min(420px, 88%);
  max-width: calc(100% - 16px);

  display: flex;
  align-items: center;
  gap: 18px;

  clip-path: polygon(
    0 0,
    88% 0,
    100% 100%,
    0% 100%
  );
}

.quote-left,
.quote-right{
  color: #19b34b;
  font-size: 55px;
  line-height: 1;
  font-weight: 700;
}

.quote-text{
  font-size: clamp(18px, 2.8vw, 34px);
  line-height: 1.2;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

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

@media(max-width: 1200px){

  .who-we-are-wrapper{
    gap: 48px;
  }

  .who-we-are-content h2{
    font-size: clamp(32px, 4.5vw, 50px);
  }

  .who-we-are-content p{
    font-size: 17px;
    max-width: none;
  }

  .quote-text{
    font-size: 24px;
  }

}

@media(max-width: 1024px){

  .who-we-are-section{
    padding: 72px 0;
  }

  .who-we-are-wrapper{
    flex-direction: column;
    gap: 40px;
  }

  .who-we-are-content,
  .who-we-are-image{
    width: 100%;
  }

  .who-we-are-image{
    clip-path: none;
  }

  .who-we-are-image img{
    clip-path: none;
    border-radius: 24px;
    max-height: 480px;
    object-fit: cover;
  }

  .workspace-quote{
    width: min(360px, 92%);
  }

}

@media(max-width: 991px){

  .who-we-are-content{
    margin-bottom: 0;
  }

}

@media(max-width: 767px){

  .who-we-are-section{
    padding: 56px 0;
  }

  .who-we-are-content h2{
    font-size: clamp(28px, 8vw, 38px);
  }

  .who-we-are-content p{
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .who-we-are-image img{
    max-height: 360px;
    border-radius: 18px;
  }

  .workspace-quote{
    width: calc(100% - 12px);
    left: 6px;
    bottom: 6px;
    padding: 16px 18px;
    gap: 12px;
    clip-path: none;
    border-radius: 12px 12px 18px 12px;
  }

  .quote-text{
    font-size: 17px;
  }

  .quote-left,
  .quote-right{
    font-size: 28px;
  }

}

/* =========================
   BRAND PROMISE + CORE VALUES
========================= */

.brand-promise-section{
  padding: 70px 0;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.brand-box{
  border: 2px solid #d9d9d9;
  border-radius: 30px;
  padding: 35px 30px 40px;
  margin-bottom: 55px;
}

.section-heading{
  margin-bottom: 40px;
}

.section-heading h2{
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: #0b2d73;
  margin: 0;
  line-height: 1.1;
}

.section-heading h2 span{
  color: #13953e;
}

.heading-line{
  width: 60px;
  height: 4px;
  background: #0b2d73;
  border-radius: 20px;
  margin-top: 15px;
}

/* =========================
   PROMISE GRID
========================= */

.promise-grid{
  display: grid;
  grid-template-columns: repeat(5,1fr);
}

.promise-item{
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid #d9d9d9;
}

.promise-item.no-border{
  border-right: none;
}

.promise-icon{
  width: 92px;
  height: 92px;
  border: 2px dashed #d8d8d8;
  border-radius: 50%;
  margin: 0 auto 24px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.promise-icon i{
  color: #13953e;
  font-size: 40px;
}

.promise-item h3{
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.3;
  font-weight: 700;
  color: #0b2d73;
  margin-bottom: 14px;
}

.mini-line{
  width: 36px;
  height: 4px;
  background: #13953e;
  border-radius: 20px;
  margin: 0 auto 18px;
}

.promise-item p{
  font-size: 15px;
  line-height: 1.9;
  color: #222;
  margin: 0;
}

/* =========================
   CORE VALUES
========================= */

.core-values-wrap{
  padding-top: 10px;
}

.core-grid{
  display: grid;
  grid-template-columns: repeat(5,1fr);
}

.core-item{
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid #d9d9d9;
}

.core-item.no-border{
  border-right: none;
}

.core-icon{
  width: 86px;
  height: 86px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 24px;
}

.core-icon.blue{
  background: #0b2d73;
}

.core-icon.green{
  background: #13953e;
}

.core-icon i{
  color: #fff;
  font-size: 36px;
}

.core-item h3{
  font-size: 20px;
  font-weight: 700;
  color: #0b2d73;
  margin-bottom: 18px;
  line-height: 1.4;
}

.core-item p{
  font-size: 15px;
  line-height: 1.9;
  color: #222;
  margin: 0;
}

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

@media(max-width: 1200px){

  .promise-grid,
  .core-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 0;
  }

  .promise-item:nth-child(3),
  .core-item:nth-child(3){
    border-right: none;
  }

  .promise-item:nth-child(4),
  .promise-item:nth-child(5),
  .core-item:nth-child(4),
  .core-item:nth-child(5){
    border-right: none;
  }

}

@media(max-width: 1024px){

  .brand-box{
    padding: 28px 22px 32px;
    border-radius: 22px;
  }

  .promise-grid,
  .core-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .promise-item,
  .core-item{
    border-right: none;
    padding: 0 12px;
  }

  .promise-item:nth-child(odd),
  .core-item:nth-child(odd){
    border-right: 1px solid #d9d9d9;
  }

  .promise-item:nth-child(3),
  .core-item:nth-child(3){
    border-right: 1px solid #d9d9d9;
  }

  .promise-item:nth-child(even),
  .core-item:nth-child(even){
    border-right: none;
  }

}

@media(max-width: 767px){

  .brand-promise-section{
    padding: 50px 0;
  }

  .section-heading h2{
    font-size: 38px;
  }

  .promise-grid,
  .core-grid{
    grid-template-columns: 1fr;
  }

  .promise-item,
  .core-item{
    border-right: none !important;
    border-bottom: 1px solid #d9d9d9;
    padding: 0 0 28px;
    margin-bottom: 28px;
  }

  .promise-icon,
  .core-icon{
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
  }

  .promise-icon i{
    font-size: 32px;
  }

  .promise-item:last-child,
  .core-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .brand-box{
    margin-bottom: 40px;
  }

}

/* =========================
   GLOBAL
========================= */

.message-sections{
  position: relative;
  overflow: visible;
  background: #333374;
  isolation: isolate;
}

.message-sections__title {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(48px, 7vw, 70px) 0 clamp(8px, 7vw, 60px);
}

.message-sections__title h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #fff;
}

/* =========================
   STICKY WATERMARK
========================= */

.message-sections .journey-watermark{
  position: absolute;
  top: 0;
  right: max(-20px, -2vw);
  bottom: 0;
  width: min(320px, 28vw);
  z-index: 1;
  pointer-events: none;
}

.message-sections .journey-watermark img,
.message-sections .journey-watermark svg{
  position: sticky;
  top: calc(var(--header-height, 110px) + 20px);
  width: 100%;
  opacity: 0.091;
  display: block;
}

.sticky-watermark{
  position: sticky;
  bottom: 30px;
  float: right;
  width: 180px;
  margin-right: 40px;
  z-index: 10;
  opacity: 0.08;
  pointer-events: none;
}

.sticky-watermark img{
  width: 100%;
  display: block;
}

/* =========================
   MESSAGE BLOCK
========================= */

.message-block{
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 90px);
  position: relative;
  z-index: 2;
  padding: 0 0 80px 0;
}

/* @media (min-width: 1200px) {
  .message-block{
    min-height: 100vh;
  }
} */

/* alternate layout */
.message-block.reverse{
  flex-direction: row-reverse;
}

/* =========================
   LEFT / RIGHT IMAGE
========================= */

.message-image-side{
  width: 33%;
  min-width: 0;
  position: relative;
  flex-shrink: 0;
}

.image-frame{
  position: relative;
  border-radius: 24px;
  overflow: visible;
  z-index: 2;
}

/* back blue shape */
.image-frame::before{
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 100%;
  height: 100%;
  background: #23235b;
  border-radius: 28px;
  z-index: -1;
}

/* orange border */
.image-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid #0B8848;
  border-radius: 24px;
  pointer-events: none;
}

.image-frame img{
  width: 100%;
  height: clamp(300px, 42vw, 650px);
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* person card */
.person-card{
  text-align: center;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 18px;
}

.person-card h4{
  margin: 0 0 4px;
  font-size: clamp(22px, 2.8vw, 34px);
  color: #18214d;
  font-family: "Playfair Display", serif;
}

.person-card p{
  margin: 0;
  color: #555;
  font-size: clamp(14px, 1.5vw, 18px);
}

/* =========================
   CONTENT
========================= */

.message-content{
  margin-top: 30px;
  width: 58%;
  min-width: 0;
  color: #fff;
}

.message-content h2{
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1.1;
  margin: 0 0 clamp(20px, 3vw, 35px);
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.message-content p{
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.85;
  margin-bottom: clamp(18px, 2.5vw, 28px);
  color: rgba(255,255,255,0.95);
  font-weight: 400;
}

/* =========================
   AWARDS SECTION
========================= */

.about-awards-section {
  position: relative;
  z-index: 2;
  background: #f4f4f4;
  padding: clamp(56px, 8vw, 96px) 0;
}

.about-awards__header {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.about-awards__kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #108948;
}

.about-awards__header h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 700;
  color: #0b2d73;
  font-family: "Playfair Display", serif;
}

.about-awards__header p {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: #5a6578;
}

.about-awards__grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.about-award-card {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2.5vw, 24px);
  padding: clamp(16px, 2vw, 22px);
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e3e8ef;
  box-shadow: 0 12px 32px rgba(11, 45, 115, 0.06);
}

.about-award-card__media {
  flex-shrink: 0;
  width: clamp(120px, 18vw, 180px);
}

.about-award-card__media img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.about-award-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-award-card__recipient {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #108948;
}

.about-award-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.about-award-card__head i {
  flex-shrink: 0;
  font-size: clamp(24px, 3vw, 30px);
  color: #0b2d73;
  line-height: 1;
}

.about-award-card__head h3 {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0b2d73;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.about-award-card__body > p {
  margin: 0;
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.65;
  color: #374151;
}

.about-awards__honors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.about-award-honor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d8e3ef;
  box-shadow: 0 8px 20px rgba(11, 45, 115, 0.05);
  color: #0b2d73;
  font-size: 14px;
  font-weight: 700;
}

.about-award-honor i {
  font-size: 18px;
  color: #108948;
}

/* =========================
   DOT DECORATIONS
========================= */

.message-block-before-dots::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(260px, 40vw);
  height: min(260px, 40vw);
  background-image: radial-gradient(rgba(255,140,0,0.35) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.8;
}

.message-block::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(260px, 40vw);
  height: min(260px, 40vw);
  background-image: radial-gradient(rgba(255,140,0,0.25) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.8;
}

/* =========================
   RESPONSIVE — MESSAGE BLOCKS
========================= */

@media(max-width: 1400px){
  .message-content h2{
    font-size: clamp(28px, 4.5vw, 58px);
  }
}

@media(max-width: 1100px){

  .message-block,
  .message-block.reverse{
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
    min-height: auto;
    padding: clamp(40px, 6vw, 56px) 0;
  }

  .message-block.reverse .message-image-side{
    order: -1;
  }

  .message-image-side,
  .message-content{
    width: 100%;
  }

  .image-frame{
    max-width: 520px;
    margin: 0 auto;
  }

  .image-frame::before{
    left: -12px;
    bottom: -12px;
  }

  .message-sections .journey-watermark{
    width: min(200px, 22vw);
    right: -12px;
  }

  .message-sections .journey-watermark img{
    top: calc(var(--header-height, 110px) + 12px);
  }

}

@media(max-width: 768px){

  .message-block{
    padding: 40px 0;
  }

  .message-block-before-dots::before,
  .message-block::after{
    width: 120px;
    height: 120px;
    opacity: 0.45;
  }

  .message-content h2{
    font-size: clamp(26px, 7vw, 36px);
  }

  .message-content p{
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .about-awards__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-award-card {
    flex-direction: column;
    align-items: stretch;
  }

  .about-award-card__media {
    width: 100%;
    max-width: none;
  }

  .about-award-honor {
    width: 100%;
    justify-content: center;
  }

  .person-card{
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .person-card h4{
    font-size: 20px;
  }

  .person-card p{
    font-size: 13px;
  }

  .image-frame img{
    height: clamp(280px, 68vw, 400px);
  }

  .message-sections .journey-watermark{
    width: 120px;
    right: -8px;
    opacity: 0.7;
  }

}

@media (min-width: 769px) and (max-width: 1024px){

  .message-content h2{
    font-size: clamp(32px, 4vw, 44px);
  }

  .image-frame img{
    height: clamp(360px, 45vw, 480px);
  }

}

/* Journey css starts */
/* =========================
       SECTION
    ========================= */

    .journey-section{
      position:relative;
      z-index: 2;
      background:#f4f4f4;
      padding: clamp(64px, 10vw, 120px) 0 clamp(80px, 12vw, 180px);
      overflow: hidden;
    }

    .journey-title{
      text-align:center;
      margin-bottom: clamp(48px, 8vw, 140px);
    }

    .journey-title h2{
      display:flex;
      flex-direction:column;
      align-items:center;
      line-height:1.05;
      gap: clamp(10px, 2vw, 20px);
      width: 100%;
      max-width: 960px;
      margin: 0 auto;
    }

    .journey-title .black{
      font-size: clamp(36px, 7vw, 110px);
      color:#0b2d73;
      font-family:"Playfair Display",serif;
      font-weight:700;
    }

    .journey-title .green{
      font-size: clamp(32px, 6vw, 95px);
      color:#13953e;
      font-family:"Playfair Display",serif;
      font-weight:700;
      align-self: flex-end;
      padding-right: clamp(0px, 8vw, 100px);
      max-width: 100%;
      text-align: right;
    }

    .journey-timeline{
      display:flex;
      flex-direction:column;
      gap: clamp(40px, 8vw, 140px);
      position:relative;
    }

    .journey-item{
      display:grid;
      grid-template-columns: minmax(140px, 300px) minmax(0, 1fr);
      gap: clamp(24px, 10vw, 180px);
      align-items:center;
      cursor:pointer;
      position:relative;
      z-index:5;
    }

    .journey-year{
      font-size: clamp(28px, 4vw, 62px);
      font-family:"Playfair Display",serif;
      color:#79808c;
      position:relative;
      transition:.4s ease;
      width:fit-content;
      max-width: 100%;
      word-break: break-word;
    }

    .journey-year span{
      position:absolute;
      left:0;
      bottom:-12px;
      width:0;
      height:2px;
      background:#204234;
      transition:.4s ease;
    }

    .journey-item:hover .journey-year{
      color:#1f4032;
    }

    .journey-item:hover .journey-year span{
      width:100%;
    }

    /* =========================
       CONTENT
    ========================= */

    .journey-content{
      font-size: clamp(15px, 2vw, 30px);
      line-height:1.75;
      color:#4c5360;
      max-width:900px;
      transition:.4s ease;
    }

    .journey-item:hover .journey-content{
      transform:translateX(6px);
    }

    @media(max-width:1400px){
      .journey-title .green{
        padding-right: clamp(0px, 4vw, 60px);
      }
    }

    @media(max-width:992px){

      .journey-item{
        grid-template-columns:1fr;
        gap:16px;
        align-items: start;
      }

      .journey-title{
        margin-bottom: clamp(40px, 7vw, 72px);
      }

      .journey-title .green{
        align-self: center;
        padding-right: 0;
        text-align: center;
      }

      .journey-item:hover .journey-content{
        transform: none;
      }

    }

    @media(max-width:768px){

      .journey-section{
        padding: 56px 0 72px;
      }

      .journey-timeline{
        gap: 32px;
      }

      .journey-year{
        font-size: clamp(22px, 6vw, 28px);
      }

      .journey-content{
        font-size: 15px;
        line-height: 1.7;
      }

    }
/* journey section ends */