 /* ═══════════════════════════════════════
       CSS VARIABLES — identical to home.css
    ═══════════════════════════════════════ */
    :root {
      --bg: #f7f8fc;
      --surface: #ffffff;
      --surface-soft: #f2f5ff;
      --text: #0f172a;
      --muted: #64748b;
      --line: #e6ebf5;
      --primary: #1B9AAA;
      --primary-dark: #0E7490;
      --accent: #14b8a6;
      --orange: #c72222;
      --shadow: 0 22px 60px rgba(20,33,61,0.08);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(59,91,219,.08), transparent 28%),
        linear-gradient(180deg,#fff 0%,#f7f8fc 100%);
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

    /* ═══════════════════════════════════════
       HEADER — same as home
    ═══════════════════════════════════════ */
    /* .site-header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }
    .nav-wrap {
      display: flex; align-items: center;
      justify-content: space-between; gap: 24px;
      height: 72px; padding: 0;
    }
    .brand img { width: auto; height: 64px; max-height: 64px; object-fit: contain; }
    .nav-links { display: flex; align-items: center; gap: 22px; }
    .nav-links a { font-weight: 700; color: #334155; transition: color .2s; }
    .nav-links a.active, .nav-links a:hover { color: var(--primary); }
    .nav-cta {
      padding: 12px 22px; border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff !important;
      box-shadow: 0 16px 35px rgba(59,91,219,.22);
      transition: transform .2s, box-shadow .2s;
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(14,116,144,.3); }
    .menu-toggle {
      display: none; width: 48px; height: 48px;
      border: 1px solid var(--line); border-radius: 14px;
      background: #fff; cursor: pointer; padding: 0;
    }
    .menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--text); transition: .25s ease; }
    .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } */

    /* ═══════════════════════════════════════
       SECTION BASE — same as home
    ═══════════════════════════════════════ */
    .section { padding: 60px 0; }
    .section-soft { background: linear-gradient(180deg,#f8faff 0%,#f4f7ff 100%); }
    .section-tag {
      display: inline-block;
      color: var(--primary); font-size: .8rem;
      font-weight: 800; text-transform: uppercase;
       /* letter-spacing: .16em; */
    }
    .section-heading { margin-bottom: 34px; }
    .section-heading.center { text-align: center; }
    .section-heading h2, .content-block h2 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(2rem,4vw,3.4rem);
      font-weight: 800;
       /* letter-spacing: -.03em; */
      line-height: 1.06; margin: 14px 0 18px;
    }
    p { color: var(--muted); line-height: 1.8; margin: 0 0 14px; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 10px; padding: 15px 28px; border-radius: 999px;
      font-weight: 800; transition: .25s ease; cursor: pointer; border: none;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff; box-shadow: 0 16px 36px rgba(59,91,219,.2);
    }
    .btn-light { background: #fff; color: var(--primary-dark); font-weight: 800; }
    .btn-outline-light { background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; font-weight: 800; }

   /* ═══════════════════════════════════════
   PAGE BANNER — BGP
═══════════════════════════════════════ */
/* BANNER */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e568a 60%, #0f172a 100%);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.banner-blob { position: absolute; border-radius: 999px; filter: blur(80px); pointer-events: none; }
.banner-blob-1 { width:420px; height:420px; background:rgba(20,184,166,.18); top:-120px; right:-80px; }
.banner-blob-2 { width:260px; height:260px; background:rgba(255,255,255,.06); bottom:-60px; left:4%; }
.banner-blob-3 { width:160px; height:160px; background:rgba(14,116,144,.35); top:40%; left:38%; }

/* FLEX ROW */
.banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT CONTENT */
.banner-content {
  flex: 1;
}

/* RIGHT IMAGE */
.banner-cutout {
  width: 420px;
  flex-shrink: 0;
  object-fit: contain;
  /* align-self: flex-start; */
}

/* TABLET */
@media (max-width: 991px) {
  .banner-cutout {
    width: 300px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .banner-inner {
    flex-direction: column;
  }
  .banner-cutout {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* REST UNCHANGED */
.banner-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px); border-radius: 999px;
  padding: 8px 18px; margin-bottom: 28px;
  font-size: .83rem; font-weight: 700; color: rgba(255,255,255,.88);
}
.pill-dot {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  animation: pillPulse 2s ease infinite;
}
@keyframes pillPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(20,184,166,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(20,184,166,0); }
}
.banner-breadcrumb {
align-items: center; gap: 10px;
  margin-bottom: 22px; font-size: .86rem; color: rgba(255,255,255,.55);
}
.banner-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.banner-breadcrumb a:hover { color: #fff; }
.banner-breadcrumb i { font-size: .6rem; }
.crumb-active { color: var(--accent); font-weight: 700; }
.page-banner h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  font-weight: 800; color: #fff;
  /* letter-spacing: .01em;  */
  line-height: 1.04;
  margin: 0 0 20px;
}
.accent-word { color: var(--accent); }
.page-banner p {
  color: rgba(255,255,255,.72); font-size: 1.1rem;
  line-height: 1.8; margin: 0;
}
.banner-stats { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.b-stat {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px); border-radius: 18px; padding: 14px 20px;
}
.bs-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(20,184,166,.2); color: var(--accent);
  display: grid; place-items: center; font-size: .95rem; flex-shrink: 0;
}
.b-stat strong { display: block; font-size: 1.1rem; color: #fff; line-height: 1; margin-bottom: 2px; padding-right:50px;}
.b-stat span { font-size: .78rem; color: rgba(255,255,255,.6); }

/* Content — left se fade in */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Image — right se fade in */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Cutout — continuous float up down */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

/* Pill — fade in from top */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats — fade in up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations */
.banner-content {
  animation: slideInLeft 0.8s ease both;
}

.banner-cutout {
  animation: slideInRight 0.8s ease both, floatUpDown 4s ease-in-out 0.8s infinite;
  width: 420px;
  flex-shrink: 0;
  object-fit: contain;
  /* align-self: flex-end; */
}

.banner-pill {
  animation: fadeInDown 0.6s ease 0.2s both;
}

.banner-breadcrumb {
  animation: fadeInDown 0.6s ease 0.35s both;
}

#bannerH1 {
  animation: slideInLeft 0.7s ease 0.4s both;
}

#bannerP {
  animation: slideInLeft 0.7s ease 0.55s both;
}

#bannerStats {
  animation: fadeInUp 0.7s ease 0.7s both;
}

/* Each stat card staggered */
.b-stat:nth-child(1) { animation: fadeInUp 0.6s ease 0.75s both; }
.b-stat:nth-child(2) { animation: fadeInUp 0.6s ease 0.9s  both; }
.b-stat:nth-child(3) { animation: fadeInUp 0.6s ease 1.05s both; }
    /* ═══════════════════════════════════════
       ABOUT INSTITUTE — OC
    ═══════════════════════════════════════ */
    .about-grid-inst {
      display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
    }
    .inst-image { position: relative; }
    .inst-image img {
      width: 100%; height: 500px; object-fit: cover;
      border-radius: 32px; box-shadow: 0 30px 70px rgba(17,24,39,.12);
      transition: transform .5s ease;
    }
    .inst-image:hover img { transform: scale(1.02); }
    .inst-badge {
      position: absolute; bottom: 22px; left: 22px;
      background: rgba(255,255,255,.96); border-radius: 20px;
      padding: 16px 20px; box-shadow: 0 10px 40px rgba(0,0,0,.1);
      display: flex; align-items: center; gap: 14px; max-width: 250px;
    }
    .ib-icon {
      width: 46px; height: 46px; border-radius: 14px;
      background: var(--surface-soft); color: var(--primary);
      display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0;
    }
    .inst-badge strong { display: block; font-size: .92rem; margin-bottom: 3px; }
    .inst-badge span { color: var(--muted); font-size: .8rem; line-height: 1.5; }
    .inst-chip {
      position: absolute; top: 28px; right: -18px;
      background: #fff; border-radius: 14px;
      padding: 12px 16px; box-shadow: 0 8px 32px rgba(0,0,0,.1);
      display: flex; align-items: center; gap: 10px;
      font-size: .82rem; font-weight: 700;
    }
    .ch-icon {
      width: 32px; height: 32px; border-radius: 10px;
      background: var(--surface-soft); color: var(--primary);
      display: grid; place-items: center;
    }

    /* ═══════════════════════════════════════
       VISION / MISSION
    ═══════════════════════════════════════ */
    .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
    .vm-img { overflow: hidden; border-radius: 28px; }
    .vm-img img {
      width: 100%; height: 460px; object-fit: cover;
      border-radius: 28px; box-shadow: 0 22px 60px rgba(17,24,39,.1);
      transition: transform .6s ease;
    }
    .vm-img:hover img { transform: scale(1.04); }

    .vision-highlights {  display: flex; flex-direction: column; gap: 18px; }
    .vh-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 18px 20px; background: #fff;
      border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
     
    }
    .vh-item:hover { transform: translateX(6px); box-shadow: 0 16px 48px rgba(14,116,144,.1); }
    .vh-icon {
      width: 44px; height: 44px; border-radius: 14px;
      background: var(--surface-soft); color: var(--accent);
      display: grid; place-items: center; font-size: 1rem; flex-shrink: 0;
    }
    .vh-icon-green {  color: var(--accent); }
    .vh-item strong { display: block; margin-bottom: 5px; font-size: .95rem; }
    .vh-item span { color: var(--muted); font-size: .88rem; line-height: 1.7; }

    .mission-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
    .mission-list li {
      display: flex; align-items: center; gap: 14px;
      padding: 16px 18px; background: #fff;
      border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
      font-weight: 600; }

    .mission-list li:hover {
      transform: translateX(6px); border-color: rgba(14,116,144,.25);
      box-shadow: 0 12px 36px rgba(14,116,144,.1);
    }
    .mi-icon {
      width: 36px; height: 36px; border-radius: 12px;
      background: var(--surface-soft); color: var(--primary);
      display: grid; place-items: center; flex-shrink: 0; font-size: .85rem;
      transition: background .25s, color .25s;
    }
    .mission-list li:hover .mi-icon { background: var(--primary); color: #fff; }
    
    /* ═══════════════════════════════════════
   CORE VALUES
═══════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  height: 200px;
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.value-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
}

.card-front {
  background: #fff;
}

.card-back {
  background: var(--primary);
  transform: rotateY(180deg);
}

.card-back p {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.val-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--primary);
  display: grid; place-items: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
}

.value-card h4 {
  font-size: .88rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 580px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

    /* ═══════════════════════════════════════
       WHAT WE OFFER
    ═══════════════════════════════════════ */
    .offer-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 18px; }
    .offer-card {
      padding: 32px 18px; background: #fff;
      border: 1px solid var(--line); border-radius: 24px;
      text-align: center; box-shadow: var(--shadow);
      transition: transform .25s, box-shadow .25s, border-color .25s;
      cursor: default; position: relative; overflow: hidden;
    }
    .offer-card:hover { transform: translateY(-10px); box-shadow: 0 32px 72px rgba(14,116,144,.14); border-color: rgba(14,116,144,.2); }
    .offer-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: var(--surface-soft); color: var(--primary);
      display: grid; place-items: center; margin: 0 auto 16px; font-size: 1.2rem;
      transition: background .3s, color .3s, transform .3s;
    }
    .offer-card:hover .offer-icon { background: var(--primary); color: #fff; transform: scale(1.12); }
    .offer-num {
      font-family: "Outfit", sans-serif; font-size: 2rem;
      font-weight: 800; color: var(--primary); display: block; margin-bottom: 6px; line-height: 1;
    }
    .offer-check { font-size: 1.6rem; color: var(--primary); display: block; margin-bottom: 6px; }
    .offer-label { font-weight: 700; font-size: .88rem; color: var(--text); line-height: 1.5; display: block; }
/* ═══════════════════════════════════════
   OUR STRENGTH
═══════════════════════════════════════ */
.strength-track-wrap {
  overflow: hidden;
  margin-top: 40px;
  padding: 10px 0;
  -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.strength-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollTrack 18s linear infinite;
}

.strength-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.str-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: default;
}

.str-pill i {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid; place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.str-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.str-pill:hover i {
  background: rgba(255,255,255,0.25);
}

    /* ═══════════════════════════════════════
       GOAL BANNER
    ═══════════════════════════════════════ */
    .goal-banner {
      position: relative; overflow: hidden; padding: 90px 0; text-align: center;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }
    .goal-banner::before {
      content: ""; position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .goal-banner .container { position: relative; z-index: 2; }
    .goal-banner .section-tag { color: rgba(255,255,255,.65); }
    .goal-banner h2 {
      font-family: "Outfit", sans-serif;
      /* font-size: clamp(1.8rem,3.8vw,3rem); */
      font-weight: 800; color: #fff; 
      /* letter-spacing: -.03em; */
      max-width: 820px; margin: 16px auto 0; line-height: 1.18;
    }
    .goal-banner h2 em { font-style: normal; color: var(--accent); }
    .goal-actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

   

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width:1080px) {
      .values-grid,.offer-grid,.strength-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
      .about-grid-inst,.vm-grid { grid-template-columns: 1fr; gap: 36px; }
      .inst-image img,.vm-img img { height: 360px; }
      .inst-chip { display: none; }
      .footer-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width:780px) {
      .values-grid,.offer-grid,.strength-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .inst-image img,.vm-img img { height: auto; }
      .inst-badge { position: static; margin-top: 16px; max-width: none; }
      .nav-links {
        position: absolute; top: 100%; left: 16px; right: 16px;
        flex-direction: column; align-items: flex-start;
        padding: 18px; background: #fff; border: 1px solid var(--line);
        border-radius: 22px; box-shadow: var(--shadow); opacity: 0;
        pointer-events: none; transform: translateY(-10px); transition: .25s ease;
      }
      .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(8px); }
      .menu-toggle { display: block; }
      .banner-stats { flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; }
    }
    @media (max-width:480px) {
      .values-grid,.offer-grid,.strength-grid { grid-template-columns: 1fr; }
    }
    .brand img { 
  width: auto; 
  height: 250px; 
  max-height: 250px;
  object-fit: contain; 
}

.nav-wrap { 
  height: 72px;
  padding: 0;
  align-items: center;
}

.site-footer {
  background: #f8fafc;
  /*border-top: 1px solid #e2e8f0;*/
 
  margin-top: 80px;
}

.site-footer * {
  opacity: 1 !important;
}

/* ── DESKTOP 4 columns ── */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e2e8f0;
}

.footer-grid h3 {
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 20px;
}

.footer-grid a {
  display: block;
  color: #475569;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-grid a:hover {
  color: #0d9488;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin-top: 16px;
}

.footer-grid .brand img {
  height: 48px;
  width: auto;
}

.footer-col p {
  font-size: 14px;
  color: #475569;
  margin: 0 0 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer-col p i {
  color: #0d9488;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* ── TABLET 768px – 1024px ── */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

/* ── MOBILE max 767px ── */
@media (max-width: 767px) {
  .site-footer {
    padding: 40px 0 0;
    margin-top: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer-col-brand {
    grid-column: 1;
  }

  .footer-grid .brand img {
    height: 40px;
  }

  .footer-text {
    font-size: 13px;
  }

  .footer-grid h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-grid a {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-col p {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.6;
  }
}

.banner-content {
  text-align: center;
  align-items: center;  /* if it's a flex container */
}



body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fa;
}

/* HEADER */
.cs {
  padding: 60px 20px;
  text-align: center;
}

.cs-head h2 {
 
  margin-bottom: 10px;
   font-family: "Outfit", sans-serif;
      font-size: clamp(2rem,4vw,3.4rem);
      font-weight: 800;
       /* letter-spacing: -.03em; */
      line-height: 1.06; margin: 14px 0 18px;
}

.cs-head p {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.cert-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.cert{
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  border-top: 4px solid #0E7490;
  border-bottom: 4px solid #0E7490;
  transition: 0.3s;
}

/* IMAGE */
.cert img {
  width: 70px;
  margin-bottom: 10px;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

.green { background: #eafaf1; color: #2ecc71; }
.blue { background: #eaf2ff; color: #2f6fed; }
.orange { background: #fff3e6; color: #e67e22; }
.purple { background: #f0eaff; color: #6c5ce7; }

/* TEXT */
.cert h3 {
  font-size: 18px;
  margin: 10px 0;
}

.cert p {
  font-size: 14px;
  color: #555;
}

/* LIST */
.cert ul {
  text-align: left;
  padding-left: 18px;
  font-size: 13px;
  margin-top: 15px;
}

.cert ul li {
  margin-bottom: 5px;
}

/* HOVER */
.cert:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cert-g {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cert-g {
    grid-template-columns: 1fr;
  }
}
.mon{
    margin-right: 40px;
}