
    /* ============================================
   PODAR BRAND TOKENS
   Inspired by actual Podar Education Network identity
   ============================================ */
    :root {
      /* Brand palette */
      --podar-navy: #0E2C5C;
      --podar-navy-deep: #091F44;
      --podar-navy-soft: #1A407F;
      --podar-red: #D92329;
      --podar-red-soft: #E84B50;
      --podar-yellow: #F5B82E;
      --podar-yellow-soft: #FFD466;

      /* Neutrals */
      --bg: #FFFFFF;
      --bg-tint: #F4F7FB;
      --bg-cream: #FFF8EC;
      --line: #E2E8F0;
      --line-soft: #EFF3F8;
      --ink: #0F1A33;
      --ink-soft: #2D3955;
      --muted: #5B6680;
      --muted-soft: #8995AC;

      /* Effects */
      --shadow-sm: 0 2px 8px rgba(14, 44, 92, 0.06);
      --shadow-md: 0 8px 24px rgba(14, 44, 92, 0.08);
      --shadow-lg: 0 20px 48px rgba(14, 44, 92, 0.12);
      --shadow-xl: 0 30px 70px rgba(14, 44, 92, 0.18);
      --radius: 12px;
      --radius-lg: 18px;
      --radius-sm: 8px;

      /* Typography */
      --sans: 'Poppins', -apple-system, system-ui, sans-serif;
      --serif: 'Lora', Georgia, serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.6;
      color: var(--ink);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ::selection {
      background: var(--podar-yellow);
      color: var(--podar-navy);
    }

    .wrap {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .wrap-narrow {
      max-width: 980px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ============================================
   TYPOGRAPHY HIERARCHY (academic, clean)
   ============================================ */
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--sans);
      font-weight: 700;
      letter-spacing: -0.015em;
      line-height: 1.18;
      color: var(--podar-navy);
    }

    h1 {
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 700;
    }

    h2 {
      font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    }

    h3 {
      font-size: clamp(1.15rem, 1.8vw, 1.4rem);
      font-weight: 600;
    }

    h4 {
      font-size: 1.05rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-soft);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--podar-red);
      background: rgba(217, 35, 41, 0.08);
      padding: 7px 14px;
      border-radius: 100px;
      border: 1px solid rgba(217, 35, 41, 0.16);
    }

    .eyebrow.eyebrow-light {
      color: var(--podar-yellow);
      background: rgba(245, 184, 46, 0.12);
      border-color: rgba(245, 184, 46, 0.25);
    }

    .section-title-emph {
      color: var(--podar-red);
      font-style: italic;
      font-family: var(--serif);
      font-weight: 500;
    }

    .lede {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 640px;
    }

    /* ============================================
   BUTTONS
   ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: 100px;
      font-family: var(--sans);
      font-weight: 600;
      font-size: 0.92rem;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: transform 0.25s cubic-bezier(.2, .8, .2, 1), box-shadow 0.25s, background 0.25s, color 0.25s;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--podar-red);
      color: #fff;
      box-shadow: 0 6px 20px rgba(217, 35, 41, 0.25);
    }

    .btn-primary:hover {
      background: #B91D23;
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(217, 35, 41, 0.35);
    }

    .btn-navy {
      background: var(--podar-navy);
      color: #fff;
    }

    .btn-navy:hover {
      background: var(--podar-navy-deep);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--podar-navy);
      border-color: var(--podar-navy);
    }

    .btn-outline:hover {
      background: var(--podar-navy);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-outline-white {
      background: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, 0.4);
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: #fff;
    }

    .btn-yellow {
      background: var(--podar-yellow);
      color: var(--podar-navy);
      box-shadow: 0 6px 20px rgba(245, 184, 46, 0.3);
    }

    .btn-yellow:hover {
      background: var(--podar-yellow-soft);
      transform: translateY(-2px);
    }

    .btn .arrow {
      transition: transform 0.25s;
    }

    .btn:hover .arrow {
      transform: translateX(3px);
    }

    /* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
    .announce {
      background: var(--podar-navy-deep);
      color: rgba(255, 255, 255, 0.92);
      padding: 9px 0;
      font-size: 0.84rem;
      font-weight: 500;
      border-bottom: 2px solid var(--podar-red);
    }

    .announce .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
    }

    .announce-left {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .announce-pulse {
      width: 7px;
      height: 7px;
      background: var(--podar-yellow);
      border-radius: 50%;
      animation: pulse 1.6s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.4);
      }
    }

    .announce-right {
      display: flex;
      gap: 18px;
      align-items: center;
      font-size: 0.8rem;
    }

    .announce-right a {
      display: flex;
      align-items: center;
      gap: 6px;
      opacity: 0.9;
    }

    .announce-right a:hover {
      opacity: 1;
      color: var(--podar-yellow);
    }

    @media (max-width: 760px) {
      .announce-right {
        display: none;
      }
    }

    /* ============================================
   HEADER
   ============================================ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }

    /* Podar-style logo: navy badge with red accent */
    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-mark {
    width: 134px;
    height: 52px;
    background: var(--podar-navy);
    border-radius: 8px;
    display: grid;
    place-items: center;
    position: relative;
    flex-shrink: 0;
    padding: 0 10px;
}
    .brand-mark::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 8px;
      /* border: 2px solid var(--podar-red); */
      transform: scale(0.86);
    }

    .brand-mark span {
      color: #fff;
      font-family: var(--sans);
      font-weight: 800;
      font-size: 1.5rem;
      letter-spacing: -0.04em;
    }

    .brand-mark span em {
      color: var(--podar-yellow);
      font-style: normal;
    }

    .brand-text strong {
      display: block;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--podar-navy);
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .brand-text span {
      font-size: 0.7rem;
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
    }

    .brand-text span b {
      color: var(--podar-red);
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      color: var(--ink-soft);
      font-size: 0.92rem;
      font-weight: 500;
      position: relative;
      padding: 6px 0;
    }

    .nav-links a:hover {
      color: var(--podar-navy);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--podar-red);
      transition: width 0.25s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
    }

    @media (max-width: 1020px) {
      .nav-links {
        display: none;
      }

      .menu-btn {
        display: block;
      }
    }

    /* ============================================
   HERO — CLAT-inspired with form on right
   ============================================ */
    .hero {
      position: relative;
      background: linear-gradient(135deg, var(--podar-navy-deep) 0%, var(--podar-navy) 50%, var(--podar-navy-soft) 100%);
      padding: 70px 0 90px;
      color: #fff;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(245, 184, 46, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(217, 35, 41, 0.10) 0%, transparent 40%);
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M20 0v40M0 20h40' stroke='rgba(255,255,255,0.04)' stroke-width='1'/></svg>");
    }

    .hero .wrap {
      position: relative;
      z-index: 2;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 440px;
      gap: 70px;
      align-items: center;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 184, 46, 0.14);
      border: 1px solid rgba(245, 184, 46, 0.35);
      padding: 7px 14px;
      border-radius: 100px;
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--podar-yellow);
    }

    .hero-pill.red {
      background: rgba(217, 35, 41, 0.18);
      border-color: rgba(217, 35, 41, 0.4);
      color: #FFCBCD;
    }

    .hero-pill .dot {
      width: 7px;
      height: 7px;
      background: var(--podar-yellow);
      border-radius: 50%;
      animation: pulse 1.6s infinite;
    }

    .hero-pill.red .dot {
      background: var(--podar-red-soft);
    }

    .hero h1 {
      color: #fff;
      margin-bottom: 22px;
    }

    .hero h1 .accent {
      font-family: var(--serif);
      font-weight: 500;
      font-style: italic;
      color: var(--podar-yellow);
    }

    .hero-sub {
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.06rem;
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 36px;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, auto);
      gap: 36px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-stat .num {
      font-family: var(--sans);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--podar-yellow);
      line-height: 1;
      display: block;
    }

    .hero-stat .lbl {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 6px;
      font-weight: 400;
    }

    /* HERO LEAD FORM (CLAT-inspired) */
    .hero-form {
      background: #fff;
      color: var(--ink);
      border-radius: var(--radius-lg);
      padding: 32px 30px 28px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
      position: relative;
    }

    .hero-form::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -15px;
    height: 100%;
    padding-bottom: 26px;
    bottom: 0;
    border-radius:20px;
      background: var(--podar-yellow);
      /* border-radius: var(--radius-lg) var(--radius-lg) 0 0; */
      z-index: -1;
    }


    .form-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #FEF3C7;
      border: 1px solid var(--podar-yellow);
      color: #92560B;
      padding: 5px 12px;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .hero-form h3 {
      font-size: 1.35rem;
      margin-bottom: 4px;
    }

    .hero-form>p {
      font-size: 0.86rem;
      color: var(--muted);
      margin-bottom: 22px;
    }

    .field {
      margin-bottom: 12px;
    }

    .field label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--podar-navy);
      margin-bottom: 5px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .field input,
    .field select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--line);
      border-radius: var(--radius-sm);
      font-family: var(--sans);
      font-size: 0.92rem;
      color: var(--ink);
      background: #FAFBFD;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    }

    .field input:focus,
    .field select:focus {
      outline: none;
      border-color: var(--podar-red);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(217, 35, 41, 0.1);
    }

    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .hero-form .btn {
      width: 100%;
      margin-top: 8px;
      padding: 14px;
      font-size: 0.95rem;
    }

    .form-foot {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      font-size: 0.72rem;
      color: var(--muted);
      justify-content: center;
    }

    .form-foot svg {
      color: #16A34A;
    }

    @media (max-width: 1020px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-stats {
        grid-template-columns: repeat(2, auto);
        gap: 28px;
      }
    }

    /* ============================================
   TRUST STRIP
   ============================================ */
    .trust-strip {
      background: var(--podar-navy-deep);
      padding: 22px 0;
      border-bottom: 3px solid var(--podar-red);
    }

    .trust-strip .wrap {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: center;
    }

    .ts-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.86rem;
      padding: 0 14px;
      border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .ts-item:first-child {
      border-left: none;
    }

    .ts-item .ts-icon {
      width: 36px;
      height: 36px;
      background: rgba(245, 184, 46, 0.14);
      border-radius: 8px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      color: var(--podar-yellow);
    }

    .ts-item strong {
      display: block;
      color: #fff;
      font-weight: 600;
      font-size: 0.94rem;
    }

    .ts-item span {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.6);
    }

    @media (max-width: 880px) {
      .trust-strip .wrap {
        grid-template-columns: repeat(2, 1fr);
      }

      .ts-item {
        border-left: none;
        padding: 0;
      }
    }

    /* ============================================
   SECTION COMMON
   ============================================ */
    section {
      padding: 90px 0;
      position: relative;
    }

    .section-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 60px;
    }

    .section-head .eyebrow {
      margin-bottom: 18px;
    }

    .section-head h2 {
      margin-bottom: 14px;
    }

    .section-head p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 580px;
      margin: 0 auto;
    }

    @media (max-width: 760px) {
      section {
        padding: 64px 0;
      }

      .section-head {
        margin-bottom: 44px;
      }
    }

    /* ============================================
   QUICK FEATURES (icon strip)
   ============================================ */
    .quick-features {
      padding: 60px 0;
      background: var(--bg-tint);
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
    }

    .qf-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }

    .qf-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px 18px;
      text-align: center;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }

    .qf-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: rgba(217, 35, 41, 0.2);
    }

    .qf-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, rgba(14, 44, 92, 0.08), rgba(217, 35, 41, 0.08));
      border-radius: 10px;
      display: grid;
      place-items: center;
      margin: 0 auto 12px;
      color: var(--podar-navy);
    }

    .qf-card h4 {
      font-size: 0.86rem;
      color: var(--podar-navy);
      margin-bottom: 4px;
      font-weight: 600;
    }

    .qf-card p {
      font-size: 0.74rem;
      color: var(--muted);
      line-height: 1.4;
    }

    @media (max-width: 980px) {
      .qf-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 560px) {
      .qf-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ============================================
   WHY CHOOSE US
   ============================================ */
    .why-section {
      background: #fff;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .why-visual {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .why-visual img {
      width: 100%;
      height: 540px;
      object-fit: cover;
    }

    .why-floater {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      border-radius: var(--radius);
      padding: 22px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
    }

    .wf-item {
      text-align: center;
      border-right: 1px solid var(--line);
    }

    .wf-item:last-child {
      border-right: none;
    }

    .wf-num {
      font-family: var(--sans);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--podar-red);
      line-height: 1;
      display: block;
    }

    .wf-lbl {
      font-size: 0.74rem;
      color: var(--muted);
      margin-top: 4px;
    }

    .why-content .eyebrow {
      margin-bottom: 18px;
    }

    .why-content h2 {
      margin-bottom: 18px;
    }

    .why-content>p {
      margin-bottom: 28px;
    }

    .why-points {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .why-point {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .why-point-icon {
      width: 40px;
      height: 40px;
      background: rgba(217, 35, 41, 0.08);
      border-radius: 10px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      color: var(--podar-red);
    }

    .why-point-text strong {
      display: block;
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--podar-navy);
      margin-bottom: 3px;
    }

    .why-point-text span {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.55;
    }

    @media (max-width: 980px) {
      .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .why-visual img {
        height: 380px;
      }
    }

    /* ============================================
   PROGRAMS
   ============================================ */
    .programs-section {
      background: var(--bg-tint);
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
     display:flex;
     justify-content:center;
    }

    .program {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      display: flex;
      flex-direction: column;
    }

    .program:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--podar-red);
    }

    .program-head {
      background: linear-gradient(135deg, var(--podar-navy), var(--podar-navy-soft));
      padding: 22px 22px 20px;
      position: relative;
      color: #fff;
    }

    .program-head::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--podar-red);
    }

    .p-grade {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--podar-yellow);
      margin-bottom: 6px;
    }

    .p-name {
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      letter-spacing: -0.01em;
    }

    .p-age {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .program-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .program-body p {
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 18px;
    }

    .p-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 22px;
    }

    .p-features li {
      font-size: 0.84rem;
      color: var(--ink-soft);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .p-features svg {
      color: var(--podar-red);
      flex-shrink: 0;
    }

    .program-link {
      margin-top: auto;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--podar-navy);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding-top: 14px;
      border-top: 1px solid var(--line-soft);
    }

    .program-link:hover {
      color: var(--podar-red);
    }

    @media (max-width: 980px) {
      .programs-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 560px) {
      .programs-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================
   IMAGE STRIP — student activities
   (single strategic image moment)
   ============================================ */
    .activity-strip {
      position: relative;
      height: 360px;
      overflow: hidden;
      background: var(--podar-navy);
    }

    .activity-strip img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.55;
    }

    .activity-strip::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, var(--podar-navy-deep) 0%, transparent 50%, rgba(14, 44, 92, 0.7) 100%);
    }

    .activity-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
      color: #fff;
    }

    .activity-content .wrap {
      width: 100%;
    }

    .activity-content h2 {
      color: #fff;
      max-width: 580px;
      margin-bottom: 14px;
    }

    .activity-content h2 .accent {
      color: var(--podar-yellow);
      font-style: italic;
      font-family: var(--serif);
      font-weight: 500;
    }

    .activity-content p {
      max-width: 520px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
    }

    /* ============================================
   FACILITIES (clean grid with small images)
   ============================================ */
    .facilities-section {
      background: #fff;
    }

    .facilities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .facility {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
    }

    .facility:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .facility-img {
      height: 200px;
      position: relative;
      overflow: hidden;
    }

    .facility-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }

    .facility:hover .facility-img img {
      transform: scale(1.05);
    }

    .facility-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(14, 44, 92, 0.5));
    }

    .facility-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(255, 255, 255, 0.95);
      color: var(--podar-navy);
      padding: 5px 12px;
      border-radius: 100px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      z-index: 2;
    }

    .facility-body {
      padding: 22px;
      flex: 1;
    }

    .facility-body h3 {
      font-size: 1.1rem;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .facility-body p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
    }

    @media (max-width: 980px) {
      .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .facilities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================
   ACHIEVEMENTS (numbers section)
   ============================================ */
    .achievements {
      position: relative;
      padding: 100px 0;
      background: var(--podar-navy-deep);
      color: #fff;
      overflow: hidden;
    }

    .achievements::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("https://images.unsplash.com/photo-1523580494863-6f3031224c94?auto=format&fit=crop&w=1920&q=80");
      background-size: cover;
      background-position: center;
      opacity: 0.13;
    }

    .achievements::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(9, 31, 68, 0.92), rgba(14, 44, 92, 0.95));
    }

    .achievements .wrap {
      position: relative;
      z-index: 2;
    }

    .achievements .section-head h2 {
      color: #fff;
    }

    .achievements .section-head h2 .accent {
      color: var(--podar-yellow);
      font-style: italic;
      font-family: var(--serif);
      font-weight: 500;
    }

    .achievements .section-head p {
      color: rgba(255, 255, 255, 0.7);
    }

    .ach-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .ach {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-top: 3px solid var(--podar-yellow);
      border-radius: var(--radius);
      padding: 28px 22px;
      text-align: center;
      transition: background 0.25s, border-color 0.25s;
    }

    .ach:hover {
      background: rgba(245, 184, 46, 0.06);
      border-top-color: var(--podar-red);
    }

    .ach-num {
      font-family: var(--sans);
      font-size: clamp(2.2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--podar-yellow);
      line-height: 1;
      display: block;
      margin-bottom: 12px;
    }

    .ach-num sup {
      font-size: 0.5em;
      vertical-align: top;
      margin-left: 2px;
    }

    .ach p {
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.9rem;
      line-height: 1.5;
      font-weight: 500;
    }

    @media (max-width: 760px) {
      .ach-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ============================================
   FACULTY
   ============================================ */
    .faculty-section {
      background: var(--bg-tint);
    }

    .faculty-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .faculty {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 26px 22px;
      text-align: center;
      border: 1px solid var(--line);
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .faculty:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .faculty-photo {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 14px;
      border: 3px solid var(--podar-yellow);
    }

    .faculty h4 {
      font-size: 1rem;
      color: var(--podar-navy);
      margin-bottom: 4px;
      font-weight: 600;
    }

    .faculty .role {
      font-size: 0.78rem;
      color: var(--podar-red);
      margin-bottom: 14px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 500;
    }

    .faculty p {
      font-size: 0.84rem;
      color: var(--muted);
      line-height: 1.55;
    }

    @media (max-width: 980px) {
      .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ============================================
   TESTIMONIALS
   ============================================ */
    .testimonials-section {
      background: #fff;
    }

    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .test {
      background: var(--bg-tint);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 30px 26px 26px;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .test::before {
      content: '"';
      position: absolute;
      top: 8px;
      right: 22px;
      font-family: var(--serif);
      font-size: 4.5rem;
      color: var(--podar-red);
      opacity: 0.2;
      line-height: 1;
    }

    .test-stars {
      color: var(--podar-yellow);
      font-size: 0.95rem;
      margin-bottom: 14px;
      letter-spacing: 1px;
    }

    .test p {
      font-size: 0.96rem;
      color: var(--ink-soft);
      line-height: 1.65;
      margin-bottom: 22px;
      font-weight: 400;
    }

    .test-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      margin-top: auto;
    }

    .test-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
    }

    .test-author strong {
      display: block;
      font-size: 0.9rem;
      color: var(--podar-navy);
      font-weight: 600;
    }

    .test-author span {
      font-size: 0.78rem;
      color: var(--muted);
    }

    @media (max-width: 980px) {
      .test-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================
   CAMPUS TOUR CTA
   ============================================ */
    .tour-cta {
      position: relative;
      padding: 0;
      margin: 0;
      overflow: hidden;
      height: 480px;
    }

    .tour-cta img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .tour-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(9, 31, 68, 0.94) 0%, rgba(14, 44, 92, 0.78) 50%, rgba(14, 44, 92, 0.4) 100%);
    }

    .tour-content {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      z-index: 2;
    }

    .tour-content .wrap {
      width: 100%;
    }

    .tour-content h2 {
      color: #fff;
      max-width: 600px;
      margin-bottom: 18px;
    }

    .tour-content h2 .accent {
      color: var(--podar-yellow);
      font-style: italic;
      font-family: var(--serif);
      font-weight: 500;
    }

    .tour-content p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.05rem;
      max-width: 560px;
      margin-bottom: 32px;
    }

    .tour-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ============================================
   GALLERY
   ============================================ */
    .gallery-section {
      background: var(--bg-tint);
    }

    .gallery-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 32px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .g-tab {
      background: #fff;
      border: 1px solid var(--line);
      color: var(--ink-soft);
      padding: 10px 20px;
      border-radius: 100px;
      font-family: var(--sans);
      font-size: 0.84rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.25s;
    }

    .g-tab.active {
      background: var(--podar-navy);
      color: #fff;
      border-color: var(--podar-navy);
    }

    .g-tab:hover:not(.active) {
      border-color: var(--podar-red);
      color: var(--podar-red);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .g-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4 / 3;
      background: var(--line);
    }

    .g-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }

    .g-item:hover img {
      transform: scale(1.06);
    }

    .g-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(14, 44, 92, 0.85));
      opacity: 0;
      transition: opacity 0.3s;
    }

    .g-item:hover::after {
      opacity: 1;
    }

    .g-cap {
      position: absolute;
      bottom: 14px;
      left: 14px;
      color: #fff;
      z-index: 2;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .g-item:hover .g-cap {
      opacity: 1;
      transform: translateY(0);
    }

    .g-cap strong {
      display: block;
      font-size: 0.92rem;
      font-weight: 600;
    }

    .g-cap span {
      font-size: 0.74rem;
      color: var(--podar-yellow);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    @media (max-width: 880px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ============================================
   ADMISSION PROCESS
   ============================================ */
    .process-section {
      background: #fff;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      margin-top: 40px;
    }

    .process-grid::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: repeating-linear-gradient(to right, var(--podar-yellow) 0 8px, transparent 8px 16px);
      z-index: 0;
    }

    .step {
      text-align: center;
      padding: 0 18px;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 64px;
      height: 64px;
      margin: 0 auto 22px;
      background: #fff;
      border: 2px solid var(--podar-red);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: var(--sans);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--podar-red);
      position: relative;
    }

    .step-num::before {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      background: rgba(217, 35, 41, 0.08);
      z-index: -1;
    }

    .step h4 {
      font-size: 1.05rem;
      color: var(--podar-navy);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .step p {
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.55;
    }

    @media (max-width: 880px) {
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
      }

      .process-grid::before {
        display: none;
      }
    }

    /* ============================================
   FAQ
   ============================================ */
    .faq-section {
      background: var(--bg-tint);
      padding-bottom: 100px;
    }

    .faq-list {
      max-width: 880px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .faq-item.open {
      border-color: var(--podar-red);
      box-shadow: var(--shadow-sm);
    }

    .faq-q {
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.98rem;
      color: var(--podar-navy);
    }

    .faq-q::after {
      content: '+';
      font-size: 1.4rem;
      color: var(--podar-red);
      font-weight: 300;
      transition: transform 0.25s;
      margin-left: 14px;
    }

    .faq-item.open .faq-q::after {
      content: '−';
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 22px;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 22px 20px;
    }

    .faq-a p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.6;
      border-top: 1px solid var(--line);
      padding-top: 16px;
    }

    /* ============================================
   FINAL LEAD FORM
   ============================================ */
    .final-cta {
      background: linear-gradient(135deg, var(--podar-navy-deep) 0%, var(--podar-navy) 50%, var(--podar-navy-soft) 100%);
      color: #fff;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 80% 20%, rgba(245, 184, 46, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(217, 35, 41, 0.1) 0%, transparent 40%);
    }

    .final-cta .wrap {
      position: relative;
      z-index: 2;
    }

    .final-grid {
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 70px;
      align-items: center;
    }

    .final-content .eyebrow {
      background: rgba(245, 184, 46, 0.15);
      color: var(--podar-yellow);
      border-color: rgba(245, 184, 46, 0.3);
      margin-bottom: 18px;
    }

    .final-content h2 {
      color: #fff;
      margin-bottom: 18px;
    }

    .final-content h2 .accent {
      color: var(--podar-yellow);
      font-style: italic;
      font-family: var(--serif);
      font-weight: 500;
    }

    .final-content>p {
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.02rem;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 480px;
    }

    .final-promises {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-bottom: 28px;
    }

    .final-promises li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .final-promises li svg {
      color: var(--podar-yellow);
      flex-shrink: 0;
      background: rgba(245, 184, 46, 0.12);
      padding: 6px;
      border-radius: 50%;
      width: 28px;
      height: 28px;
    }

    .final-contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .final-contact a {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .final-contact a:hover {
      color: var(--podar-yellow);
    }

    .final-contact a svg {
      color: var(--podar-yellow);
    }

    @media (max-width: 980px) {
      .final-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    /* ============================================
   FOOTER
   ============================================ */
    footer {
      background: var(--podar-navy-deep);
      color: rgba(255, 255, 255, 0.72);
      padding: 70px 0 28px;
      font-size: 0.88rem;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .foot-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .foot-brand .brand-text strong {
      color: #fff;
    }

    .foot-brand .brand-text span {
      color: rgba(255, 255, 255, 0.55);
    }

    .foot-grid>div>p {
      font-size: 0.86rem;
      line-height: 1.65;
      max-width: 320px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 22px;
    }

    .foot-col h4 {
      font-size: 0.82rem;
      color: #fff;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 22px;
      font-weight: 600;
    }

    .foot-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .foot-col a {
      color: rgba(255, 255, 255, 0.65);
      transition: color 0.2s;
    }

    .foot-col a:hover {
      color: var(--podar-yellow);
    }

    .social {
      display: flex;
      gap: 10px;
      margin-top: 14px;
    }

    .social a {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.7);
      transition: all 0.25s;
    }

    .social a:hover {
      background: var(--podar-red);
      color: #fff;
      transform: translateY(-2px);
    }

    .foot-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.5);
    }

    @media (max-width: 880px) {
      .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
    }

    @media (max-width: 560px) {
      .foot-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================
   FLOATING WHATSAPP / STICKY MOBILE CTA
   ============================================ */
    .float-wa {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      z-index: 90;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
      transition: transform 0.25s;
    }

    .float-wa:hover {
      transform: scale(1.08);
    }

    .mobile-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid var(--line);
      padding: 12px 16px;
      z-index: 90;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    }

    .mobile-bar a {
      flex: 1;
      text-align: center;
      padding: 10px;
      font-size: 0.84rem;
      font-weight: 600;
      border-radius: 8px;
    }

    .mobile-bar .mb-call {
      color: var(--podar-navy);
      border: 1.5px solid var(--podar-navy);
    }

    .mobile-bar .mb-apply {
      background: var(--podar-red);
      color: #fff;
    }

    @media (max-width: 600px) {
      .mobile-bar {
        display: flex;
      }

      .float-wa {
        bottom: 84px;
      }

      body {
        padding-bottom: 70px;
      }
    }

    /* ============================================
   SCROLL REVEAL
   ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    /* ============================================
   IMAGE SLIDER
   ============================================ */
    .slider-container {
      width: 100%;
      margin: 0 auto;
    }

    .slider-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: #f0f0f0;
    }

    .slider {
      display: flex;
      width: 100%;
      height: 500px;
      transition: transform 0.5s ease-in-out;
    }

    .slider-slide {
      min-width: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(14, 44, 92, 0.7);
      color: white;
      border: none;
      font-size: 24px;
      padding: 12px 16px;
      cursor: pointer;
      border-radius: 4px;
      transition: background 0.3s ease;
      z-index: 10;
    }

    .slider-btn:hover {
      background: rgba(14, 44, 92, 0.95);
    }

    .slider-prev {
      left: 16px;
    }

    .slider-next {
      right: 16px;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 18px;
    }

    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--line);
      border: none;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .slider-dot.active {
      background: var(--podar-red);
    }
 .footer-logo img {
    width: 65%;
    height: 100%;}
    @media (max-width: 768px) {
      .slider {
        height: 300px;
      }

      .slider-btn {
        padding: 8px 12px;
        font-size: 18px;
      }

      .slider-prev {
        left: 8px;
      }

      .slider-next {
        right: 8px;
      }
    }



.popup-overlay {
  display: none;
  position: fixed;
  top: 20px; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.popup-overlay.active { display: flex;z-index: 3;}
.popup-content {
  position: relative;
  width: 80%; max-width: 600px;
}
#videoPopup iframe { width: 100%; height: 460px; }
#videoPopup .close-btn {
  position: absolute; top: 0px; right: 0;
  color: #fff; font-size: 30px; cursor: pointer;
}

.form-messages{display: none;}
.form-messages.success , .form-messages.error{display: block;text-align: center;padding: 10px 0;}
.form-messages.success{color: green;}
.form-messages.error{color: red;}
.add-form-messages{display: none;}
.add-form-messages.success , .add-form-messages.error{display: block;text-align: center;padding: 10px 0;}
.add-form-messages.success{color: green;}
.add-form-messages.error{color: red;}
.thank-you-page{padding: 60px 0;}
.thank-you-page .thank-you-wrap{display: flex;flex-direction: column;justify-content: center;align-items: center;}
.thank-you-page .thank-you-wrap .heading{padding-bottom: 12px;}
#admission_form .honeypot-field{
    display:none;
}

#contact_form .honeypot-field{
    display:none;
}


@media(max-width:1024px)
{
  #videoPopup iframe {
      width: 100%;
      height: 280px;
  }
}
@media(max-width: 600px)
{
  .thank-you-page {
      padding: 50px 0;
  }
  .popup-content {
    width: 80%; max-width: 100%;
  }
    
}
