* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif !important;
  color: #2c3e50;
  line-height: 1.6;
}

/* Color palette inspired by beminimalist.co */
:root {
  --primary: #7b18ff;
  --primary-dark: #ff7a5c;
  --secondary: #ff0047;
  --third-color: #f77f72;
  --text-dark: #010101;
  --text-light: #666;
  --bg-light: #fafafa;
  --white: #ffffff;
}

header {
  background: linear-gradient(90deg, #26025b 0%, #9a1cba 100%);
  top: 0;
  z-index: 100;
}

#navbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 50px !important;
  padding-right: 20px !important;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.cta-button {
  background: var(--primary);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 155, 130, 0.3);
}

/* .section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
} */

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  transition: all 0.3s;
  border: 1px solid #f0f0f0;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card p {
  color: var(--text-light);
  line-height: 1.7;
  text-align: justify;
}

.departments {
  background: #ffffff;
}

.industries {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.agentforce-section {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--secondary) 100%);
  padding: 5rem 5%;
  text-align: center;
}

.agentforce-content {
  /* max-width: 1000px; */
  margin: 0 auto;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
}

.benefit-card h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 5%;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding: 3rem 5%;
  }
}

/* Header Section CSS  */

.cl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
  position: relative;
  z-index: 1000;
  background: transparent;
}

/* Logo */
.cl-logo {
  display: flex;
  align-items: center;
}

.cl-logo img {
  width: 154px;
  max-height: 42px;
}

/* Hamburger */
.cl-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.cl-menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  display: block;
}

/* Nav links (desktop) */
.cl-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cl-nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* ===============================
       MOBILE NAV
    =============================== */
@media (max-width: 768px) {
  .cl-menu-toggle {
    display: flex;
  }

  .cl-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 5%;

    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;

    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  }

  .cl-nav-links.cl-nav-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .cl-nav-links li {
    text-align: left;
  }

  .cl-nav-links a {
    display: block;
    width: 100%;
    color: #000;
  }
}
/* Laptop responsiveness only */


@media (min-width: 1500px) {
  .cl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
    background: transparent;
  }
}

/* Hero Section CSSS */

.af-hero-section {
  position: relative;
  background-image: url("../imgs/finalbg.png");
  height: 100%;
  /* CHANGE IMAGE PATH */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  /*align-items: center;*/
  padding: 30px 0;
  color: #ffffff;
}
@media (min-width: 1030px) and (max-width: 1600px) {
  /* write only laptop responsive css here */
  .af-hero-section {
    position: relative;
    background-image: url(../imgs/Group-4.png);
    height: 110vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    /* align-items: center; */
    padding: 60px 0;
    color: #ffffff;
}
}
/* ============================
       CONTENT
    ============================ */

.af-hero-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.af-hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2625b3;
  text-align: justify;
  margin-bottom: 0px;
}

.af-hero-text b {
  color: var(--third-color);
}

/* ============================
       BUTTONS
    ============================ */
.af-hero-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.af-hero-btn-primary {
  padding: 14px 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 52, 95, 0.9),
    rgba(171, 96, 255, 0.85),
    rgba(255, 186, 251, 0.9)
  );

  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 15px;
}

.af-bg-gradient {
  background: linear-gradient(135deg, #ff345f 0%, #ab60ff 50%, #ffbafb 100%);
}

.af-hero-btn-primary:hover {
  background-color: #e8684e;
}

.af-gradient-text {
  background: linear-gradient(90deg, #7b18ff 0%, #ff0047 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.af-hero-btn-secondary {
  padding: 14px 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 52, 95, 0.9),
    rgba(171, 96, 255, 0.85),
    rgba(255, 186, 251, 0.9)
  );

  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.af-hero-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.af-soft-page-gradient {
  background: linear-gradient(
    180deg,
    #ffeded 0%,
    #ffffff 45%,
    #ffffff 65%,
    rgba(203, 172, 255, 0.35) 100%
  );
  position: relative;
  padding: 30px 0px;
}

.af-primary {
  color: var(--primary);
}

.af-secondary {
  color: var(--secondary);
}
.af-cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}
.af-cta-form textarea:focus {
  outline: none;
  border-color: #7c3aed;
}
.af-demo {
  margin-bottom: 20px;
}
/* ============================
       RESPONSIVE
    ============================ */



@media (max-width: 768px) {
  .af-hero-section {
    text-align: center;
  }
.af-cta-section {
  padding: 50px 0px;
  background: linear-gradient(
    180deg,
    #ffeded 0%,
    #ffffff 45%,
    #ffffff 65%,
    rgba(203, 172, 255, 0.35) 100%
  );
}
  .af-hero-content {
    margin: 0 auto;
  }

  .af-hero-btn-group {
    justify-content: center;
  }
}

.af-3d-btn {
  background: #ffffff;
  color: #000000;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;

  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid #ffffff;

  /* 3D outer shadow */
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.15),
    0 4px 10px rgba(171, 96, 255, 0.35);

  /* Inner soft gradient shadow */
  position: relative;
  transition: all 0.3s ease;
}

.af-3d-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow:
    inset 0 2px 6px rgba(255, 52, 95, 0.25),
    inset 0 -3px 8px rgba(171, 96, 255, 0.25);
  pointer-events: none;
}

/* Hover – lift */
.af-3d-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 8px 20px rgba(255, 52, 95, 0.35);
}

/* Active – press */
.af-3d-btn:active {
  transform: translateY(0);
  box-shadow:
    inset 0 6px 12px rgba(0, 0, 0, 0.15),
    inset 0 -4px 8px rgba(171, 96, 255, 0.35);
}

@media (max-width: 768px) {
  #navbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }


  .af-hero-title,
  .af-hero-text {
    color: #1f2937;
  }
}
@media (max-width: 550px) {
  #navbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  

  .af-hero-title,
  .af-hero-text {
    color: #1f2937;
  }
}

/* Why Agentforce Section */
.fa-icon {
  color: var(--primary);
}

/* Why codleo delivers */
.list-group-item {
  background: transparent;
}
.fa-icon {
  color: var(--primary);
}

.af-dark {
  color: #000000 !important;
}

.strip {
  background-color: #8317f5;
  width: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 10px;
}


/* This is section for use cases section */
/* ===============================
       SECTION WRAPPER
    =============================== */
.af-usecases-section {
  padding: 30px 0px;
  background: linear-gradient(
    180deg,
    #ffeded 0%,
    #ffffff 45%,
    #ffffff 65%,
    rgba(203, 172, 255, 0.35) 100%
  );
}

.af-usecases-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
       HEADER
    =============================== */
.af-usecases-header {
  text-align: center;
  margin: 0 auto 4rem;
}

.af-usecases-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.af-usecases-subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.7;
}

/* ===============================
       GRID (kept for legacy, not used now)
    =============================== */
.af-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ===============================
       CARD
    =============================== */
.af-usecase-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s ease;
  height: 410px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.af-usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.af-usecase-card > h3,
.af-usecase-card > ul {
  padding: 1rem 2rem 0;
  color: #000;
}

.af-usecase-card > ul {
  padding-bottom: 1.5rem;
}

.af-usecase-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.af-usecase-list {
  padding-left: 1.1rem;
  margin-bottom: 1.5rem;
}

.af-usecase-list li {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.af-usecase-outcome {
  margin-top: auto;
  padding: 1.2rem 2rem;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  background: linear-gradient(90deg, #26025b 0%, #9a1cba 100%);
  color: #ffffff;
  border-top: 1px solid rgba(123, 24, 255, 0.15);
}

.swiper-pagination-bullet-active {
  color: #7b18ff;
  background-color: #7b18ff;
}

.indigo {
  background: linear-gradient(180deg, #26025b 0%, #9a1cba 100%);
}
/* Create space below cards */
.af-usecases-slider {
  padding-bottom: 50px;
}

/* Move dots to the bottom */
.af-usecases-slider .swiper-pagination {
  bottom: 10px !important;
}

/* This is fifth seciton for industies */

.af-mini-industry-section {
  padding: 30px 0px;
  background: linear-gradient(
    180deg,
    #ffeded 0%,
    #ffffff 55%,
    rgba(203, 172, 255, 0.25) 100%
  );
}

.af-mini-container {
  max-width: 1200px;
  margin: 0 auto;
}

.af-mini-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.af-mini-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.8rem;
}

.af-mini-subtitle {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

.af-mini-swiper {
  padding-bottom: 3rem;
}

.af-mini-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  text-align: center;
  height: 290px;
}

/* 3D Card Style */
.af-3d-slider {
  position: relative;

  transition: all 0.3s ease;
}

.af-3d-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow:
    inset 0 2px 6px rgba(255, 52, 95, 0.25),
    inset 0 -3px 8px rgba(171, 96, 255, 0.25);
  pointer-events: none;
}

.af-mini-card h6 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.af-mini-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .af-mini-title {
    font-size: 1.9rem;
  }
  .af-cta-section {
  padding: 50px 0px;
  background: linear-gradient(
    180deg,
    #ffeded 0%,
    #ffffff 45%,
    #ffffff 65%,
    rgba(203, 172, 255, 0.35) 100%
  );
}
}

/* this is 6th section framework section */
/* ===============================
       SECTION
    =============================== */
.af-framework-section {
  position: relative;
  padding: 30px 0px;
  background: url("../img/secondarybg.png");
  /* 🔁 CHANGE IMAGE */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* ===============================
       HEADER
    =============================== */
.af-framework-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
}

.af-framework-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.8rem;
}

.af-framework-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===============================
       FRAMEWORK GRID
    =============================== */
.af-framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

/* ===============================
       PHASE CARD
    =============================== */
.af-framework-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border: 1.5px solid rgba(123, 24, 255, 0.2);
  border-radius: 20px;
  padding: 1.8rem 1.8rem 1.8rem;
  box-shadow: 0 10px 28px rgba(123, 24, 255, 0.08);
}

/* Phase number badge */
.af-framework-step {
  position: absolute;
  top: -18px;
  left: 24px;
  background: #7b18ff;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.af-framework-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.2rem;
}

.af-framework-list {
  padding-left: 1.1rem;
}

.af-framework-list li {
  font-size: 0.98rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.af-framework-list li::marker {
  color: #7b18ff;
}

/* ===============================
       RESPONSIVE
    =============================== */
@media (max-width: 900px) {
  .af-framework-grid {
    grid-template-columns: 1fr;
  }

  .af-framework-title {
    font-size: 2.1rem;
  }
}

/* this is seventh section for zinzag container */
/*tablet modification*/
/* ================= TABLET FIX ================= */

@media (min-width: 768px) and (max-width: 1024px) {
  /* Remove center line & connectors */
  .af-line,
  .af-dot,
  .af-dot::after {
    display: none !important;
  }

  /* Force single-column layout */
  .af-row {
    grid-template-columns: 1fr !important;
  }

  /* Full-width cards */
  .af-card {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: left;
  }

  /* Reset left/right behavior */
  .af-row.left .af-card,
  .af-row.right .af-card {
    grid-column: 1 !important;
    justify-self: stretch !important;
    text-align: left !important;
    margin: 0 !important;
  }
}

.af-zigzag-fixed {
  padding: 30px 0px;
  background: url("../img/mdbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.af-zigzag-container {
  margin: 0 auto;
  position: relative;
}

/* ================= HEADER ================= */
.af-zigzag-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 5rem;
}

.af-zigzag-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.af-zigzag-header p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #374151;
}

/* ================= FLOW ================= */
.af-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* CENTRAL LINE */
.af-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #7b18ff, #ff0047);
  transform: translateX(-50%);
  z-index: 0;
}

/* ================= ROW ================= */
.af-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
}

/* DOT ON THE LINE */
.af-dot {
  grid-column: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(90deg, #7b18ff, #ff0047);
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

/* CONNECTOR LINE */
.af-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #7b18ff, #ff0047);
}

/* LEFT SIDE */
.af-row.left .af-dot::after {
  right: 100%;
}

.af-row.left .af-card {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  margin-right: 0;
}

/* RIGHT SIDE */
.af-row.right .af-dot::after {
  left: 100%;
}

.af-row.right .af-card {
  grid-column: 3;
  justify-self: start;
  text-align: left;
  margin-left: 0;
}

/* CARD */
.af-card {
  max-width: 520px;
  padding: 2.1rem 2.3rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1.2px solid rgba(123, 24, 255, 0.25);
  box-shadow: 0 14px 30px rgba(123, 24, 255, 0.08);
  z-index: 1;
}

.af-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #7b18ff, #ff0047);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.af-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}
.fa-icon {
  color: var(--primary);
}

.af-dark {
  color: #000000 !important;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .af-line,
  .af-dot::after {
    display: none;
  }
  .af-card {
    width: 100% !important;
  }

  .af-row {
    grid-template-columns: 1fr;
  }

  .af-dot {
    display: none;
  }

  .af-card {
    margin: 0 auto;
    text-align: center;
  }

  .af-row.left .af-card {
    grid-column: 1;
    justify-self: end;
    text-align: left;
    margin-right: 0;
  }
}
/* Desktop (container behaves normally) */
/* No changes needed */

/* Tablet & Mobile */
@media (max-width: 768px) {
  .cl-header-wrap .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .strip {
    flex-direction: column;
    padding: 14px 12px;
    gap: 8px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .strip {
    padding: 12px 10px;
    font-size: 14px;
  }
}



/* this is second last section above footer form section */
.af-cta-section {
  padding: 30px 0px;
  background: linear-gradient(
    180deg,
    #ffeded 0%,
    #ffffff 45%,
    #ffffff 65%,
    rgba(203, 172, 255, 0.35) 100%
  );
}
.list-group-item {
  background: transparent;
}
.af-cta-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT CONTENT */
.af-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.2rem;
}

.af-cta-content h2 span {
  background: linear-gradient(90deg, #7b18ff, #ff0047);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.af-cta-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.8rem;
}

.af-cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.af-cta-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 0.9rem;
}

.af-cta-list li::before {
  content: "•";
  font-size: 1.6rem;
  line-height: 1;
  background: linear-gradient(90deg, #7b18ff, #ff0047);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* RIGHT CARD */
.af-cta-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.8rem;
  border: 1px solid rgba(123, 24, 255, 0.2);
  box-shadow: 0 20px 50px rgba(123, 24, 255, 0.12);
}

.af-cta-card p {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.af-btn-primary {
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  color: #ffffff;
  border: none;
  background: linear-gradient(90deg, #7b18ff, #ff0047);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  width: 50%;
}

.af-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(123, 24, 255, 0.35);
}

.af-btn-secondary {
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  color: #7b18ff;
  border: 1.5px solid rgba(123, 24, 255, 0.4);
  background: transparent;
  transition: background 0.2s ease;
}

.af-btn-secondary:hover {
  background: rgba(123, 24, 255, 0.05);
}

.af-cta-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-width: 720px;
  margin: auto;
}

.af-cta-text {
  text-align: center;
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.af-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.af-form-full {
  margin-bottom: 1rem;
}

.af-cta-form input {
  width: 100%;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
}
.af-msg {
  font-size: 0.85rem;
}
.af-cta-form input:focus {
  outline: none;
  border-color: #7c3aed;
}

.af-cta-actions {
  text-align: center;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .af-form-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .af-cta-container {
    grid-template-columns: 1fr;
  }

  .af-cta-content h2 {
    font-size: 2.1rem;
  }

  .af-cta-card {
    padding: 2.2rem;
  }
}

/* this is footer section css */
.af-footer {
  background: #8317f5;
  /* deep enterprise navy */
  padding: 2.5rem 5%;
}

.af-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.af-footer-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.af-footer-subtext {
  font-size: 15px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .af-footer {
    padding: 2rem 6%;
  }
}

/* This is thankyou page CSS for codleo.ai */
.thankyou-body {
  min-height: 100vh;
  background: url("../img/Thank-You-Page-Banne-for-Mobile.png") center / cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.thankyou-container {
  text-align: center;
  max-width: 720px;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.thankyou-container h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #7b18ff 0%, #ff0047 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thankyou-container p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}
.af-btn-primary {
  text-decoration: none;
  text-align: center;
  padding: 0.8rem 0.6rem;
  border-radius: 10px;
  font-weight: 600;
  color: #ffffff;
  border: none;
  background: linear-gradient(90deg, #7b18ff, #ff0047);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.thankyou-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(106, 92, 255, 0.55);
}

.education-af-hero-section {
  position: relative;
  min-height: 100%;
  background-image: url("../img/casestudies/casesbg.png");
  /* CHANGE IMAGE PATH */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  /*align-items: center;*/
  padding: 50px 0;
  color: #ffffff;
}
.education-af-cut-section {
  position: relative;
  height: 100vh;
  background-image: url("../img/casestudies/cutbg.png");
  /* CHANGE IMAGE PATH */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  /*align-items: center;*/
  padding: 80px 0;
  color: #ffffff;
}

@media (max-width: 600px) {
  .thankyou-container h1 {
    font-size: 2.1rem;
  }

  .thankyou-container p {
    font-size: 1rem;
  }
}

/* Case Study Pages Css started from here */

/* Education Case Study Page */


/* Scoped Professional Section - No absolute positioning */
.eduaf-section {
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    #ffeded 0%,
    #ffffff 45%,
    #ffffff 65%,
    rgba(203, 172, 255, 0.35) 100%
  );
}

.eduaf-wrap {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.08);
  padding: 42px;
}

.eduaf-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #0b5ed7;
  background: rgba(11, 94, 215, 0.08);
  border: 1px solid rgba(11, 94, 215, 0.22);
}

.eduaf-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.15;
  margin: 14px 0 12px;
}

.eduaf-lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.9;
  color: #000;
}

.eduaf-subtitle {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b5ed7;
  margin-bottom: 10px;
}

.eduaf-h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 12px;
}

.eduaf-text {
  font-size: 15.5px;
  line-height: 1.95;
  color: #000;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .eduaf-section {
    padding: 60px 0;
  }
  .eduaf-wrap {
    padding: 26px;
  }
  .af-hero-content {
    padding-top: 50px;
    padding-bottom: 50px;
}
}

.eduaf-one-section {
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    #ffeded 0%,
    #ffffff 45%,
    #ffffff 65%,
    rgba(203, 172, 255, 0.98) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Section title */
.eduaf-one-section .eduaf-section-title {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 40px;
}

.eduaf-one-section .eduaf-chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0b5ed7;
  background: rgba(11, 94, 215, 0.1);
  border: 1px solid rgba(11, 94, 215, 0.2);
  margin-bottom: 14px;
}

/* ✅ TOP single card */
.eduaf-one-section .eduaf-top-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(2, 6, 23, 0.1);
  border-radius: 24px;
  box-shadow: 0 25px 90px rgba(2, 6, 23, 0.1);
  padding: 26px;
  overflow: hidden; /* ✅ image never overflow outside card */
}

/* Headings + text */
.eduaf-one-section .eduaf-card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.eduaf-one-section .eduaf-text {
  color: #000;
  font-size: 15.5px;
  line-height: 1.9;
  margin: 0;
}

/* Impact list */
.eduaf-one-section .eduaf-impact {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.eduaf-one-section .eduaf-impact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.eduaf-one-section .eduaf-impact-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11, 94, 215, 0.12);
  border: 1px solid rgba(11, 94, 215, 0.18);
  color: #0b5ed7;
  font-size: 16px;
  font-weight: 900;
  flex: 0 0 36px;
}

.eduaf-one-section .eduaf-impact-text {
  margin: 0;
  color: #000;
  font-size: 14.8px;
  line-height: 1.65;
}

/* ✅ Right side image wrapper (NO CARD) */
.eduaf-one-section .eduaf-top-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ✅ spacing inside top card */
  padding: 0;
}

/* Bottom boxes */
.eduaf-one-section .eduaf-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(2, 6, 23, 0.1);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 55px rgba(2, 6, 23, 0.06);
  height: 100%;
}

.eduaf-one-section .eduaf-box-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.eduaf-one-section .eduaf-badge {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(11, 94, 215, 0.12);
  border: 1px solid rgba(11, 94, 215, 0.18);
  color: #0b5ed7;
  font-weight: 950;
  font-size: 14px;
  flex: 0 0 42px;
}

.eduaf-one-section .eduaf-box-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.eduaf-one-section .eduaf-list {
  margin: 0;
  padding-left: 18px;
  color: #000;
  line-height: 1.85;
  font-size: 14.8px;
}

/* helpers */
.eduaf-one-section .eduaf-mt-22 {
  margin-top: 22px;
}
.af-btns-primary {
  text-decoration: none;
  text-align: center;
  padding: 0.5rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  color: #ffffff;
  border: none;
  background: linear-gradient(90deg, #7b18ff, #ff0047);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* ✅ Responsive */
@media (max-width: 991px) {
  .eduaf-one-section {
    padding: 65px 0;
  }

  .eduaf-one-section .eduaf-top-card {
    padding: 22px;
  }

  .eduaf-one-section .eduaf-top-image img {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .eduaf-one-section .eduaf-title {
    font-size: 1.9rem;
  }

  .eduaf-one-section .eduaf-top-card {
    padding: 18px;
  }
  .aiagents {
    margin-top: 20px;
  }
}
.blackbox {
  color: #000000;
}
.flow-img {
  height: 550px !important;
}
/* ✅ Always List container */
.alwayslist {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #000;
  line-height: 1.85;
  font-size: 14.8px;
}

/* ✅ Each list item */
.alwayslist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
}
.uparrow {
  font-weight: 900;
}
/* ✅ Tick icon */
.alwayslist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  background: rgba(123, 24, 255, 0.14);
  color: #7b18ff;
}

.sm-box {
  background: rgb(255 255 255 / 35%);
  border-radius: 16px !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 1024px) {
  .flow-img {
    height: 100% !important;
  }
}

/* Scoped Professional Section - No absolute positioning */

.eduaf-wrap {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.08);
  padding: 42px;
}

.eduaf-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #0b5ed7;
  background: rgba(11, 94, 215, 0.08);
  border: 1px solid rgba(11, 94, 215, 0.22);
}

.eduaf-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.15;
  margin: 14px 0 12px;
}

.eduaf-lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.9;
  color: #000;
  text-align: justify;
}

.eduaf-subtitle {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b5ed7;
  margin-bottom: 10px;
}

.eduaf-h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 12px;
}

.eduaf-text {
  font-size: 15.5px;
  line-height: 1.95;
  color: #000;
  text-align: justify;
  margin: 0;
}
.talk-to-expert {
  text-align: justify;
}
.uparrow i {
  font-weight: bolder;
}
/* Responsive */
@media (max-width: 991px) {
  .eduaf-section {
    padding: 60px 0;
  }
  .eduaf-wrap {
    padding: 26px;
  }
  .eduaf-img {
    min-width: 100%;
  }
}

/* Section title */
.eduaf-one-section .eduaf-section-title {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 40px;
}

.eduaf-one-section .eduaf-chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0b5ed7;
  background: rgba(11, 94, 215, 0.1);
  border: 1px solid rgba(11, 94, 215, 0.2);
  margin-bottom: 14px;
}

.eduaf-one-section .eduaf-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
}

/* Headings + text */

.eduaf-one-section .eduaf-text {
  color: #000;
  font-size: 15.5px;
  line-height: 1.9;
  margin: 0;
}

/* Impact list */
.eduaf-one-section .eduaf-impact {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.eduaf-one-section .eduaf-impact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.eduaf-one-section .eduaf-impact-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11, 94, 215, 0.12);
  border: 1px solid rgba(11, 94, 215, 0.18);
  color: #0b5ed7;
  font-size: 16px;
  font-weight: 900;
  flex: 0 0 36px;
}

.eduaf-one-section .eduaf-impact-text {
  margin: 0;
  color: #000;
  font-size: 14.8px;
  line-height: 1.65;
}

/* ✅ Right side image wrapper (NO CARD) */
.eduaf-one-section .eduaf-top-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ✅ spacing inside top card */
  padding: 0;
}

/* ✅ Responsive image (NO CUT) */
.eduaf-one-section .eduaf-top-image img {
  height: auto;
  display: block;
  width: 100% !important;
  /* ✅ image should never crop */
  object-fit: contain;
  padding: 10px;
  /* ✅ limit height so it doesn't become too big */
}

/* Bottom boxes */
.eduaf-one-section .eduaf-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(2, 6, 23, 0.1);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 55px rgba(2, 6, 23, 0.06);
  height: 100%;
}

.eduaf-one-section .eduaf-box-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.eduaf-one-section .eduaf-badge {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(11, 94, 215, 0.12);
  border: 1px solid rgba(11, 94, 215, 0.18);
  color: #0b5ed7;
  font-weight: 950;
  font-size: 14px;
  flex: 0 0 42px;
}

.eduaf-one-section .eduaf-box-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

/* ✅ List container */
.eduaf-one-section .eduaf-list {
  margin: 0;
  padding: 0;
  list-style: none; /* remove default bullets */
  color: #000;
  line-height: 1.85;
  font-size: 14.8px;
}

/* ✅ Each list item */
.eduaf-one-section .eduaf-list li {
  position: relative; /* IMPORTANT for absolute ::before */
  padding-left: 32px; /* space for tick box */
  margin-bottom: 10px;
}

/* ✅ Tick icon */
.eduaf-one-section .eduaf-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  background: rgba(123, 24, 255, 0.14);
  color: #7b18ff;
}

/* helpers */
.eduaf-one-section .eduaf-mt-22 {
  margin-top: 22px;
}
.af-btns-primary {
  text-decoration: none;
  text-align: center;
  padding: 0.5rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  color: #ffffff;
  border: none;
  background: linear-gradient(90deg, #7b18ff, #ff0047);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* ✅ Responsive */
@media (max-width: 991px) {
  .eduaf-one-section {
    padding: 65px 0;
  }

  .eduaf-one-section .eduaf-top-card {
    padding: 22px;
  }

  .eduaf-one-section .eduaf-top-image img {
    max-width: 100%px;
  }
}

@media (max-width: 576px) {
  .eduaf-one-section .eduaf-title {
    font-size: 1.9rem;
  }

  .eduaf-one-section .eduaf-top-card {
    padding: 18px;
  }
}

/* this section is for hightech case study */
.af-ctas-actions {
  text-align: left;
  margin-top: 1.5rem;
}
.af-btns-primary {
  text-decoration: none;
  text-align: center;
  padding: 0.5rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  color: #ffffff;
  border: none;
  background: linear-gradient(90deg, #7b18ff, #ff0047);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
@media (max-width: 500px) {
  .af-ctas-actions {
    text-align: center;
  }
}
