/* GLOBAL LAYOUT SYSTEM */
:root {
  --container-width: min(90vw, 1200px);
  --brand-box-width: min(80vw, 900px);
  --header-box-width: min(75vw, 1000px);
}

body {
  background: #f5f7fa; /* light grey website background */
}

/* GLOBAL BODY FONT */
body,
p,
span,
li,
a,
label,
small {
  font-family: 'Inter', sans-serif !important;
}

section {
  position: relative;
}

section::before,
section::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: #e4e4e4;
}

section::before { left: 0; }
section::after  { right: 0; }

/* ======================================================
   HERO SECTION
====================================================== */

.hero-x91 {
  width: 100%;
  padding: 100px 0 60px;
  background: #F5F5F5;
  border-bottom: 1px solid #e4e4e4;
}

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

.hero-left-x91,
.hero-right-x91 {
  width: 50%;
}

/* IMAGE CARD */
.hero-img-card-x91 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
}

.hero-img-card-x91 img {
  width: 100%;
  height: auto;
  display: block;
}

/* TAG */
.tag-x91 {
  display: inline-block;
  padding: 8px 15px;
  background: #e6f7e9;
  color: #00a36c;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
}

/* TITLE */
.title-x91 {
  margin: 0;
  padding-top: 30px;
  font-size: 84px;
  line-height: 1.1;
  color: #000;
}

.title-x91 span {
  color: #252525;
  font-weight: 800;
}

.title-x91 strong {
  font-weight: 600;
  color: #2D73E5;
}

/* DESCRIPTION */
.desc-x91 {
  margin: 25px 0;
  font-size: 21px;
  line-height: 1.6;
  color: #333;
  max-width: 490px;
}

/* BUTTONS */
.hero-btns-x91 {
  display: flex;
  gap: 15px;
}

.btn-primary-x91,
.btn-outline-x91 {
  padding: 14px 28px;
  border-radius: 32px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.btn-primary-x91 {
  background: #2C73E5;
  color: #fff;
  border: 2px solid #2C73E5;
}

.btn-outline-x91 {
  background: #fff;
  color: #000;
  border: 2px solid #ddd;
}

/* RIGHT IMAGE */
.hero-right-x91 img {
  width: 100%;
  border-radius: 1px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ======================================================
   RESPONSIVE – ONLY 768px (SAFE)
====================================================== */

@media (max-width: 1200px) {
  .title-x91 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {

  .hero-wrap-x91 {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .hero-left-x91,
  .hero-right-x91 {
    width: 100%;
  }

  .hero-img-card-x91 {
    padding: 18px;
    border-radius: 14px;
    min-height: 380px !important;
  }

  .title-x91 {
    font-size: 32px;
    line-height: 1.2;
  }

  .desc-x91 {
    margin: 18px auto 30px;
    font-size: 18px;
    padding: 0 20px;
  }

  .hero-btns-x91 {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-primary-x91,
  .btn-outline-x91 {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-x91 {
    padding: 70px 0 20px;
  }
}

/* THIRD SECTION SEO SEARCH */
.cfx-section-shift {
  width: 100%;
  padding: 0;
  background: #F5F5F5;
  border-bottom: 1px solid #e4e4e4;
}

/* Container */
.cfx-container {
  padding: 80px;
  width: min(92%, 1200px);
  margin: auto;
  text-align: center;
}

/* HEADING */
.cfx-heading-box {
  font-family: 'Inter Tight', sans-serif !important;
  font-weight: 600;
  display: block !important;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.1;
}

/* H2 wrapper */
.cfx-heading-title {
  margin: 0;
  padding: 0;
}

/* Line styles */
.cfx-heading-line1,
.cfx-heading-line2 {
  font-family: 'Inter Tight', sans-serif !important;
  display: block;
  font-size: 48px;
  letter-spacing: -0.77px;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  padding-left: 85px;
}

.cfx-heading-line1 {
  color: #0f172a;
}

.cfx-heading-line2 {
  color: #2563eb;
  margin-top: 6px;
}

/* SUBTEXT */
.cfx-subtext {
  font-weight: 500;
  padding-left: 85px;
  font-size: 21px;
  color: #6B7280;
  margin-bottom: 10px;
  text-align: left;
}

/* STEPS */
.cfx-steps {
  margin: 0 0 50px;
  font-weight: 400;
  font-size: 21px;
  color: #6B7280;
  padding-left: 85px;
  text-align: left;
  line-height: 1.2;
}

/* CARDS */
.cfx-cards {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.cfx-card {
  width: 50%;
  margin-bottom: 30px;
  text-align: left;
  background: #f8fafc;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.cfx-card h3 {
  font-size: 21px;
  color: #072137;
  margin-bottom: 25px;
  line-height: 1.4;
}

.cfx-card a {
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 21px;
  color: #2C73E5;
  font-weight: 600;
  text-decoration: none;
}

/* IMAGE */
.cfx-card-imgwrap img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  margin-top: 20px;
}

/* ======================================================
   RESPONSIVE – ONLY 768px (CLEAN & SAFE)
====================================================== */

@media (max-width: 768px) {

  .cfx-section-shift {
    padding-top: 40px;
  }

  .cfx-container {
    padding: 0 0 20px;
    width: 92%;
    text-align: left;
  }

  .cfx-heading-line1,
  .cfx-heading-line2 {
    text-align: center;
    padding-left: 0;
    font-size: 24px;
  }

  .cfx-subtext,
  .cfx-steps {
    text-align: center;
    padding-left: 0;
    font-size: 18px;
  }

  .cfx-cards {
    flex-direction: column;
  }

  .cfx-card {
    width: 100%;
  }

  .cfx-card h3 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .cfx-card a {
    font-size: 18px;
  }
}


/* SEO INFO SECTION */
.seo-info-sec {
  border-bottom: 1px solid #e4e4e4;
  width: 100%;
  padding: 80px;
  background: #f5f5f5; /* adjust if needed */
}

.seo-info-container {
  width: min(92%, 1200px);
  margin: auto;
  text-align: center;
}

.seo-info-text {
  margin-top: 0;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.77px;
  color: #0f172a;
  margin-bottom: 10px;
}

.seo-info-link {
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 46px;
  line-height: 0.7;
  font-weight: 600;
  color: #2C73E5;
  text-decoration: none;
}

.seo-info-link:hover {
  text-decoration: none;
}

/* =========================
   RESPONSIVE – 768px ONLY
   (VALUES UNCHANGED)
========================= */
@media (max-width: 768px) {

  .seo-info-text {
    font-size: 24px;
    margin: 0;
  }

  .seo-info-link {
    font-size: 24px;
    line-height: 1;
  }

  .seo-info-sec {
    padding: 40px 0 40px;
  }
}

/* CAALIFORBS PHILOSOPHY */
/* ==============================
   PHILOSOPHY SECTION
============================== */

.cfx-philosophy-sec {
  width: 100%;
  background-color: #F5F5F5;
  padding: 80px;
}

@media (max-width: 768px) {
  .cfx-philosophy-sec {
    padding: 28px 0;
  }
}

/* MAIN BOX */
.cfx-philosophy-box {
  width: min(92%, 1200px);
  margin: 0 auto;
  background-image: url("https://califorbs.com/wp-content/uploads/2025/12/grid-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  padding-bottom: 0;
  border-radius: 30px;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
}

/* TITLE */
.cfx-ph-title {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 48px;
  line-height: 1.15;
  color: #072137;
}

.cfx-ph-title span {
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif !important;
  color: #2C73E5;
}

/* SUBTEXT */
.cfx-ph-subtext {
  font-size: 21px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cfx-ph-subtext strong {
  font-size: 21px;
  font-weight: 600;
  color: #6B7280;
}

/* GRID */
.cfx-ph-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-bottom: 60px;
}

/* CARD */
.cfx-ph-card {
  width: 100%;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 2px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  text-align: left;
}

.cfx-ph-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: #072137;
}

.cfx-ph-card p {
  font-size: 21px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
}

/* ==============================
   RESPONSIVE – 768px ONLY
   (VALUES UNCHANGED)
============================== */

@media (max-width: 768px) {

  .cfx-ph-title {
    font-size: 24px;
  }

  .cfx-ph-title span {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
  }

  .cfx-ph-subtext {
    font-size: 15px;
  }

  .cfx-ph-subtext strong {
    font-size: 15px;
  }

  /* cards full width on mobile */
  .cfx-ph-card {
    max-width: 100%;
  }

  .cfx-ph-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .cfx-ph-card p {
    font-size: 18px;
  }

  .cfx-philosophy-box {
    padding: 40px 20px 0;
  }
}

/* NEW CONTENT SECTION */
.cfx-smallteam-sec {
  width: 100%;
  padding: 80px;
  background: #f5f5f5;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.cfx-smallteam-container {
  width: min(92%, 1050px);
  margin: auto;
  text-align: left;
}

.cfx-smallteam-text {
  font-size: 46px;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 25px;
  margin-top: 0;

}

.cfx-blue-link {
  font-family: 'Inter Tight', sans-serif !important;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.cfx-blue-link:hover {
  text-decoration: underline;
}

.cfx-inline-logo {
  height: 40px;
  vertical-align: middle;
  margin: 0 0;
  top: 3;
}

/* =========================
   RESPONSIVE – 768px ONLY
   (VALUES UNCHANGED)
========================= */
@media (max-width: 768px) {

  .cfx-smallteam-sec {
    padding: 28px 0;
  }

  .cfx-smallteam-text {
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
  }

  .cfx-inline-logo {
    height: 25px;
  }
}


/* BRAND SECTION */
.brand-showcase-sec {
  width: 100%;
  padding: 50px 0;
  background: #f5f5f5;
  /* border-top: 1px solid #e4e4e4; */
  border-bottom: 1px solid #e4e4e4;
}

/* Desktop layout */
.brand-showcase-container {
  width: min(92%, 1050px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.brand-left-text {
  width: 25%;
}

.brand-left-text p {
  font-size: 18px;
  line-height: 1.45;
  color: #6B7280;
  font-weight: 500;
  margin: 0;
}

.brand-slider {
  overflow: hidden;
  width: 75%;
}

.brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-item img {
  height: 30px;
  width: 70%;
  opacity: 0.95;
  transition: .3s;
}

.brand-item img:hover {
  opacity: 1;
  transform: scale(1.04);
}

/* MOBILE + TABLET */
@media (max-width: 992px) {

  .brand-showcase-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .brand-left-text,
  .brand-slider {
    width: 100%;
  }

  .brand-item img {
    height: 40px;
  }
}


/* CASE STUDIES */
.sec-shift-x91 {
  width: 100%;
  padding: 80px;
  background: #f5f5f5;
  border-bottom: 1px solid #e4e4e4;
}

.wrap-shift-x91 {
  width: min(92%, 1200px);
  margin: auto;
  text-align: left;
}

/* HEADING */
.title-wrap-x91 {
  margin-bottom: 25px;
}

.title-line1-x91,
.title-line2-x91 {
  font-size: 48px;
  line-height: 1.15;
  padding-left: 85px;
  text-align: left;
}

.title-line1-x91 {
  color: #0f172a;
  margin: 0;
}

.title-line2-x91 {
  color: #2563eb;
  margin: 0;
}

/* SUBTEXT */
.desc-sub-x91 {
  font-weight: 400;
  padding-left: 85px;
  font-size: 21px;
  color: #6B7280;
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: left;
}

/* STEPS */
.steps-x91 {
  font-weight: 400;
  padding-left: 85px;
  font-size: 21px;
  margin: 0 0 50px;
  color: #6B7280;
  text-align: left;
}

/* GRID */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.case-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}

.case-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.case-content {
  padding: 22px 24px 26px;
}

.case-content,
.case-content * {
  text-decoration: none !important;
  color: #1a1a1a;
}

a.case-card,
a.case-card:hover,
a.case-card *,
a.case-card p,
a.case-card strong {
  text-decoration: none !important;
}

/* TEXT */
.case-logo {
  margin-top: 10px;
  height: 26px;
}

.case-results {
  color: #072137;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 4px;
}

.case-duration {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #6B7280;
}

.case-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* BUTTON */
.case-btn-wrap {
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.case-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 32px;
  background: #2C73E5;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* .case-btn:hover {
  background: #222;
} */

/* =========================
   RESPONSIVE – 768px ONLY
   (VALUES UNCHANGED)
========================= */
@media (max-width: 768px) {

  .sec-shift-x91 {
    padding: 32px 16px;
  }

  .wrap-shift-x91 {
    padding-top: 0;
    text-align: center;
  }

  .title-line1-x91,
  .title-line2-x91,
  .desc-sub-x91,
  .steps-x91 {
    text-align: center !important;
    padding-left: 0 !important;
  }

  .title-line1-x91,
  .title-line2-x91 {
    font-size: 24px !important;
    line-height: 1.15;
    font-family: 'Inter Tight', sans-serif !important;
  }

  .desc-sub-x91,
  .steps-x91 {
    font-size: 18px;
    line-height: 1.5;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-image img {
    height: 220px;
  }

  a.case-card *,
  a.case-card p,
  a.case-card strong {
    font-size: 18px;
  }

  .case-btn {
    width: 100%;
    text-align: center;
  }
}

/* NEW CARD SECTION */

.services-x91-sec {
  width: 100%;
  padding: 80px 0;              /* no side padding */
  background: #f5f5f5;
}

.services-x91-container {
  width: min(92%, 1200px);
  margin: auto;
  text-align: center;
}

/* TITLE */
.services-x91-title {
  margin-top: 0;
  font-size: 48px;
  line-height: 1.2;
  color: #072137;
  margin-bottom: 10px;
}

.services-x91-title span {
  color: #2C73E5;
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 48px;
}

/* SUBTEXT */
.services-x91-subtext {
  font-size: 21px;
  color: #6B7280;
  margin-bottom: 45px;
  line-height: 1.6;
}

/* GRID */
.services-x91-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* CARD */
.services-x91-card {
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  text-align: left;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* FULL CARD LINK */
.services-x91-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-indent: -9999px;
}

/* KEEP CONTENT ABOVE LINK */
.services-x91-card > *:not(.services-x91-card-link) {
  position: relative;
  z-index: 3;
}

/* ICON */
.services-x91-icon {
  width: 40px;
  margin-bottom: 18px;
  transition: transform 0.35s ease;
}

/* CARD TITLE */
.services-x91-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: #072137;
  margin-bottom: 8px;
}

/* CARD TEXT */
.services-x91-card p {
  font-size: 21px;
  line-height: 1.5;
  color: #6B7280;
}

/* =========================
   RESPONSIVE – 768px ONLY
   (VALUES UNCHANGED)
========================= */
@media (max-width: 768px) {

  .services-x91-sec {
    padding: 40px 16px;
  }

  .services-x91-title,
  .services-x91-title span {
    font-size: 24px;
    line-height: 1.15;
  }

  .services-x91-subtext {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .services-x91-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .services-x91-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .services-x91-card p {
    font-size: 18px;
    line-height: 1.6;
  }

  .services-x91-card:active {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }
}
/* DESIGNS SECTION */
.serv-sec-x91 {
  width: 100%;
  padding: 80px;
  background: #f5f5f5;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.serv-wrap-x91 {
  width: min(92%, 1200px);
  margin: auto;
  text-align: center;
}

/* TITLE */
.serv-title-x91 {
  margin-top: 0;
  font-size: 48px;
  line-height: 1.1;
  color: #2C73E5;
  margin-bottom: 0;
  text-align: center;
}

.serv-title-x91 span {
  font-family: 'Inter Tight', sans-serif !important;
  font-weight: 600;
  font-size: 48px;
  color: #072137;
}

/* SUBTEXT */
.serv-subtext-x91 {
  align-content: center;
  text-align: center;
  font-size: 21px;
  color: #6B7280;
  margin-bottom: 45px;
  line-height: 1.6;
}

.serv-x91-btn-wrap {
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.serv-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 32px;
  background: #2C73E5;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* ===============================
   DESIGNS SWIPER – BASE
================================ */
.designsSwiper {
  width: 100%;
}

.designsSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ===============================
   DESKTOP (GRID – NO SLIDER)
================================ */
@media (min-width: 992px) {

  .designsSwiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    transform: none !important;
  }

  .designsSwiper .swiper-slide {
    width: 100% !important;
  }

  .designsSwiper .swiper-pagination,
  .designsSwiper .swiper-button-next,
  .designsSwiper .swiper-button-prev {
    display: none !important;
  }

  .designsSwiper .swiper-slide img {
    transition: transform 0.3s ease;
    cursor: zoom-in;
  }

  .designsSwiper .swiper-slide:hover img {
    transform: scale(1.08);
  }
}

/* ===============================
   RESPONSIVE – 768px ONLY
   (VALUES UNCHANGED)
================================ */
@media (max-width: 768px) {

  .serv-sec-x91 {
    padding: 40px 20px;
  }

  .serv-title-x91 {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .serv-title-x91 span {
    font-size: 24px;
    line-height: 1.3;
  }

  .serv-subtext-x91 {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  /* FIX SWIPER PADDING ON MOBILE */
  .serv-slider-bg-x91 .swiper {
    padding: 0 !important;
    overflow: hidden;
  }

  .serv-slider-bg-x91 .swiper-wrapper {
    display: flex !important;
  }

  .serv-slider-bg-x91 .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
  }
}


/* SECTION WRAPPER */
.seo-ai-section-x91 {
  width: 100%;
  padding: 80px;
  background: #F5F5F5;
}

@media (max-width: 575px) {
  .seo-ai-section-x91 {
    padding: 20px 14px;
  }
}

/* MAIN CONTAINER */
.seo-ai-container-x91 {
  width: min(92%, 1100px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.seo-ai-left-x91 h2 {
  font-size: 48px;
  color: #072137;
  line-height: 1.25;
  margin-bottom: 22px;
}

.seo-ai-left-x91 strong {
  font-weight: 600;
  color: #2C73E5;
  font-size: 48px;
  line-height: 1.05;
  display: inline-block;
}

.seo-ai-left-x91 p {
  color: #6B7280;
  font-size: 21px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.seo-ai-btn-x91 {
  display: inline-block;
  padding: 14px 32px 14px 32px;
  background: #2C73E5;
  color: #fff;
  border-radius: 32px 32px 32px 32px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

/* .seo-ai-btn-x91:hover {
  background: #1e50c7;
} */

/* RIGHT SIDE GRID */
.seo-ai-right-x91 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 40px;
}

.seo-ai-item-x91 h4 {
  font-size: 21px;
  color: #000;
  font-weight: 600;
  margin-bottom: 7px;
}

.seo-ai-item-x91 p {
  font-size: 21px;
  color: #072137;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE – 992px
========================= */
@media (max-width: 992px) {
  .seo-ai-container-x91 {
    flex-direction: column;
    gap: 40px;
  }
}

/* =========================
   RESPONSIVE – 768px
   (VALUES UNCHANGED)
========================= */
@media (max-width: 768px) {

  .seo-ai-left-x91 strong {
    font-size: 24px;
    line-height: 1.1;
  }

  .seo-ai-right-x91 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .seo-ai-left-x91 h2 {
    font-size: 28px;
    line-height: 1.15;
    text-align: center;
  }
}

/* =========================
   RESPONSIVE – 600px (VALUES UNCHANGED)
========================= */
@media (max-width: 600px) {

  .seo-ai-left-x91 {
    text-align: center;
  }

  .seo-ai-left-x91 p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 22px;
    padding: 0 10px;
    text-align: center;
  }

  .seo-ai-btn-x91 {
    font-size: 14px;
    padding: 14px 26px;
    border-radius: 10px;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
  }
}

/* HOW WE WORK SECTION */
.container-1200 {
  margin: 0 auto;
}

.how-work-bg-x91 {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  width: 100%;
  background: #F5F5F5;
  padding: 80px;
}

.how-work-sec-x91 {
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 60px 40px;
  background: #2C73E5;
  color: #fff;
  text-align: center;
  border-radius: 12px;
}

.how-work-sec-x91 h2 {
  margin: 0 0 10px;
  font-size: 48px;
}

.how-sub-x91 {
  color: #ffffff;
  font-size: 21px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* TIMELINE */
/* .timeline-x91 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.timeline-x91::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: calc(100% - 250px);
  height: 2px;
  background: #ffffff;
  opacity: 0.8;
}


.step-x91 {
  width: 25%;
  text-align: left;
  position: relative;
}

.dot-x91 {
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  display: block;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
} */

/* Timeline wrapper */
.timeline-x91 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Horizontal line */
.timeline-x91::before {
  content: "";
  position: absolute;
  top: 7px;                /* dot center */
  left: 7px;               /* start at first dot center */
  right: calc(25% - 45px);  /* stop at last dot center */
  height: 2px;
  background: #ffffff;
  opacity: 0.8;
}

/* Step */
.step-x91 {
  position: relative;
  text-align: left;     /* 🔥 force left align */
}

/* Dot */
.dot-x91 {
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 2;
}






.step-x91 h4 {
  margin-top: 20px;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-x91 p {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
}

/* =========================
   RESPONSIVE – 768px
   (VALUES UNCHANGED)
========================= */
@media (max-width: 768px) {

  .how-work-bg-x91 {
    padding: 40px 12px;
  }

  .how-work-sec-x91 {
    padding: 40px 20px;
    border-radius: 6px;
  }

  .step-x91 p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 1;
  }

  .timeline-x91 {
    margin-top: 50px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 32px;
  }

  .timeline-x91::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 7px;
    height: calc(100% - 180px);
    width: 2px;
    background: #ffffff;
    opacity: 0.8;
  }

  .step-x91 {
    width: 100%;
    text-align: left;
    position: relative;
    padding-left: 20px;
  }

  .dot-x91 {
    position: absolute;
    left: -24px;
    top: 0;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 3;
  }
}

/* =========================
   RESPONSIVE – 575px
   (VALUES UNCHANGED)
========================= */
@media (max-width: 575px) {

  .how-work-sec-x91 h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .how-sub-x91 {
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: center;
  }
}

/* ABOUT SECTION – CALIFORBS */
.about-section {
  padding-top: 50px;
  padding-bottom: 0;
  background: #ffffff;
}

.container {
  width: min(92%, 1050px);
  margin: 0 auto;
}

/* TITLE */
.about-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* TEXT */
.about-columns p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* GRID */
.about-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* IMAGE */
.about-image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CENTER LOGO */
.about-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-logo-overlay img {
  width: 85px;
}

/* =========================
   RESPONSIVE – 768px ONLY
   (VALUES UNCHANGED)
========================= */
@media (max-width: 768px) {

  .about-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-title {
    font-size: 28px;
    text-align: center;
  }

  .about-logo-overlay img {
    width: 65px;
  }
}

/* ===============================
   BLOG SECTION
=============================== */
.blog-sec-x91 {
  width: 100%;
  padding: 80px;
  background: #F5F5F5;
}

@media (max-width: 768px) {
  .blog-sec-x91 {
    padding: 20px 0 30px;
  }
}

/* WRAPPER */
.blog-wrap-x91 {
  width: min(92%, 1200px);
  margin: auto;
  text-align: left;
}

/* ===============================
   HEADING
=============================== */
.blog-headwrap-x91 {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .blog-headwrap-x91 {
    margin-bottom: 18px;
    text-align: center;
    padding: 0 10px;
  }
}

.blog-title-x91,
.blog-subtitle-x91 {
  font-size: 48px;
  line-height: 1.15;
  padding-left: 85px;
  text-align: left;
  margin: 0;
}

.blog-title-x91 { color: #0f172a; }
.blog-subtitle-x91 { color: #2563eb; }

/* ===============================
   SUBTEXT
=============================== */
.blog-desc-x91 {
  padding-left: 85px;
  font-size: 21px;
  font-weight: 400;
  color: #6B7280;
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: left;
}

.blog-steps-x91 {
  margin: 0;
  padding-left: 85px;
  font-size: 21px;
  font-weight: 400;
  color: #6B7280;
  margin-bottom: 50px;
  text-align: left;
}

/* ===============================
   MOBILE HEADING FIX
=============================== */
@media (max-width: 768px) {
  .blog-wrap-x91 {
    padding: 0;
    text-align: center;
  }

  .blog-title-x91,
  .blog-subtitle-x91,
  .blog-desc-x91,
  .blog-steps-x91 {
    text-align: center !important;
    padding-left: 0 !important;
  }

  .blog-title-x91,
  .blog-subtitle-x91 {
    font-size: 24px !important;
  }

  .blog-desc-x91,
  .blog-steps-x91 {
    font-size: 18px;
    line-height: 1.5;
  }
}

/* ===============================
   BUTTON
=============================== */
.blog-x91-btn-wrap {
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.blog-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 32px;
  background: #2C73E5;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* ===============================
   GRID
=============================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
}

.blog-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  display: block;
}

.blog-content {
  padding: 18px 22px 24px;
}

/* TEXT */
.blog-post-title a {
  font-size: 21px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.blog-post-title a:hover {
  color: #2C73E5;
}

.blog-excerpt {
  font-size: 21px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}

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

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-image img {
    height: 210px;
  }

  .blog-post-title a {
    font-size: 18px;
  }

  .blog-excerpt {
    font-size: 18px;
  }

  .blog-header {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
}

/* ===============================
   INSIGHTS SECTION
================================== */

.insights-sec-x91 {
  padding: 80px;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .insights-sec-x91 {
    padding: 40px 16px;
  }
}

.container-x91 {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Headings */
.insights-title-x91 {
  padding-left: 85px;
  margin-top: 0;
  font-size: 48px;
  line-height: 1.15;
  text-align: left;
}

.insights-title-x91 span {
  color: #2D73E5;
  font-family: 'Inter Tight', sans-serif !important;
  display: block;
  font-weight: 600;
}

/* Subtitle */
.insights-subtitle-x91 {
  padding-left: 85px;
  font-size: 21px;
  line-height: 1.65;
  margin-bottom: 55px;
  text-align: left;
  color: #6B7280;
  font-weight: 400;
}

.insights-subtitle-x91 strong {
  font-weight: 400;
  color: #6B7280;
}

.insights-flow-x91 {
  display: inline-block;
  margin-top: 10px;
  font-size: 21px;
  font-weight: 400;
  color: #6B7280;
}

/* Mobile text */
@media (max-width: 768px) {
  .insights-title-x91 {
    font-size: 24px;
    line-height: 1.15;
    text-align: center;
    padding: 0;
  }

  .insights-subtitle-x91 {
    padding-left: 0;
    text-align: center;
    font-size: 18px;
    margin-bottom: 35px;
  }

  .insights-flow-x91 {
    font-size: 18px;
  }
}

/* ===============================
   SLIDER WRAPPER
================================== */

.serv-slider-bg-x91 {
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 0;
  background: #2C73E5;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .serv-slider-bg-x91 {
    padding: 24px 0;
    margin-top: 20px;
    border-radius: 18px 18px 0 0;
  }
}

/* ===============================
   SWIPER CORE
================================== */

.serv-slider-bg-x91 .swiper {
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
  list-style: none;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  display: flex;
  height: auto;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

/* ===============================
   TESTIMONIAL CARD
================================== */

.testimonial-card-x91 {
  width: 100%;
  padding: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Avatar */
.avatar-x91 {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d1d5db;
  margin-bottom: 18px;
  overflow: hidden;
}

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

/* Text */
.testimonial-text-x91 {
  font-size: 21px;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 18px;
  font-weight: 400;
}

@media (max-width: 575px) {
  .testimonial-text-x91 {
    font-size: 18px;
  }
}

.test-name-x91 {
  font-size: 21px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.test-role-x91 {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}

/* ===============================
   PAGINATION
================================== */

.testimonialSwiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 45px;
}

.testimonial-pagination {
  margin: 30px 0;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #bfc4ce;
  opacity: 1;
  transition: 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #2563eb;
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .testimonialSwiper {
    padding-bottom: 38px;
  }

  .swiper-pagination {
    margin-top: 10px;
    padding-bottom: 10px;
  }
}

/* ===============================
   LEGACY HIDE
================================== */

.testimonials-wrap-x91 {
  display: none !important;
}


/* ============================
   PRICING SECTION
============================ */
.cf-pricing-section {
  background: #F5F5F5;
  padding: 80px ;
  text-align: center;
	
}
.cf-pricing-section *:first-child {
    margin-top: 0 !important;
}

.cf-pricing-container {
	padding: 60px 60px 60px 60px;
   background: #072137;
  width: min(92%, 1200px);
  margin: 0 auto;
	border-radius:8px;
}
@media (max-width: 768px) {
  .cf-pricing-container {
    padding: 32px 20px;   /* reduce heavy padding */
    border-radius: 6px;
	margin-bottom: 30px;
  }
}

.cf-pricing-title {
  font-size: 48px;
  margin-bottom: 8px;
  color: #ffffff;
}
.swiper-slide {
  display: flex !important;
  align-items: stretch !important; /* match height */
}

.testimonial-card-x91 {
  height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cf-pricing-subtitle {
  color: #ffffff;
  font-size: 21px;
  margin-bottom: 45px;
}
@media (max-width: 768px) {
    .cf-pricing-subtitle {
       margin-top:10px;
        line-height: 1.15;
        text-align: center; /* optional — delete if not needed */
    }
}
/* Swiper base */
.cfPricingSwiper {
  overflow: visible; /* so shadow of cards is visible */
}

/* Make swiper slides auto height and flex */
.cfPricingSwiper .swiper-wrapper {
  align-items: stretch;
}

.cfPricingSwiper .swiper-slide {
  height: auto;
  display: flex;
}

/* CARD */
.cf-price-card {
  background: #ffffff;
  border-radius: 5px;
  padding: 26px 30px 32px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cf-price-plan {
  font-size: 18px;
  font-weight: 500;
  color: #2C73E5;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cf-price-amount {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.cf-price-period {
  font-size: 21px;
  color: #444;
  margin: 4px 0 14px;
}

.cf-price-divider {
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  margin-bottom: 18px;
}

.cf-price-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 26px;
  font-size: 21px;
  line-height: 1.6;
  color: #555;
}
@media (max-width: 768px) {
  .cf-price-list {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

.cf-price-list li::before {
  content: "✓";
  margin-right: 6px;
  color: #000 !important; /* black */
  font-weight: 700;
}


/* Button */
.cf-price-btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(90deg,#2C73E5,#2C73E5);
/*   box-shadow: 0 8px 20px rgba(0,185,232,0.35); */
  text-align: center;
}

/* .cf-price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,185,232,0.45);
} */

/* PAGINATION (dots) – MOBILE ONLY */
.cf-pricing-pagination {
  margin-top: 24px;
}

/* hide dots on desktop */
@media (min-width: 768px) {
  .cf-pricing-pagination {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .cf-pricing-section {
    padding: 20px;
  }

  .cf-pricing-title {
    font-size: 24px;
  }

  .cf-price-card {
    padding: 24px 22px 28px;
  }
}


/* FAQ SECTION */
.hp-faq-sec {
	border-top: 1px solid #e4e4e4;
  padding: 80px;
  background: #F5F5F5;
}

@media (max-width: 768px) {
  .hp-faq-sec {
	margin-bottom: 50px;
    padding: 24px 14px;
  }
}

/* CONTAINER */
.hp-faq-box {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.hp-faq-title {
  margin-top: 0;
  text-align: left;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

@media (max-width: 768px) {
  .hp-faq-title {
    font-size: 24px;
    line-height: 1.5;
  }
}

/* HIGHLIGHT */
.hp-faq-highlight {
	font-family: 'Inter Tight', sans-serif !important;
  font-size: 48px;
  font-weight: 600;
  color: #2C73E5;
}

@media (max-width: 768px) {
  .hp-faq-highlight {
    font-size: 24px;
    line-height: 1.2;
  }
}

/* SUBTITLE */
.hp-faq-subtitle {
  text-align: left;
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 50px;
  color: #555;
}

@media (max-width: 768px) {
  .hp-faq-subtitle {
    font-size: 18px;
    margin-bottom: 28px;
  }
}
.swiper-pagination {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;

}

.swiper-pagination-bullet {
  background: #072137 !important;
  opacity: 0.888;
}

.swiper-pagination-bullet-active {
  background: #2C73E5 !important;
  opacity: 1;
}


/* FAQ ITEM */
.hp-faq-item {
  border-bottom: 1px solid #ddd;
  text-align: left;
}

/* QUESTION */
.hp-faq-question {
  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) {
  .hp-faq-question {
    font-size: 18px;
    padding: 16px 0;
    line-height: 1.4;
  }
}

/* ICON */
.hp-faq-question: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-repeat: no-repeat;
  background-size: contain;
  transition: transform .3s ease;
}

.hp-faq-item.active .hp-faq-question:after {
  transform: translateY(-50%) rotate(180deg);
}

/* ANSWER */
.hp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.hp-faq-answer p {
  padding-bottom: 20px;
  font-size: 21px;
  color: #333;
}

@media (max-width: 768px) {
  .hp-faq-answer p {
    font-size: 18px;
    line-height: 1.55;
    padding-bottom: 16px;
  }
}



