
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }

    :root {
      --red:       #b91c1c;
      --red-dark:  #8b1010;
      --red-mid:   #991b1b;
      --red-btn:   #dc2626;
      --white:     #ffffff;
      --border:    #d1d5db;
      --shadow:    0 8px 40px rgba(0,0,0,0.18);
      --header-h:  68px;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      background: #f1f5f9;
      min-height: 100vh;
    }

    /* ══════════════════════════════
       STICKY HEADER
    ══════════════════════════════ */
 .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  transition: box-shadow 0.3s;
}
    .site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
    @keyframes headerDrop {
      from { transform: translateY(-100%); opacity: 0; }
      to   { transform: translateY(0);     opacity: 1; }
    }

    .header-inner {
      width: 90%;
      max-width: 1300px;
      margin: 0 auto;
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    /* Logo */
    .logo-block {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
      height: 100%;
    }
    .logo-block img {
      height: 48px;
      width: auto;
      max-width: 220px;
      object-fit: contain;
      display: block;
    }
    /* Fallback text logo if image fails */
    .logo-text-fallback {
      display: none;
      align-items: center;
      gap: 10px;
    }
    .logo-shield-fb {
      width: 42px; height: 42px;
      background: var(--red);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-size: 18px; font-weight: 900; color: #fff;
      flex-shrink: 0;
    }
    .logo-txt h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 13.5px; font-weight: 800;
      color: var(--red); line-height: 1.2;
    }
    .logo-txt p { font-size: 9.5px; color: #999; margin-top: 1px; }

    /* Header CTA */
    .header-cta {
      background: var(--red-btn);
      color: #fff; border: none; border-radius: 50px;
      padding: 10px 26px; font-size: 13.5px; font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer; white-space: nowrap; flex-shrink: 0;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .header-cta:hover {
      background: var(--red-dark);
      transform: scale(1.04);
      box-shadow: 0 4px 18px rgba(185,28,28,0.38);
    }

    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
  .hero {
  position: relative;
  width: 100%;
  background: var(--red-dark);
  background-image: url('images/bannerbg.webp'); /* 🔁 apni image ka path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 380px;
}

    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('images/bg.webp');
      background-size: cover; background-position: center;
      opacity: 0.13; z-index: 0;
      animation: bgPan 20s ease-in-out infinite alternate;
    }
    @keyframes bgPan {
      from { transform: scale(1.07) translateX(0); }
      to   { transform: scale(1.07) translateX(-3%); }
    }

    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      /*background: linear-gradient(115deg,*/
      /*  rgba(100,8,8,0.97)   0%,*/
      /*  rgba(140,20,20,0.93) 42%,*/
      /*  rgba(175,25,25,0.72) 68%,*/
      /*  rgba(185,28,28,0.32) 100%);*/
    }

    /* 3-column grid */
    .hero-inner {
      position: relative; z-index: 2;
      width: 100%; max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 255px 1fr 305px;
      align-items: stretch;
      padding-right: 16px;
    }

    /* ── Girl column ── */
    .hero-girl {
      position: relative;
      display: flex; align-items: flex-end; justify-content: center;
      min-height: 380px;
      animation: slideLeft 0.8s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes slideLeft {
      from { opacity: 0; transform: translateX(-56px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .girl-img {
      height: 380px; width: 100%;
      object-fit: cover; object-position: top center;
      display: block;
      filter: drop-shadow(4px 0 20px rgba(0,0,0,0.3));
    }

    /* NAAC badge — desktop: top-right of girl col */
    .naac-wrap {
      position: absolute;
      top: 20px; right: 8px;
      z-index: 6;
      animation: floatBadge 3.4s ease-in-out infinite;
      filter: drop-shadow(0 6px 16px rgba(0,0,0,0.3));
    }
    @keyframes floatBadge {
      0%,100% { transform: translateY(0) rotate(-4deg); }
      50%      { transform: translateY(-9px) rotate(-4deg); }
    }
    .naac-wrap img {
      /* width: 74px; height: 74px; */
      object-fit: contain; border-radius: 12px;
      /* background: #fff; */
       padding: 5px; display: block;

    }
    .naac-fallback {
      width: 74px; height: 74px; background: #fff;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 800;
      color: var(--red); text-align: center; line-height: 1.4;
    }

    /* ── Content column ── */
    .hero-content {
      padding: 44px 28px 44px 16px;
      display: flex; flex-direction: column;
      justify-content: center; gap: 22px;
      animation: fadeUp 0.85s 0.18s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(36px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.13);
      border: 1.5px solid rgba(255,255,255,0.36);
      border-radius: 50px; padding: 8px 20px;
      color: #fff; font-size: 13px; font-weight: 600;
      width: fit-content;
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    }

    .hero-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(30px, 3.6vw, 52px);
      font-weight: 900; color: #fff;
      line-height: 1.08; letter-spacing: -0.02em;
      text-shadow: 0 3px 20px rgba(0,0,0,0.22);
    }

    .admission-bar {
      display: inline-flex; align-items: center; gap: 12px;
      background: #fff; border-radius: 50px;
      padding: 8px 8px 8px 18px;
      width: fit-content; max-width: 100%;
      box-shadow: 0 4px 28px rgba(0,0,0,0.14);
      animation: pulseBar 3s ease-in-out infinite;
    }
    @keyframes pulseBar {
      0%,100% { box-shadow: 0 4px 28px rgba(0,0,0,0.14); }
      50%      { box-shadow: 0 6px 36px rgba(185,28,28,0.28); }
    }
    .bar-icon  { font-size: 17px; flex-shrink: 0; }
    .bar-label { font-size: 13px; font-weight: 600; color: #333; white-space: nowrap; }
    .btn-apply {
      background: var(--red-btn); color: #fff; border: none;
      border-radius: 50px; padding: 10px 20px;
      font-size: 13px; font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer; white-space: nowrap; flex-shrink: 0;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-apply:hover { background: var(--red-dark); transform: scale(1.04); }

    /* ── Form column ── */
    .hero-form-wrap {
      display: flex; align-items: center;
      padding: 16px 0 16px 12px;
      animation: slideRight 0.85s 0.14s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes slideRight {
      from { opacity: 0; transform: translateX(56px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ══════════════════════════════
       FORM CARD  — RED theme
    ══════════════════════════════ */
    .form-card {
      background: #fff;
      border-radius: 18px;
      width: 100%;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    /* Red gradient header — matches hero */
    .form-header {
      background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-btn) 100%);
      padding: 18px 20px 16px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .form-header::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 75% 0%, rgba(255,255,255,0.14) 0%, transparent 65%);
    }
    .form-header::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--red-dark), #ef4444, var(--red-dark));
    }
    .form-tag {
      display: inline-block;
      background: rgba(255,255,255,0.18);
      border: 1px solid rgba(255,255,255,0.32);
      border-radius: 50px;
      padding: 4px 14px;
      font-size: 10px; font-weight: 700;
      color: rgba(255,255,255,0.95);
      letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 8px;
      position: relative;
    }
    .form-header h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 16.5px; font-weight: 900;
      color: #fff; line-height: 1.2;
      text-transform: uppercase; letter-spacing: 0.01em;
      position: relative;
    }
    .form-header p {
      font-size: 11px; color: rgba(255,255,255,0.78);
      margin-top: 4px; font-weight: 500; position: relative;
    }

    /* Form body */
    .form-body { padding: 16px 18px 18px; }

    .form-group { margin-bottom: 10px; }
    .form-group label {
      display: block; font-size: 11.5px;
      font-weight: 700; color: #374151; margin-bottom: 4px;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 8px; padding: 9px 12px;
      font-size: 12.5px; font-family: 'Open Sans', sans-serif;
      color: #222; outline: none; background: #fafafa;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      -webkit-appearance: none; appearance: none;
    }
    .form-group input::placeholder { color: #bbb; }
    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(185,28,28,0.10);
      background: #fff;
    }

    /* Mobile with flag */
    .mobile-input-wrap {
      display: flex; align-items: center;
      border: 1.5px solid var(--border);
      border-radius: 8px; background: #fafafa;
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .mobile-input-wrap:focus-within {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(185,28,28,0.10);
      background: #fff;
    }
    .mobile-prefix {
      display: flex; align-items: center; gap: 5px;
      padding: 9px 10px;
      border-right: 1.5px solid var(--border);
      background: #f3f4f6;
      flex-shrink: 0;
      font-size: 12.5px; font-weight: 600; color: #374151;
      white-space: nowrap;
    }
    .flag-icon { font-size: 15px; }
    .mobile-input-wrap input {
      border: none; border-radius: 0;
      background: transparent; padding: 9px 11px;
      flex: 1; min-width: 0; outline: none;
    }
    .mobile-input-wrap input:focus { box-shadow: none; }

    /* Course + State row */
    .form-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
      margin-bottom: 10px;
    }
    .form-row .form-group { margin-bottom: 0; }

    .select-wrap { position: relative; }
    .select-wrap select { padding-right: 28px; cursor: pointer; }
    .select-wrap::after {
      content: '▾';
      position: absolute; right: 10px; top: 50%;
      transform: translateY(-50%);
      font-size: 11px; color: #888; pointer-events: none;
    }

    .form-check {
      display: flex; align-items: flex-start;
      gap: 8px; margin-bottom: 12px;
    }
    .form-check input[type="checkbox"] {
      accent-color: var(--red);
      width: 14px; height: 14px;
      margin-top: 2px; flex-shrink: 0; cursor: pointer;
    }
    .form-check label { font-size: 11px; color: #666; line-height: 1.4; cursor: pointer; }

    /* Red submit button — matches hero theme */
    .btn-submit {
      width: 100%; border: none; border-radius: 8px;
      padding: 12px; font-size: 14px; font-weight: 800;
      letter-spacing: 0.04em; cursor: pointer;
      font-family: 'Montserrat', sans-serif; color: #fff;
      background: linear-gradient(90deg, var(--red-dark) 0%, var(--red-btn) 50%, var(--red-dark) 100%);
      background-size: 220% auto;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      animation: shimmerRed 3s linear infinite;
      transition: transform 0.15s, box-shadow 0.2s;
    }
    @keyframes shimmerRed {
      from { background-position: 220% center; }
      to   { background-position: -220% center; }
    }
    .btn-submit:hover {
      animation: none;
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(139,16,16,0.42);
    }
    .btn-submit:active { transform: translateY(0); }

    /* ══════════════════════════════
       MOBILE  ≤ 860px
    ══════════════════════════════ */
    @media (max-width: 860px) {
      :root { --header-h: 58px; }

      /* Header: full width, logo left, Apply Now right — NO hamburger */
      .header-inner { width: 100%; padding: 0 14px; }
      .logo-block img { height: 40px; max-width: 160px; }
      .header-cta {
        display: flex !important; /* always show on mobile */
        padding: 8px 18px;
        font-size: 12.5px;
      }

      /* Hero: single column */
      .hero { min-height: unset; overflow: visible; }
      .hero-inner {
        grid-template-columns: 1fr;
        padding: 0;
      }

      /* MOBILE STACK ORDER:
         1 = Content (badge + title + admission bar)
         2 = Girl + NAAC
         3 = Form
      */
      .hero-content {
        order: 1;
        padding: 26px 18px 14px;
        align-items: center;
        text-align: center;
      }
      .hero-girl {
        order: 2;
        min-height: unset;
        height: 270px;
        align-items: flex-end;
        justify-content: center;
      }
      .hero-form-wrap {
        order: 3;
        padding: 0 14px 26px;
        align-items: flex-start;
      }

      /* Girl image */
      .girl-img {
        height: 270px;
        width: auto;
        max-width: 68%;
        object-fit: contain;
        object-position: bottom center;
      }

      /* NAAC: top-right corner of hero on mobile (clear of girl) */
      .naac-wrap {
        position: absolute;
        top: 14px;
        right: 14px;
        bottom: auto;
        left: auto;
      }
      .naac-wrap img, .naac-fallback {
        width: 58px; height: 58px;
      }

      /* Form */
      .form-card { max-width: 100%; margin: 0; }
      .form-body  { padding: 14px 16px 16px; }

      /* Content */
      .hero-title  { font-size: clamp(24px, 7.5vw, 34px); }
      .hero-badge  { font-size: 12px; padding: 7px 16px; }
      .admission-bar { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 8px 12px; }
      .bar-label { font-size: 12px; }
    }

    @media (max-width: 480px) {
      :root { --header-h: 54px; }

      .logo-block img { height: 36px; max-width: 140px; }
      .header-cta { padding: 7px 14px; font-size: 12px; }
      .header-inner { padding: 0 12px; }

      .hero-content { padding: 20px 14px 10px; gap: 16px; }
      .hero-girl    { height: 180px; }
      .girl-img     { height: 183px; max-width: 76%; }
      .naac-wrap    { top: 12px; right: 10px; }
      .naac-wrap img, .naac-fallback { width: 52px; height: 52px; }

      .hero-form-wrap { padding: 0 10px 20px; }
      .form-header    { padding: 15px 16px 14px; }
      .form-body      { padding: 12px 12px 14px; }
      .form-header h2 { font-size: 15px; }

      .hero-title  { font-size: 34px; }
      .hero-badge  { font-size: 11px; padding: 6px 14px; }

      /* Course + State stack on very small screens */
      .form-row { grid-template-columns: 1fr; gap: 10px; }
    }

    .sec2-about, .sec2-miles {
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}
 
/* ── ABOUT ── */
.sec2-about {
  padding: 50px 0;
  background: #fff;
}
.sec2-about .wrap,
.sec2-miles .wrap {
  width: 92%; max-width: 1150px;
  margin: 0 auto;
}
.sec2-about .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
 
/* Single Left Image */
.s2-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  /* box-shadow: 0 12px 40px rgba(185,28,28,0.13); */
  animation: f1 6s ease-in-out infinite;
}
.s2-img-wrap img {
  width: 75%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 18px;
}
/* Red accent corner */
.s2-img-wrap::before {
  content: '';
  position: absolute;
  bottom: -10px; left: -10px;
  width: 55%; height: 55%;
  background: #b91c1c;
  border-radius: 14px;
  opacity: 0.10;
  z-index: -1;
}
/* .s2-img-wrap::after {
  content: '';
  position: absolute;
  top: -10px; right: -10px;
  width: 40%; height: 40%;
  background: #b91c1c;
  border-radius: 14px;
  opacity: 0.07;
  z-index: -1;
} */
@keyframes f1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
 
/* Text */
.s2-tagline {
  font-size: 12px; font-weight: 700;
  color: #b91c1c; letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.s2-tagline::before {
  content: ''; width: 24px; height: 2px;
  background: #b91c1c; border-radius: 2px; flex-shrink: 0;
}
.s2-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900; line-height: 1.12;
  color: #111; margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.s2-h2 span { color: #b91c1c; }
.s2-desc {
  font-size: 13.5px; color: #666;
  line-height: 1.7; margin-bottom: 28px;
}
 
/* Stats */
.s2-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1.5px solid #f0e8e8;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(185,28,28,0.07);
}
.s2-stat {
  padding: 18px 10px; text-align: center;
  border-right: 1.5px solid #f0e8e8;
  position: relative; transition: background 0.3s;
}
.s2-stat:last-child { border-right: none; }
.s2-stat:hover { background: #fff5f5; }
.s2-stat::after {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px; background: #b91c1c;
  transition: width 0.4s;
}
.s2-stat:hover::after { width: 55%; }
.s2-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900; color: #b91c1c;
  line-height: 1; margin-bottom: 5px;
}
.s2-stat span { font-size: 11px; color: #888; font-weight: 600; }
 
/* ── MILESTONES ── */
.sec2-miles {
  padding: 50px 0;
  background: #fff;
}
.sec2-miles .inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  align-items: center;
  gap: 40px;
}
.miles-lft .sub {
  font-size: 12.5px; color: #777;
  line-height: 1.55; margin-bottom: 12px;
}
.miles-lft h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900; line-height: 1.12;
  color: #111; letter-spacing: -0.02em;
}
.miles-lft h2 span { color: #b91c1c; }
 
/* Cards with BG */
.miles-rgt {
  position: relative;
  border-radius: 18px; overflow: hidden;
}
/* 📌 REPLACE: images/campus-bg.webp */
.miles-bg-img {
  position: absolute; inset: 0;
  background: url('images/campus-bg.webp') center/cover no-repeat, #8b1010;
  z-index: 0;
}
.miles-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(100,8,8,0.70), rgba(139,16,16,0.50));
}
.miles-cards-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px; padding: 24px 18px;
}
.m-card {
  background: #fff; border-radius: 12px;
  padding: 18px 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.13);
  transition: transform 0.3s, box-shadow 0.3s;
}
.m-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(185,28,28,0.18);
}
.m-card-icon {
  width: 40px; height: 40px;
  border-radius: 9px; background: #fff5f5;
  border: 1.5px solid #fce8e8;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  transition: background 0.3s;
}
.m-card:hover .m-card-icon { background: #b91c1c; }
.m-card:hover .m-card-icon svg { stroke: #fff; }
.m-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 800;
  color: #111; margin-bottom: 6px;
}
.m-card p { font-size: 11px; color: #666; line-height: 1.6; }
 
/* Animate */
.s2-anim {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.s2-anim.go { opacity: 1; transform: translateY(0); }
 
/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .sec2-about .inner,
  .sec2-miles .inner { grid-template-columns: 1fr; gap: 28px; }
  .miles-cards-grid { grid-template-columns: repeat(3,1fr); gap: 10px; padding: 16px 12px; }
  .s2-img-wrap img{ margin-left: auto;margin-right: auto;}
}
@media (max-width: 560px) {
  .sec2-about, .sec2-miles { padding: 36px 0; }
  .s2-stats { grid-template-columns: 1fr; }
  .s2-stat { border-right: none; border-bottom: 1.5px solid #f0e8e8; }
  .s2-stat:last-child { border-bottom: none; }
  .miles-cards-grid { grid-template-columns: 1fr; }
}

.sec3-why {
  font-family: 'Open Sans', sans-serif;
  background: #FFFBFB;
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
}
 
/* Decorative red circle top-left */
.sec3-why::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: #b91c1c;
  opacity: 0.12;
  pointer-events: none;
}
/* Decorative red circle bottom-right */
.sec3-why::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: #b91c1c;
  opacity: 0.07;
  pointer-events: none;
}
 
.sec3-why .wrap {
  width: 92%; max-width: 1150px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
 
/* ── Header ── */
.sec3-head {
  text-align: center;
  margin-bottom: 52px;
}
.sec3-badge {
  display: inline-block;
  background: #b91c1c;
  color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 50px;
  padding: 7px 22px;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
}
.sec3-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: #111;
  letter-spacing: -0.02em;
}
.sec3-title span { color: #b91c1c; display: block; }
 
/* ── Cards Grid ── */
.sec3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
 
.sec3-card {
  background: #fff;
  border: 1.5px solid #f0e8e8;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(185,28,28,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
 
  /* entrance animation start state */
  opacity: 0;
  transform: translateY(36px);
}
.sec3-card.go {
  opacity: 1;
  transform: translateY(0);
}
.sec3-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(185,28,28,0.14);
  border-color: #f5c0c0;
}
 
/* Red top line on hover */
.sec3-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.sec3-card:hover::before { transform: scaleX(1); }
 
/* Icon box */
.sec3-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: #fff0f0;
  border: 1.5px solid #fce8e8;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.sec3-card:hover .sec3-icon {
  background: #b91c1c;
  transform: rotate(-6deg) scale(1.08);
}
.sec3-card:hover .sec3-icon svg { stroke: #fff; }
 
.sec3-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 800;
  color: #111; margin-bottom: 10px;
  line-height: 1.3;
}
.sec3-card p {
  font-size: 12.5px; color: #666;
  line-height: 1.7;
}
 
/* ── Animate ── */
@keyframes sec3FadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .sec3-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sec3-why  { padding: 50px 0 60px; }
  .sec3-head { margin-bottom: 36px; }
}
@media (max-width: 520px) {
  .sec3-grid { grid-template-columns: 1fr; gap: 14px; }
  .sec3-why  { padding: 40px 0 50px; }
  .sec3-card { padding: 22px 18px; }
  .sec3-card.go { transform: none !important; }
}

.sec4-programs {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  padding: 40px 0 70px;
  position: relative;
  overflow: hidden;
}
.sec4-programs::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: #b91c1c;
  opacity: 0.07;
  pointer-events: none;
}
 
.sec4-wrap {
  width: 92%; max-width: 1150px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
 
/* Header */
.sec4-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 16px;
}
.sec4-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900; color: #111;
  line-height: 1.15; letter-spacing: -0.02em;
}
.sec4-title span { color: #b91c1c; }
.sec4-sub {
  font-size: 13px; color: #888; margin-top: 6px;
}
 
/* Arrow buttons */
.sec4-arrows {
  display: flex; gap: 10px;
  flex-shrink: 0; padding-top: 6px;
}
.sec4-arr {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.15s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.sec4-arr:hover { background: #b91c1c; border-color: #b91c1c; }
.sec4-arr:hover svg { stroke: #fff; }
.sec4-arr:active { transform: scale(0.92); }
.sec4-arr svg { stroke: #555; transition: stroke 0.25s; }
.sec4-arr:disabled { opacity: 0.38; cursor: not-allowed; }
.sec4-arr:disabled:hover { background: #fff; border-color: #e0e0e0; }
.sec4-arr:disabled:hover svg { stroke: #555; }
 
/* Carousel container */
.sec4-outer {
  overflow: hidden;
  border-radius: 4px;
}
 
.sec4-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
 
/* Each card takes up (100% - gaps) / cards-per-view */
.s4-card {
  flex: 0 0 calc((100% - 44px) / 3); /* 3 cards: 2 gaps of 22px */
  background: #fff;
  border: 1.5px solid #f0e8e8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(185,28,28,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-width: 0;
}
.s4-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(185,28,28,0.13);
}
 
/* Image */
.s4-img-wrap {
  position: relative;
  overflow: hidden;
  height: 190px; flex-shrink: 0;
}
.s4-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.s4-card:hover .s4-img-wrap img { transform: scale(1.06); }
 
.s4-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff; border-radius: 6px;
  padding: 5px 12px;
  font-family: 'Montserrat', sans-serif;
}
 
/* Body */
.s4-body {
  padding: 18px 16px 16px;
  flex: 1; display: flex; flex-direction: column;
}
.s4-cat {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 7px;
}
.s4-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px; font-weight: 800;
  color: #111; margin-bottom: 9px; line-height: 1.3;
}
.s4-body p {
  font-size: 12px; color: #666;
  line-height: 1.7; flex: 1; margin: 0;
}
.s4-btn {
  display: block; width: 100%;
  margin-top: 16px;
  background: #b91c1c; color: #fff;
  border: none; border-radius: 8px;
  padding: 11px 0;
  font-size: 13px; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer; letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.s4-btn:hover {
  background: #8b1010;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139,16,16,0.3);
}
 
/* Dots */
.sec4-dots {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 28px;
}
.sec4-dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: #e0c8c8;
  cursor: pointer; border: none;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
  padding: 0;
}
.sec4-dot.active {
  background: #b91c1c;
  width: 24px; border-radius: 4px;
}
 
/* Responsive card widths */
@media (max-width: 860px) {
  .s4-card {
    flex: 0 0 calc((100% - 16px) / 2); /* 2 cards */
  }
  .sec4-track { gap: 16px; }
}
@media (max-width: 540px) {
  .s4-card {
    flex: 0 0 100%; /* 1 card */
  }
  .sec4-track { gap: 14px; }
  .sec4-programs { padding: 40px 0 50px; }
  .sec4-top { flex-wrap: wrap; }
}

.sec5-takeaways {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  padding: 0 0 0;
}
 
/* Heading */
.sec5-head {
  text-align: center;
  padding: 40px 0 36px;
}
.sec5-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900; color: #111;
  letter-spacing: -0.02em;
}
.sec5-head h2 span { color: #b91c1c; }
 
/* Ticker band */
.sec5-band {
 background: #8b1010;
padding: 28px 0;
overflow: hidden;
position: relative;
margin-top: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
 
/* Fade edges */
.sec5-band::before,
.sec5-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.sec5-band::before {
  left: 0;
  background: linear-gradient(to right, #8b1010, transparent);
}
.sec5-band::after {
  right: 0;
  background: linear-gradient(to left, #8b1010, transparent);
}
 
/* Scrolling track */
.sec5-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: sec5Scroll 50s linear infinite;
}
.sec5-track:hover { animation-play-state: paused; }
 
@keyframes sec5Scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
 
/* Each item */
.sec5-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 38px;
  border-right: 1.5px solid rgba(255,255,255,0.18);
  white-space: nowrap;
  flex-shrink: 0;
}
.sec5-item:last-child { border-right: none; }
 
/* Icon circle */
.sec5-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.sec5-item:hover .sec5-icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}
.sec5-icon svg {
  stroke: #fff;
  flex-shrink: 0;
}
 
/* Text */
.sec5-txt strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 800;
  color: #fff; line-height: 1.2;
}
.sec5-txt span {
  font-size: 11.5px; color: rgba(255,255,255,0.72);
  font-weight: 400; line-height: 1.4;
}
 
/* Mobile: slightly smaller */
@media (max-width: 540px) {
  .sec5-band { padding: 22px 0; }
  .sec5-item { padding: 0 24px; gap: 10px; }
  .sec5-icon { width: 38px; height: 38px; }
  .sec5-icon svg { width: 18px; height: 18px; }
  .sec5-txt strong { font-size: 12.5px; }
  .sec5-txt span   { font-size: 10.5px; }
  .sec5-head { padding: 40px 0 28px; }
  .sec5-band::before,
  .sec5-band::after { width: 60px; }
}

/* ================= SECTION STYLE ================= */

.knowledge-section{
    width:100%;
    padding:40px 20px;
    background:#f5f3f3;
    overflow:hidden;
    position:relative;
}

.knowledge-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

/* LEFT */
.knowledge-content{
    width:70%;
    background:#f7eeee;
    padding:45px;
    border-radius:20px;

    animation:fadeLeft 1s ease;
}

.knowledge-content h2{
  font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    color: #111;
    letter-spacing: -0.02em;
}

.knowledge-content h2 span{
    color:#8b0000;
}

.knowledge-content p{
      font-size: 13.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
    margin-top: 24px
}

/* RIGHT IMAGE */
.knowledge-image{
    width:30%;
    position:relative;

    animation:fadeRight 1s ease;
}

.knowledge-image img{
    width:100%;
    display:block;
    border-radius:20px;

    transition:0.5s ease;
}

.knowledge-image img:hover{
    transform:scale(1.03);
}

/* FLOAT ANIMATION */
.knowledge-image{
    animation:floatImage 4s ease-in-out infinite;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes floatImage{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:991px){

    .knowledge-container{
        flex-direction:column;
    }

    .knowledge-content,
    .knowledge-image{
        width:100%;
    }

    .knowledge-content{
        padding:30px;
    }

    .knowledge-content h2{
        font-size:38px;
    }
}

@media(max-width:576px){

    .knowledge-section{
        padding:60px 15px;
    }

    .knowledge-content{
        padding:25px 20px;
        border-radius:15px;
    }

    .knowledge-content h2{
        font-size:30px;
        line-height:1.2;
    }

    .knowledge-content p{
        /* font-size:14px; */
        line-height:1.8;
    }

    .knowledge-image img{
        border-radius:15px;
    }
}

/* ================= KEYWORDS SECTION ================= */

.keywords-section{
    width:100%;
    padding:40px 20px 40px;
    background:#f3f3f3;
    overflow:hidden;
    position:relative;
}

/* TITLE */
.keywords-title{
    text-align:center;
    margin-bottom:35px;
}

.keywords-title h2{
       font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: #111;
    letter-spacing: -0.02em;
}


/* MAIN BOX */
.keywords-wrapper{
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:stretch;

    background:#142033;
    border-radius:6px;
    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,0.12);

    animation:zoomIn 1s ease;
    transition:0.4s ease;
}

.keywords-wrapper:hover{
    transform:translateY(-4px);
}

/* LEFT CONTENT */
.keywords-content{
    width:45%;
    padding:40px 28px;
    display:flex;
    align-items:center;

    background:linear-gradient(
        135deg,
        #1b2434,
        #101827
    );
}

.keywords-content p{
    color:#d8d8d8;
    font-size:13px;
    line-height:2;
    margin:0;
    font-weight:400;
}

/* RIGHT IMAGE */
.keywords-image{
    width:55%;
    position:relative;
    overflow:hidden;
}

.keywords-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:0.7s ease;
}

/* IMAGE HOVER EFFECT */
.keywords-wrapper:hover .keywords-image img{
    transform:scale(1.06);
}

/* LIGHT OVERLAY EFFECT */
.keywords-image::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.08),
        rgba(255,255,255,0.05)
    );

    pointer-events:none;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(0.92);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .keywords-wrapper{
        flex-direction:column;
    }

    .keywords-content,
    .keywords-image{
        width:100%;
    }

    .keywords-image{
        height:350px;
    }

    .keywords-title h2{
        font-size:42px;
    }
}

@media(max-width:576px){

    .keywords-section{
        padding:55px 15px 30px;
    }

    .keywords-title{
        margin-bottom:25px;
    }

    .keywords-title h2{
        font-size:34px;
    }

    .keywords-content{
        padding:25px 20px;
    }

    .keywords-content p{
        font-size:13px;
        line-height:1.9;
        text-align:left;
    }

    .keywords-image{
        height:240px;
    }
}

/* ================= FOOTER SECTION ================= */

.custom-footer{
    width:100%;
    background:var(--red-btn);
    padding:35px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;

    border-top:1px solid #e5e5e5;
}

/* CONTAINER */
.footer-container{
    max-width:1200px;
    margin:auto;

    animation:footerFade 1s ease;
}

/* COPYRIGHT */
.footer-copy{
    font-size:14px;
    color:#fff;
    font-weight:600;
    margin-bottom:10px;
}

/* TITLE */
.custom-footer h3{
    font-size:22px;
    color:#fff;
    margin-bottom:10px;
    font-weight:700;

    transition:0.4s ease;
}

.custom-footer h3:hover{
    color:#fff;
}

/* ADDRESS */
.footer-address{
    font-size:14px;
    color:#666;
    margin-bottom:12px;
    line-height:1.7;
}

/* PHONE */
.footer-phone{
    display:inline-block;
    font-size:15px;
    color:#8b0000;
    font-weight:700;
    text-decoration:none;

    transition:0.4s ease;
}

.footer-phone:hover{
    transform:translateY(-2px);
    color:#000;
}

/* ANIMATION */
@keyframes footerFade{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:576px){

    .custom-footer{
        padding:30px 15px;
    }

    .footer-copy{
        font-size:13px;
    }

    .custom-footer h3{
        font-size:18px;
        line-height:1.5;
    }

    .footer-address{
        font-size:13px;
    }

    .footer-phone{
        font-size:14px;
    }
}


/* ================= POPUP BUTTON ================= */

.open-popup-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:999;

    background:linear-gradient(135deg,#b90f14,#ef2328);
    color:#fff;

    border:none;
    outline:none;

    padding:15px 28px;
    border-radius:50px;

    font-size:16px;
    font-weight:700;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,0.2);

    transition:0.4s ease;

    animation:pulseBtn 2s infinite;
}

.open-popup-btn:hover{
    transform:translateY(-3px);
}

/* ================= OVERLAY ================= */

.popup-overlay{
    position:fixed;
    inset:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.7);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:0.4s ease;
}

/* ACTIVE */
.popup-overlay.active{
    opacity:1;
    visibility:visible;
}

/* ================= POPUP BOX ================= */

.popup-form-wrap{
    width:100%;
    max-width:339px;

    position:relative;

    transform:translateY(50px) scale(0.9);

    transition:0.5s ease;
}

/* ACTIVE ANIMATION */
.popup-overlay.active .popup-form-wrap{
    transform:translateY(0) scale(1);
}

/* ================= CLOSE BUTTON ================= */

.popup-close{
    position:absolute;
    top:-15px;
    right:-15px;

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:#fff;
    color:#000;

    font-size:28px;
    font-weight:700;

    cursor:pointer;

    z-index:99;

    box-shadow:0 5px 20px rgba(0,0,0,0.2);

    transition:0.3s ease;
}

.popup-close:hover{
    transform:rotate(90deg);
}

/* ================= MOBILE ================= */

@media(max-width:576px){

    .popup-form-wrap{
        max-width:85%;
    }

    .open-popup-btn{
        right:15px;
        bottom:15px;

        padding:13px 22px;
        font-size:14px;
    }

    .popup-close{
        width:36px;
        height:36px;

        font-size:24px;
    }

}

/* ================= BUTTON PULSE ================= */

@keyframes pulseBtn{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.05);
    }

    100%{
        transform:scale(1);
    }

}