:root {
  --findox-white: #ffffff;
  --findox-base: #2478a9;
  --findox-primary: #f28b21fa;
  --findox-black2: #fff;
  --findox-black3: #333333;
  --findox-black4: #131111;
  --findox-border-color: #dddddd;
  --findox-text: #707070;
  --findox-heading-font: 'Work Sans', sans-serif;
  --findox-body-font: 'Work Sans', sans-serif;
}

/* ---- Content Grid Layout System ---- */
.content-grid {
  --padding-inline: 1rem;
  width: 100%;
  --content-max-width: 1500px;
  --breakout-max-width: 85ch;
  --breakout-size: calc((var(--breakout-max-width) - var(--content-max-width)) / 2);
  display: grid;
  grid-template-columns:
    [full-width-start] minmax(var(--padding-inline), 1fr)
    [breakout-start] minmax(0, var(--breakout-size))
    [content-start] min(100% - (var(--padding-inline) * 2), var(--content-max-width))
    [content-end] minmax(0, var(--breakout-size))
    [breakout-end] minmax(var(--padding-inline), 1fr)
    [full-width-end];
}

.content-grid > :not(.breakout, .full-width) {
  grid-column: content;
  width: 100%;
  padding-inline: 0px;
}

.content-grid > .breakout {
  grid-column: breakout;
}

.content-grid > .full-width {
  grid-column: full-width;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--findox-body-font);
  color: var(--findox-text);
  margin: 0;
  padding: 0;
  background-color: var(--findox-white);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Row & Column Layout ---- */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}

.col-lg-6 {
  width: 100%;
}

@media (min-width: 992px) {
  .col-lg-6 {
    width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
  }
}

/* ---- Scroll Animations (replaces AOS) ---- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="fade-right"] {
  transform: translateX(-60px);
}

[data-animate="fade-left"] {
  transform: translateX(60px);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  overflow: hidden;
  position: relative;
  background-color: var(--findox-white, #ffffff);
  padding-block: 60px 0 60px 0;
}

/* ── EQUAL HEIGHT FIX ── */
/* 1. Stretch both columns to the tallest one (the content side) */
.about-one .row {
  align-items: stretch;
}

/* 2. Make the image column a flex container so children can fill it */
.about-one .col-lg-6:first-child {
  display: flex;
  flex-direction: column;
}

/* ============================
   Image Section
   ============================ */
.about-one__image {
  position: relative;
  max-width: 90%;
  /* 3. Stretch the wrapper to fill its column */
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .about-one__image {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* 4. Let the primary image block grow and fill available height */
.about-one__image__one {
  position: relative;
  flex: 1;
  display: flex;
}

/* 5. Make the image itself fill the expanded block */
.about-one__image__one__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 0px 0px 0px 100px;
}

.about-one__image__shape-1 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 31px;
  right: -43px;
  animation: zump 2s linear infinite;
}
@media (max-width: 575px) {
  .about-one__image__shape-1 {
    display: none;
  }
}

.about-one__image__two {
  display: table;
  position: relative;
  z-index: 2;
  margin: -148px 15px 0px auto;
  border-top: 10px solid var(--findox-white, #ffffff);
  border-left: 10px solid var(--findox-white, #ffffff);
}
@media (max-width: 767px) {
  .about-one__image__two {
    margin-right: 0px;
  }
}
@media (max-width: 500px) {
  .about-one__image__two {
    margin: 0px;
  }
}
.about-one__image__two__img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.about-one__image__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: -84px;
  bottom: 6px;
  animation: zumpBottom 2s linear infinite;
}
@media (max-width: 500px) {
  .about-one__image__shape-2 {
    display: none;
  }
}

/* Experience Box styling */
.about-one__experience {
  position: absolute;
  top: -104px;
  right: 0px;
  z-index: 2;
  text-align: right;
}
.about-one__experience__year {
  display: table;
  position: relative;
  z-index: 1;
  margin: 0px 0px 0px auto;
  padding: 38px 22.5px 26px;
  font-size: 40px;
  color: var(--findox-black2, #fff);
  text-align: center;
  font-weight: 700;
  line-height: 1;
  border-radius: 100px 100px 0px 0px;
  /* background-color: var(--findox-primary, #f28b21fa); */
  background: linear-gradient(135deg, #e17416 0, #f97809 100%);
  font-family: var(--findox-heading-font);
}
.about-one__experience__year::after {
  content: "";
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  border: 1px dashed var(--findox-white, #fff);
}
.about-one__experience__title {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0px;
  padding: 8px 20px;
  font-size: 18px;
  color: var(--findox-white, #ffffff);
  line-height: 1.388;
  font-weight: 700;
  text-transform: capitalize;
  background-color: var(--findox-base, #2478a9);
  border-left: 10px solid var(--findox-white, #ffffff);
  border-bottom: 10px solid var(--findox-white, #ffffff);
  font-family: var(--findox-heading-font);
}

/* ============================
   Content Section
   ============================ */
.about-one__content {
  margin-top: 1px;
}
@media (max-width: 991px) {
  .about-one__content {
    margin-top: 50px;
  }

  .row {
 
  gap: 0px 30px;
}
}

.sec-title {
  margin-bottom: 20px;
}
.sec-title__top {
  display: inline-flex;
  align-items: center;
  padding: 8px 25px 8px 20px;
  /* background-color: var(--tagline-bg, #ECF5F4); */
  background: linear-gradient(135deg, #ECF5F4 0, #ECF5F4 100%);
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--findox-primary, #f28b21fa);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--findox-heading-font);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}
.sec-title__shape {
  margin-right: 10px;
}
.sec-title__tagline {
  margin: 0;
  position: relative;
  z-index: 2;
}

.sec-title__title {
  font-family: var(--findox-heading-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--findox-black4, #131111);
}

.about-one__text {
  /* margin-bottom: 40px; */
  font-size: 16px;
  line-height: 1.8;
}

/* ============================
   Tabs Actions
   ============================ */
.tab-buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0; 
}
@media (max-width: 575px) {
  .tab-buttons {
    /* flex-direction: column; */
    align-items: flex-start;
    /* gap: 12px; */
  }
}
.tab-btn {
  list-style: none;
  position: relative;
  padding: 10px 30px;
  cursor: pointer;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.562;
  color: var(--findox-black3, #333333);
  text-transform: capitalize;
  border-radius: 50px 0px;
  background-color: var(--findox-white, #ffffff);
  border: 1px solid var(--findox-border-color, #dddddd);
  transition: all 400ms ease;
  user-select: none;
}
.tab-btn::after {
  content: "";
  width: 56.49px;
  height: 25.067px;
  position: absolute;
  right: -9px;
  bottom: -7px;
  z-index: -1;
  opacity: 0;
  transform: rotate(129.56deg);
  border-radius: inherit;
  background-color: var(--findox-base, #2478a9);
  transition: all 400ms ease;
}
.tab-btn:hover, .tab-btn.active-btn {
  color:  #fff;
  border-color: var(--findox-primary, #f28b21fa);
 background: linear-gradient(135deg, #e17416 0, #f97809 100%);
}
.tab-btn.active-btn::after {
  opacity: 1;
}

/* ============================
   Tabs Content Body
   ============================ */
.tabs-content {
  display: block;
  margin-top: 35px;
  position: relative;
}

.tabs-content__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 231px;
  grid-gap: 30px;
  position: relative;
  z-index: 1;
  padding: 30px 30px 30px 85px; 
  background-color: #ECF5F4;
}

@media (max-width: 767px) {
  .tabs-content__inner {
    grid-template-columns: 1fr;
    padding: 39px 20px 20px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tabs-content__inner {
    grid-template-columns: 1fr;
    padding: 39px 20px 20px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tabs-content__inner {
    grid-template-columns: 1fr;
    padding: 39px 20px 20px 25px;
  }
}

/* The left dual green/yellow strip */
.tabs-content__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 44px;
  z-index: 0;
}
.tabs-content__inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 44px;
  z-index: 0;
}
.tabs-content__inner::before {
  background-color: var(--findox-base, #2478a9);
  height: 50%;
  bottom: auto;
}
.tabs-content__inner::after {
 background: linear-gradient(135deg, #e17416 0, #f97809 100%);
  height: 50%;
  top: auto;
}
@media (max-width: 767px) {
  .tabs-content__inner::before,
  .tabs-content__inner::after {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tabs-content__inner::before,
  .tabs-content__inner::after {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tabs-content__inner::before,
  .tabs-content__inner::after {
    display: none;
  }
}

.tabs-content__list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

/* The white unified pill behind the checkmarks */
.tabs-content__list::before {
  content: '';
  position: absolute;
  top: -15px;
  bottom: -15px;
  left: -70px;
  width: 50px;
  background-color: #ffffff;
  border-radius: 50px;
  z-index: -1;
}
@media (max-width: 767px) {
  .tabs-content__list::before {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tabs-content__list::before {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tabs-content__list::before {
    display: none;
  }
}

.tabs-content__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.tabs-content__list li:last-child {
  margin-bottom: 0;
}

/* Checkmark icon in a visible rounded box — always visible */
.tabs-content__list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background-color: var(--findox-white, #ffffff);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 3;
}

/* On large desktop, position the boxes overlapping the left strip */
@media (min-width: 1200px) {
  .tabs-content__list__icon {
    position: absolute;
    left: -62px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.tabs-content__list__icon svg {
  fill: var(--findox-base, #2478a9);
  width: 14px;
  height: auto;
}

.tabs-content__list li a {
  color: var(--findox-black3, #333333);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--findox-heading-font);
  text-decoration: none;
  transition: all 0.3s ease;
}

.tabs-content__list li a:hover {
  color: var(--findox-base, #2478a9);
}

.tabs-content__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.tabs-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Animations that were referenced in CSS */
@keyframes zump {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes zumpBottom {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}



.feature-list-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 15px 0;
}

.feature-list-1 li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333
}



.feature-list-1 li svg {
    width: 18px;
    height: 18px;
    fill: none;           
    color: #f97809;      
    flex-shrink: 0;
}