/* ------------------ HERO AREA ------------------ */
.cfabout-hsec-x91 {
  width: 100%;
  padding: 100px 0;                 /* Desktop */
  background: #f5f5f5;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

/* Tablet */
@media (max-width: 768px) {
  .cfabout-hsec-x91 {
    padding: 80px 0;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .cfabout-hsec-x91 {
    padding: 60px 0;
  }
}


.about-bridge {
  width: 100%;
  height: 70px;              /* adjust overlap thickness */
  background: #000000;       /* same color as next section */
  position: relative;
  top: 0;                    /* attach to bottom */
  margin-top: -80px;         /* overlap amount */
  z-index: 0;                /* behind the white card */
}

.cfabout-highlight-x91 {
	font-family: 'Inter Tight', sans-serif !important;
	font-weight:600;
	font-size:64px;
    color: #072137; /* highlight color */
}
.cfabout-title-x91 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #2C73E5;
}
@media (max-width: 768px) {
  .cfabout-title-x91 {
    font-size: 32px;   /* adjust as needed */
    text-align: center;
    margin-bottom: 14px;
  }
}

@media (max-width: 992px) {
  .cfabout-highlight-x91 {
    font-size: 32px;
  }
}


.cfabout-wrap-x91 {
  width: min(92%, 1200px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.cfabout-left-x91 {
  width: 50%;
}

.cfabout-breadcrumb-pill91 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background:#EEF7F1;  /* soft pale green */
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.cfabout-breadcrumb-pill91 a,
.cfabout-breadcrumb-pill91 p {
  font-size: 16px;
  font-weight: 300;
  color: #5AB379;     /* pastel green text */
  margin: 0;
  text-decoration: none;
}

.cfabout-breadcrumb-pill91 span {
  color: #a8d9bf;     /* lighter divider color */
  font-weight: 400;
}




.cfabout-desc-x91 {
  font-size: 21px;
  line-height: 1.5;
  color: #444;
  max-width: 500px;
}
@media (max-width: 768px) {
  .cfabout-desc-x91 {
    font-size: 18px;
    max-width: 100%;
  }
}

.cfabout-right-x91 {
  width: 50%;
  text-align: right; /* moves image to right side */
}

.cfabout-right-x91 img {
        /* reduce size (change value if needed) */
  height: auto;
  border-radius: 0;
  display: inline-block; /* ensures alignment works perfectly */
}
@media (max-width: 768px) {

  /* Mobile layout stacking */
  .cfabout-wrap-x91 {
    flex-direction: column;      /* stack vertically */
    text-align: center;
  }

  /* Reorder items */
  .cfabout-left-x91 { order: 1; }   /* Title + text first */
  .cfabout-right-x91 { order: 2; }  /* Image second */

  /* Make them full width */
  .cfabout-left-x91,
  .cfabout-right-x91 {
    width: 100%;
  }

  /* CENTER IMAGE */
  .cfabout-right-x91 {
    text-align: center !important;
  }

  .cfabout-right-x91 img {
    display: block;
    margin: 0 auto;
    width: 90%; /* optional */
  }
}


/* ------------------ SECTION 2 ------------------ */
/* in need this section */

.cf-about-sec102 {
  width: 100%;
  padding:30px;
  background: #f5f5f7;
  font-family: "Inter", sans-serif;
  border-bottom: 1px solid #e4e4e4; /* full-width border */
}

/* =========================
   INNER WRAP (BOXED CONTENT)
========================= */
.cf-about-sec102-alt {
  width: 100%;
  padding: 80px;
  background: #f5f5f7;
  font-family: "Inter", sans-serif;
  border-bottom: 1px solid #e4e4e4; /* full-width border */
}
@media (max-width: 768px) {
    .cf-about-sec102-alt {
        padding: 40px 16px;   /* reduce side padding */
    }
}
.cf-about-wrap102 {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .cf-about-wrap102 {
    
	padding-bottom: 0;
  }
}
/* =========================
   TOP GRID (LOGO + TEXT)
========================= */
.cf-about-top102 {
  display: grid;
  grid-template-columns: 35% 59%;
  column-gap: 100px;
  row-gap: 10px;
}
@media (max-width: 768px) {
  .cf-about-top102 {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}

.cf-about-head102 {
  font-size: 48px;
  color: #000;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .cf-about-head102 {
/*     display: flex; */
    align-items: center;      /* vertical centering */
    justify-content: center;  /* ✅ horizontal centering */
    gap: 8px;

    text-align: center;
    width: 100%;              /* ✅ required for true centering */
    margin: 0 auto;           /* ✅ ensure center */
    font-size: 24px;
    line-height: 1.2;
  }

  /* Remove line break effect */
  .cf-about-head102 br {
    display: none;
  }
}

.cf-about-logo102 {
  display: inline-block;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .cf-about-logo102 {
    height: 22px;        /* slightly smaller for mobile */
  }
}
.cf-about-logo102 img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .cf-about-logo102 img {
    height: 29px;   /* smaller for mobile */
  }
}
.cf-about-textgroup102 {
	margin-top:30px;
  grid-column: 2;        /* ✅ both lines stay together */
  display: flex;
  flex-direction: column;
  gap: 10px;             /* ✅ controlled spacing */
}
@media (max-width: 768px) {
  .cf-about-textgroup102 {
	  margin-top: 0;
    grid-column: 1;      /* ✅ reset column behavior */
    display: flex;
	  text-align:center;
    flex-direction: column;
    gap: 8px;            /* optional smaller gap */
  }
}

.cf-about-short102 {
  margin: 0;
  font-size: 21px;
  line-height: 1.6;
  color: #555;
}
@media (max-width: 768px) {
  .cf-about-short102 {
    font-size: 18px;
  }
}


/* =========================
   BOTTOM SECTION (BG IMAGE)
========================= */
.cf-about-bottom102 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 50px;
  min-height: 500px;
  background-image: url("https://califorbs.com/wp-content/uploads/2025/12/aboutsection.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  overflow: hidden;          /* ✅ REQUIRED */
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .cf-about-bottom102 {
    flex-direction: column;      /* ✅ stack content */
    padding: 32px 20px;          /* ✅ lighter padding */
    min-height: auto;            /* ✅ remove forced height */
    border-radius: 24px;         /* ✅ smoother on mobile */
    gap: 20px;                   /* spacing between blocks */
    text-align: center;
  }
}

/* LEFT CONTENT */
.cf-about-left102 {
  width: 60%;
}

.cf-about-title102 {
  font-size: 48px;
  margin-bottom: 22px;
  line-height: 1.2;
  color: #0f172a;
}
@media (max-width: 768px) {
  .cf-about-title102 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 16px;
  }
}

.cf-about-highlight102 {
	font-family: 'Inter Tight', sans-serif !important;
	font-weight:600;
	font-size:48px;
  color: #2C73E5;
}
@media (max-width: 768px) {
  .cf-about-highlight102 {
    font-size: 24px;     /* comfortable mobile size */
    line-height: 1.25;
  }
}

.cf-about-text102 {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.6;
  color: #444;
}
@media (max-width: 768px) {
  .cf-about-text102 {
    font-size: 18px;
    line-height: 1.5;  }
}

/* RIGHT IMAGE */
.cf-about-right102 {
  width: 40%;
  text-align: right;
}

.cf-about-img102 {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  display: block;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  /* TOP GRID → SINGLE COLUMN */
  .cf-about-top102 {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 12px;
  }


  /* BOTTOM FLEX → COLUMN */
  .cf-about-bottom102 {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
    min-height: auto;
  }

  .cf-about-left102,
  .cf-about-right102 {
    width: 100%;
  }

  .cf-about-img102 {
    margin: 20px auto 0;
    width: 85%;
  }
}


/* DARK SECTION */
.cf-vision-sec103 {
border-bottom: 1px solid #e4e4e4; 
  width: 100%;
  background: #F5F5F5; /* matches screenshot dark background */
  padding: 80px;
  color: #fff;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .cf-vision-sec103 {
    padding: 0;   /* reduced vertical spacing */
  }
}

.cf-vision-wrap103 {
  width: min(92%, 1200px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 130px;
}

/* LEFT COLUMN */
.cf-vision-left103 {
  width: 50%;
  text-align: left;
}

.cf-vision-title103 {
	margin-top:0;
  font-size: 48px;
  margin-bottom: 20px;
  color: #072137;
}
@media (max-width: 768px) {
  .cf-vision-title103 {
    font-size: 24px;
    margin-bottom: 14px;
    line-height: 1.25;
  }
}

.cf-vision-text103 {
	font-weight: 400;
  font-size: 21px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cf-vision-text103 {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
  }
}

/* RIGHT COLUMN */
.cf-vision-right103 {
	margin-top:-40px;
  border-radius:12px;
  padding:40px;
  background-color:#FFFFFF;
  width: 50%;
  text-align: left;
}

.cf-values-list103 {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}
@media (max-width: 768px) {
    .cf-values-list103 {
        margin-top: 25px;   /* tighter spacing on mobile */
    }
}
.cf-values-list103 li {
  font-size: 21px;
  margin-bottom: 28px;
  color: #6B7280;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cf-values-list103 li span {
  color: #2C73E5;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;        /* ✅ prevents vertical drift */
  margin-top: 5px;      /* ✅ tiny optical correction */
  min-width: 28px;      /* ✅ keeps numbers aligned */
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .cf-vision-wrap103 {
    flex-direction: column;
	  gap: 8px;
  }
  .cf-vision-left103,
  .cf-vision-right103 {
    width: 100%;
	padding:20px;
	  margin-bottom: 30px;
  }
  .cf-values-list103 li {
	  font-size:18px;
    gap: 12px;
  }
}

/* ------------------ SECTION 4 - INFO CARDS ------------------ */
.cfbox-sec98 {
  width: 100%;
  padding: 80px;
  background: #f5f5f5;
  border-bottom: 1px solid #e4e4e4;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .cfbox-sec98 {
    padding: 32px 16px;   /* reduced side padding */
  }
}

.cfbox-container98 {
	padding:60px;
    border-radius: 12px;
  background-color:#2C73E5;
  width: min(92%, 1200px);
  margin: auto;
}
@media (max-width: 768px) {
  .cfbox-container98 {
    padding: 24px;
    width: 94%;
    border-radius: 8px;
  }
}
.cfbox-title98 {
	margin-top:0;
  text-align: center;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 60px;
  line-height: 1.15;
}

/* GRID */
.cfbox-grid98 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.cfbox-item98 {
  background: #fff;
  border-radius: 12px 12px 12px 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;   /* ✅ stack items vertically */
  align-items: flex-start;  /* ✅ left align */
  gap: 16px;
}

/* ICON CIRCLE */
/* .cfbox-iconwrap98 {
  width: 70px;
  height: 70px;
  background: #00b5e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* ICON IMAGE */
.cfbox-iconwrap98 img {
  width: 50px;
  height: 50px;
}

.cfbox-head98 {
  font-size: 21px;
  margin-bottom: 10px;
  color: #000;
}

.cfbox-para98 {
  font-size: 21px;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .cfbox-grid98 {
    grid-template-columns: 1fr;
  }

  .cfbox-item98 {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .cfbox-para98 {
	    font-size:18px;
    max-width: 90%;
    margin: auto;
  }
	.cfbox-head98 {
  font-size: 18px;

}

  .cfbox-title98 {	
    font-size: 24px;
    margin-bottom: 40px;
  }
}


/* ------------------ FAQ ------------------ */
.cf-faq-sec101 {
  padding: 80px;
  background: #F5F5F5;
}
@media (max-width: 768px) {
  .cf-faq-sec101 {
    padding: 24px 14px;
  }
}
.cf-faq-box101 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.cf-faq-title101 {
	margin-top:0;
  text-align: left;
  font-size: 48px;
  margin-bottom: 10px;
  color: #000;
}
@media (max-width: 768px) {
  .cf-faq-title101 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.cf-faq-highlight101 {
	font-family: 'Inter Tight', sans-serif !important;
	font-size: 48px;
	font-weight:600;
  color: #2C73E5; /* highlight color */
}
@media (max-width: 768px) {
  .cf-faq-highlight101 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.cf-faq-subtitle101 {
	text-align: left;
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 50px;
  color: #555;
}
@media (max-width: 768px) {
  .cf-faq-subtitle101 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 28px;
  }
}
.cf-faq-item101 {
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.cf-faq-question101 {
	font-family:'Inter Tight', sans-serif !important;
  width: 100%;
  padding: 20px 0;
  font-size: 21px;
  font-weight: 600;
  color:#2C73E5;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  text-align: left;
}
@media (max-width: 768px) {
  .cf-faq-question101 {
    font-size: 18px;
    padding: 16px 0;
    line-height: 1.4;
  }
}
.cf-faq-question101:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .3s ease;
  display: block;
}

.cf-faq-item101.active .cf-faq-question101:after {
  transform: translateY(-50%) rotate(180deg);
}

.cf-faq-answer101 {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.cf-faq-answer101 p {
  padding: 0 0 20px 0;
  font-size: 21px;
  color: #333;
}
@media (max-width: 768px) {
  .cf-faq-answer101 p {
    font-size: 18px;
    line-height: 1.55;
    padding-bottom: 16px;
  }
}
