/* ═══════════════════════════════════════════
   About Hero CSS — Premium Gold Design
═══════════════════════════════════════════ */

/* CSS Variables — Gold family */
:root {
  --gold-lightest: rgb(220, 175, 95);
  --gold-light: rgb(180, 140, 70);
  --gold-mid: rgb(150, 115, 55);
  --gold-dark: rgb(121, 96, 51);
  --brown-deep: rgb(52, 50, 47);

  --bg-page: #faf7f2;
  --bg-section: #f5efe4;
  --bg-card: #ffffff;
  --bg-card-warm: #fdf9f3;

  --text-heading: #1e1608;
  --text-body: #4a3d28;
  --text-muted: #8a7355;
  --text-light: #b09870;

  --border-light: rgba(150, 115, 55, 0.18);
  --border-mid: rgba(150, 115, 55, 0.32);
  --shadow-warm: rgba(121, 96, 51, 0.12);
  --shadow-card: rgba(121, 96, 51, 0.08);
}

/* ── Section Wrapper ── */
.custom-about-body {
  position: relative;
  z-index: 1;
  padding: 50px 0;
  overflow: hidden;
  background: var(--bg-page);
}

/* decorative radial blobs */
.custom-about-body::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 140, 70, 0.09) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.custom-about-body::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 96, 51, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* ── Container ── */
.custom-about-section {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
}

.custom-about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ════════════════════════════
   LEFT — Text Content
════════════════════════════ */
.custom-about-left-box {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(-30px);
  animation: aboutSlideLeft .95s cubic-bezier(.22, 1, .36, 1) .1s forwards;
}

/* top gold rule */
.custom-about-left-box::before {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), transparent);
  border-radius: 2px;
  margin-bottom: 26px;
}

/* italic gold label */
.custom-about-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.36em;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.custom-about-subtitle::after {
  content: '';
  display: inline-block;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

/* main heading */
.custom-about-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.85rem, 2.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-heading);
  margin-bottom: 26px;
  position: relative;
}

.custom-about-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-lightest), transparent);
  border-radius: 2px;
  margin-top: 20px;
}

/* body paragraph */
.custom-about-description {
  /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-body);
  letter-spacing: 0.012em;
  margin-bottom: 38px;
}

.custom-about-description strong {
  color: var(--text-heading);
  font-weight: 600;
}

/* CTA arrow link */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color .3s, gap .3s;
  align-self: flex-start;
}

.about-cta-line {
  display: block;
  width: 34px;
  height: 1.5px;
  background: var(--gold-dark);
  border-radius: 2px;
  transition: width .3s, background .3s;
}

.about-cta:hover {
  color: var(--gold-light);
  gap: 20px;
}

.about-cta:hover .about-cta-line {
  width: 52px;
  background: var(--gold-light);
}

/* ════════════════════════════
   RIGHT — Image + Stats
════════════════════════════ */
.custom-about-right-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateX(30px);
  animation: aboutSlideRight .95s cubic-bezier(.22, 1, .36, 1) .28s forwards;
}

/* image wrapper */
.custom-about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow:
    0 0 0 1px var(--border-light),
    0 0 0 5px rgba(245, 239, 228, 0.9),
    0 0 0 6px var(--border-light),
    0 28px 60px rgba(121, 96, 51, 0.18),
    0 8px 20px rgba(121, 96, 51, 0.1);
}

/* gold corner brackets */
.custom-about-image-wrapper::before,
.custom-about-image-wrapper::after {
  content: '';
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.custom-about-image-wrapper::before {
  top: 14px;
  left: 14px;
  border-top: 2px solid rgba(180, 140, 70, 0.7);
  border-left: 2px solid rgba(180, 140, 70, 0.7);
  border-radius: 4px 0 0 0;
}

.custom-about-image-wrapper::after {
  bottom: 14px;
  right: 14px;
  border-bottom: 2px solid rgba(180, 140, 70, 0.7);
  border-right: 2px solid rgba(180, 140, 70, 0.7);
  border-radius: 0 0 4px 0;
}

.custom-about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .75s ease;
  filter: brightness(0.97) saturate(0.92);
}

.custom-about-image-wrapper:hover .custom-about-image {
  transform: scale(1.04);
}

/* warm gradient wash at bottom of image */
.img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 55%, rgba(245, 239, 228, 0.3) 100%);
  pointer-events: none;
}

/* placeholder when image is missing */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #ede5d5 0%, #f5efe4 100%);
}

.img-placeholder svg {
  width: 52px;
  height: 52px;
  color: var(--text-light);
}

.img-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ── Floating Legacy Badge ── */
.legacy-badge {
  position: absolute;
  bottom: -18px;
  left: -22px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-lightest) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 28px rgba(121, 96, 51, 0.35),
    0 0 0 4px rgba(245, 239, 228, 1),
    0 0 0 5px var(--border-light);
  z-index: 4;
  animation: badgeGlow 3s ease-in-out infinite;
}

.legacy-badge-num {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.legacy-badge-text {
  /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Stats Grid ── */
.custom-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.custom-about-stat-box {
  position: relative;
  background: var(--bg-card-warm);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 16px 20px;
  text-align: center;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(22px);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.custom-about-stat-box:nth-child(1) {
  animation: statUp .6s ease .5s forwards;
}

.custom-about-stat-box:nth-child(2) {
  animation: statUp .6s ease .65s forwards;
}

.custom-about-stat-box:nth-child(3) {
  animation: statUp .6s ease .8s forwards;
}

/* top shimmer bar */
.custom-about-stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  border-radius: 0 0 3px 3px;
  transition: left .35s, right .35s;
}

/* corner gold glow */
.custom-about-stat-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  background: radial-gradient(circle at 0% 0%, rgba(180, 140, 70, 0.1), transparent 70%);
  border-radius: 16px 0 0 0;
}

.custom-about-stat-box:hover {
  border-color: var(--gold-light);
  box-shadow:
    0 8px 32px rgba(121, 96, 51, 0.14),
    0 2px 8px rgba(121, 96, 51, 0.08),
    inset 0 0 0 1px rgba(180, 140, 70, 0.08);
  transform: translateY(-5px);
}

.custom-about-stat-box:hover::before {
  left: 10%;
  right: 10%;
}

.custom-about-stat-number {
  display: block;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  background: linear-gradient(145deg, var(--gold-dark) 0%, var(--gold-lightest) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 9px;
}

.custom-about-stat-label {
  display: block;
  /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
  font-size: 0.84rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  line-height: 1.35;
}

/* ════════════════════════════
   Keyframes
════════════════════════════ */
@keyframes aboutSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutSlideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes statUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgeGlow {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(121, 96, 51, 0.35), 0 0 0 4px #faf7f2, 0 0 0 5px rgba(150, 115, 55, 0.3);
  }

  50% {
    box-shadow: 0 8px 36px rgba(180, 140, 70, 0.5), 0 0 0 4px #faf7f2, 0 0 0 5px rgba(180, 140, 70, 0.5);
  }
}

/* ════════════════════════════
   Responsive
════════════════════════════ */
@media (max-width: 960px) {
  .custom-about-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .custom-about-left-box,
  .custom-about-right-box {
    animation-name: aboutFadeUpMob;
  }

  .custom-about-title {
    font-size: clamp(1.75rem, 5.5vw, 2.4rem);
  }

  .legacy-badge {
    bottom: -14px;
    left: -14px;
    width: 76px;
    height: 76px;
  }

  .legacy-badge-num {
    font-size: 1.25rem;
  }
}

@media (max-width: 560px) {
  .custom-about-body {
    padding: 72px 0;
  }

  .custom-about-section {
    padding: 0 20px;
  }

  .custom-about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .custom-about-stats-grid .custom-about-stat-box:last-child {
    grid-column: 1 / -1;
  }

  .custom-about-stat-number {
    font-size: 1.75rem;
  }

  .custom-about-description {
    font-size: 1.08rem;
  }
}

@keyframes aboutFadeUpMob {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About hero css ends here */



/* About Mission Vission CSS starts here */

.custom-vision-section {
  position: relative;
  z-index: 1;
  padding: 70px 0 70px;
  /* background: linear-gradient(135deg, rgb(237, 229, 213) 0%, rgb(245, 239, 228) 100%); */
  background-color: #FDF9F3;
}

/* ══ SECTION HEADER ══ */
.vm-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp .8s ease .1s forwards;
}

.vm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vm-eyebrow::before,
.vm-eyebrow::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
}

.vm-eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.vm-eyebrow::after {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.vm-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.vm-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.vm-ornament-line {
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--gold-mid));
}

.vm-ornament-line:last-child {
  background: linear-gradient(90deg, var(--gold-mid), transparent);
}

.vm-ornament-diamond {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-lightest));
  transform: rotate(45deg);
  border-radius: 1px;
}

/* ══ GRID ══ */
.custom-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ══ CARD ══ */
.custom-vision-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 48px 44px 44px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.custom-vision-card:nth-child(1) {
  animation: fadeUp .8s ease .25s forwards;
}

.custom-vision-card:nth-child(2) {
  animation: fadeUp .8s ease .4s forwards;
}

.custom-vision-card:hover {
  border-color: var(--border-mid);
  box-shadow: 0 12px 48px rgba(121, 96, 51, 0.1), 0 3px 12px rgba(121, 96, 51, 0.06);
  transform: translateY(-4px);
}

/* top gold accent bar */
.custom-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  transition: left .3s, right .3s;
}

.custom-vision-card:hover::before {
  left: 8%;
  right: 8%;
}

/* corner warm glow */
.custom-vision-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle at 0% 0%, rgba(180, 140, 70, 0.08), transparent 70%);
  border-radius: 20px 0 0 0;
  pointer-events: none;
}

/* icon */
.vm-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(121, 96, 51, 0.08), rgba(180, 140, 70, 0.14));
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: box-shadow .3s;
}

.custom-vision-card:hover .vm-icon {
  box-shadow: 0 4px 16px rgba(121, 96, 51, 0.14);
}

.vm-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-mid);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* label */
.custom-vision-label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

/* subtitle eyebrow under label */
.vm-card-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vm-card-sub::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

/* divider */
.vm-rule {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-lightest), transparent);
  border-radius: 2px;
  margin-bottom: 22px;
  transition: width .35s;
}

.custom-vision-card:hover .vm-rule {
  width: 64px;
}

/* text */
.custom-vision-description {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.88;
  letter-spacing: 0.012em;
  color: var(--text-body);
}

/* ══ KEYFRAMES ══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 820px) {
  .custom-vision-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .custom-vision-section {
    padding: 72px 0 80px;
  }
}

@media (max-width: 520px) {
  .custom-vision-card {
    padding: 36px 26px 34px;
  }

  .custom-vision-description {
    font-size: 1.05rem;
  }
}

/* About Mission Vission CSS ends here */


/* =========================================================================== */


/*  Timeline section css starts here */
.timeline-section-parent-section {
  background-color: #f5f7fa;

}

#timeline-section-process {
  /* margin-bottom: 40px; */
  height: 590px;

}

#timeline-section-process .timeline-section-section-heading {
  width: 100%;
}

#timeline-section-process .timeline-section-section-heading h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 0px;
}

.timline-section-main-container {
  margin-top: 96px;

}

@media (max-width: 600px) {

  .timline-section-main-container {
    margin-top: 40px;
  }

}

.timeline-section-steps-timeline {
  overflow: visible;
  /* overflow-x: auto; */
  /* overflow-y: visible; */
  /* overflow-y: auto; */
  display: flex;

}

.timeline-section-steps-pane img {
  height: 100px;
  margin-top: 18px;
  -ms-transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
}

.timeline-section-pane-warp {
  height: 140px;
  width: 25px;
  margin-left: 20%;
  margin-top: 20px;
  -ms-transform: skewX(15deg);
  -webkit-transform: skewX(15deg);
  -o-transform: skewX(15deg);
  -moz-transform: skewX(15deg);
}

.timeline-section-steps-pane {
  height: 140px;
  width: 140px;
  margin-left: 30px;
  box-shadow: 7px 0px 5px #bcbcbc;
}

.timeline-section-inverted-pane-warp {
  height: 140px;
  width: 25px;
  margin-left: 20%;
  -ms-transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
}

.timeline-section-inverted-steps-pane {
  height: 140px;
  width: 140px;
  background: #bcbcbc;
  margin-left: 30px;
  box-shadow: 7px 0px 5px #bcbcbc;
}

.timeline-section-inverted-steps-pane p {
  -ms-transform: skewX(15deg);
  -webkit-transform: skewX(15deg);
  -o-transform: skewX(15deg);
  -moz-transform: skewX(15deg);
  padding: 20px 10px 10px 10px;
  color: black;
  font-weight: 600;
  font-size: 18px;
}

.timeline-section-end-circle {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  position: absolute;
  margin-top: 19px;
  margin-left: -10px;
}


@media(min-width: 900px) {
  .timeline-section-steps-timeline {
    border-top: 5px double #fc6429;
    padding-top: 32px;
    margin-top: 40px;
    margin-left: 3%;
    margin-right: 3%;
    width: 100%;
    /* overflow: visible; */

  }

  .timeline-section-steps-one,
  .timeline-section-steps-two,
  .timeline-section-steps-three,
  .timeline-section-steps-four,
  .timeline-section-steps-five,
  .timeline-section-steps-six {
    float: left;
    width: 20%;
    z-index: 10;
    margin-top: -105px;
  }

  .timeline-section-step-wrap {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    margin-left: 39%;
    border: 2px solid #fc6429;
  }

  .timeline-section-verticle-line {
    position: absolute;

    height: 57px;
    width: 5px;
    margin-left: 10px;
    marker-top: 10px;
  }

  .timeline-section-steps-stops {
    height: 25px;
    width: 25px;
    margin: 11px 10.1px;
    border-radius: 50%;
    background: #fc6429;
  }

  .timeline-section-end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: 19px;
    margin-left: -10px;
  }

  .timeline-section-inverted-end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: 19px;
    margin-left: 11.1%;
  }
}

@media(max-width: 899px) {
  #timeline-section-process .container-fluid {
    width: 50%;

  }

  #timeline-section-process {
    height: 1750px;
  }

  .timeline-section-steps-timeline {
    border-left: 5px double #fc6429;
    margin-left: 35px;
    flex-direction: column;
  }

  .timeline-section-steps-one,
  .timeline-section-steps-two,
  .timeline-section-steps-three,
  .timeline-section-steps-four,
  .timeline-section-steps-five,
  .timeline-section-steps-six {
    margin-left: -25px;
  }

  .timeline-section-step-wrap,
  .timeline-section-steps-stops {
    float: left;
  }

  .timeline-section-steps-timeline {
    border-left: 2px solid #ff4400;
    margin-left: 30px;
  }

  .timeline-section-pane-warp {
    margin-left: 30%;
  }

  .timeline-section-inverted-pane-warp {
    margin-left: 30%;
  }

  .timeline-section-verticle-line {
    position: absolute;
    width: 125px;
    height: 5px;
    margin-left: 5px;
    margin-top: 10px;
  }

  .timeline-section-steps-stops {
    height: 25px;
    width: 25px;
    margin: 11px 10px;
    border-radius: 50%;
    background: #fc6429;
  }

  .timeline-section-step-wrap {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    margin-top: 125px;
    margin-left: -2px;
    border: 2px solid #fc6429;
  }

  .timeline-section-end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: -45px;
    margin-left: 17px;
  }

  .timeline-section-inverted-end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: 288px;
    margin-left: 17px;
  }
}

@media (max-width: 600px) {
  #timeline-section-process .container-fluid {
    width: 90%;


  }

  #timeline-section-process {
    height: 2250px;
  }

  .timeline-section-steps-timeline h3 {
    margin-bottom: 0px;
    margin-top: 20px;
  }

}

/* @media (max-width: 400px) {
  #timeline-section-process {
    height: 1750px;
  }

  .timeline-section-verticle-line {
    width: 105px;

  }
} */

.timeline-section-back-orange {
  background: #fc6429;
}

.timeline-section-back-blue {
  background: rgb(59, 37, 132);
}

/* Timeline section css ends here */