:root {
    --back-font:white;
    --primary: #0f172a;
    --primary1:rgb(101, 94, 94);
    --secondary: #e11d48;
    --accent: #f97316;
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --secondary-light: #fff1f2;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; }
  h1,h2,h3,h4,h5 { font-family: 'Rajdhani', sans-serif; line-height: 1.2; }

  /* Layout */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }

  /* Hero gradient */
  .hero-grad { background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%); }

  /* ===== NAVBAR — solid white, red glow only ===== */
  nav {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(225, 29, 72, 0.22), 0 1px 0 rgba(225,29,72,0.12);
    border-bottom: 2px solid rgba(225, 29, 72, 0.15);
  }

  /* ===== MODALS ===== */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  .modal-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    animation: modalIn 0.25s ease;
  }
  .modal-box.modal-sm { max-width: 440px; }
  .modal-box.modal-lg { max-width: 860px; }
  @keyframes modalIn { from { transform: scale(0.94); opacity:0; } to { transform: scale(1); opacity:1; } }
  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border);
  }
  .modal-header h3 { font-family:'Rajdhani',sans-serif; font-size:1.2rem; font-weight:700; text-transform:uppercase; }
  .modal-close { width:32px; height:32px; border-radius:50%; background:var(--bg); border:none; font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition: background 0.2s; }
  .modal-close:hover { background: var(--secondary-light); color: var(--secondary); }
  .modal-body { padding: 22px 24px; }
  .modal-footer { padding: 16px 24px; border-top:1px solid var(--border); display:flex; gap:10px; justify-content:flex-end; }
  .pdf-preview-frame { width:100%; height:420px; border:1px solid var(--border); border-radius:10px; }
  #syllabusCanvas { width:100%; border:1px solid var(--border); border-radius:10px; display:block; background:#f1f5f9; }
  .pdf-loading { text-align:center; padding:60px 20px; color:var(--muted); font-size:0.9rem; }
  .payment-option { display:flex; align-items:center; gap:16px; padding:18px 20px; background:var(--card); border-radius:12px; box-shadow:0 2px 10px rgba(0,0,0,0.07); cursor:pointer; border:2px solid transparent; transition:all 0.2s; }
  .payment-option:hover, .payment-option.selected { border-color:var(--secondary); background:var(--secondary-light); }
  .payment-icon { font-size:2rem; flex-shrink:0; }
  .payment-amount { font-family:'Rajdhani',sans-serif; font-size:1.4rem; font-weight:700; color:var(--secondary); }
  .cert-modal-jobs { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
  @media(max-width:640px) { .cert-modal-jobs { grid-template-columns:1fr; } }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
  .nav-logo { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; gap: 10px; cursor: pointer; }
  .nav-logo span { color: var(--secondary); }
  .nav-links { display: flex; gap: 4px; align-items: center; }
  .nav-links a { color: var(--text); text-decoration: none; font-size: 0.9rem; font-weight: 600; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; cursor: pointer; }
  .nav-links a:hover, .nav-links a.active { background: var(--secondary); color: #fff; }
  .hamburger { display: none; background: none; border: none; color: var(--primary); font-size: 1.7rem; cursor: pointer; padding: 4px; }
  .mobile-menu { display: none; background: #fff; border-top: 2px solid rgba(225,29,72,0.15); }
  .mobile-menu a { display: block; padding: 13px 20px; color: var(--text); font-size: 0.9rem; font-weight: 500; cursor: pointer; text-decoration: none; }
  .mobile-menu a:hover, .mobile-menu a.active { background: var(--secondary); color: #fff; }

  /* Pages */
  .page { display: none; }
  .page.active { display: block; }
  .logo-img { height: 56px; width: auto; object-fit: contain; display: block; }

  /* Hero section */
  .hero-section { padding: 56px 0 48px; }
  .hero-section h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
  .hero-section p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 600px; }

  /* Cards */
  .card { background: var(--card); border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); overflow: hidden; transition: transform 0.2s; }
  .card:hover { transform: translateY(-2px); }
  .card-top { height: 5px; background: linear-gradient(90deg, var(--secondary), var(--accent)); }
  .card-body { padding: 22px; }

  /* Grid layouts */
  .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

  /* Buttons */
  .btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; }
  .btn-primary { background: var(--secondary); color: #fff; }
  .btn-primary:hover { opacity: 0.88; }
  .btn-outline { background: transparent; border: 2px solid var(--secondary); color: var(--secondary); }
  .btn-outline:hover { background: var(--secondary); color: #fff; }
  .btn-accent { background: linear-gradient(135deg, var(--secondary), var(--accent)); color: #fff; }
  .btn-accent:hover { opacity: 0.9; }

  /* Badge */
  .badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 600; }
  .badge-red { background: var(--secondary-light); color: var(--secondary); }
  .badge-dark { background: rgba(255,255,255,0.12); color: #fff; }

  /* Typography */
  .section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
  .section-title span { color: var(--secondary); }
  .section-sub { color: var(--muted); max-width: 560px; margin: 0 auto; }
  .text-center { text-align: center; }
  .mb-4 { margin-bottom: 16px; }
  .mb-8 { margin-bottom: 32px; }
  .mb-12 { margin-bottom: 48px; }

  /* ===== THREE-PANEL LAYOUT: side images + center slideshow ===== */
  .three-panel {
    display: flex;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #0f172a;
  }
  .side-panel {
    flex: 0 0 20%;
    overflow: hidden;
    position: relative;
  }
  .side-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.8);
    transition: filter 0.4s;
  }
  .side-panel:hover img { filter: brightness(0.7) saturate(1); }

  /* overlay gradient to blend edges with center */
  .side-panel.left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.6) 0%, rgba(15,23,42,0) 100%);
  }
  .side-panel.right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(15,23,42,0.6) 0%, rgba(15,23,42,0) 100%);
  }

  .center-slideshow {
    flex: 1 1 60%;
    position: relative;
    overflow: hidden;
    background: #0f172a;
  }

  /* Slideshow */
  .slideshow { position: relative; height: 100%; overflow: hidden; background: #0f172a; }
  .slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 1s; }
  .slide.active { opacity: 0.75; }
  .slide-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .slide-icon { font-size: 8rem; opacity: 0.12; }
  .slide-content { position: relative; z-index: 2; text-align: center; padding: 20px; }
  .slide-content h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; font-weight: 700; text-transform: uppercase; }
  .slide-content p { color: rgba(255,255,255,0.7); margin-top: 10px; font-size: 1.05rem; }
  .slide-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
  .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: background 0.2s; }
  .dot.active { background: var(--secondary); }
  .slide-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 16px; z-index: 10; pointer-events: none; }
  .slide-arrows button { pointer-events: all; background: rgba(0,0,0,0.45); color: #fff; border: none; border-radius: 50%; width: 38px; height: 38px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
  .slide-arrows button:hover { background: var(--secondary); }

  /* Highlight card */
  .highlight-card { display: flex; gap: 16px; padding: 22px; background: var(--card); border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
  .highlight-icon { font-size: 2rem; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }

  /* Feature chip */
  .feature-chip { display: flex; align-items: center; gap: 10px; padding: 16px 18px; background: var(--card); border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
  .chip-dot { width: 22px; height: 22px; background: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .chip-dot::after { content: '✓'; color: #fff; font-size: 0.65rem; font-weight: 700; }

  /* Course card */
  .course-card { background: var(--card); border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); overflow: hidden; transition: transform 0.2s; cursor: pointer; }
  .course-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
  .course-card .top-bar { height: 4px; background: linear-gradient(90deg, var(--secondary), var(--accent)); }
  .course-card .cc-body { padding: 20px; }
  .course-tag { display: inline-block; padding: 2px 8px; background: var(--secondary-light); color: var(--secondary); border-radius: 4px; font-size: 0.72rem; font-weight: 600; margin-bottom: 8px; }

  /* About */
  .pillar-card { text-align: center; background: var(--card); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
  .pillar-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), var(--accent)); margin: 28px auto 14px; display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: #fff; }
  .value-card { padding: 24px; background: var(--card); border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
  .value-icon { font-size: 1.8rem; margin-bottom: 10px; }

  /* ===== ABOUT — three-panel (no slideshow, static images) ===== */
  .about-three-panel {
    display: flex;
    gap: 0;
    align-items: stretch;
    min-height: 340px;
    background: #fff;
  }
  .about-side-panel {
    flex: 0 0 18%;
    overflow: hidden;
    position: relative;
  }
  .about-side-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(0.85);
  }
  .about-side-panel.left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.5) 0%, rgba(255,255,255,0) 100%);
  }
  .about-side-panel.right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(15,23,42,0.5) 0%, rgba(255,255,255,0) 100%);
  }
  .about-center-content {
    flex: 1 1 64%;
    padding: 48px 40px;
    text-align: center;
  }

  /* Exam cards */
  .exam-card { background: var(--card); border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.07); padding: 20px; }
  .info-banner { background: #fff7ed; border-left: 4px solid var(--secondary); border-radius: 8px; padding: 16px 18px; margin-bottom: 28px; font-size: 0.88rem; color: var(--text); }

  /* Success stories */
  .story-card { background: var(--card); border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.07); padding: 22px; display: flex; flex-direction: column; }
  .story-quote { font-style: italic; color: var(--muted); font-size: 0.88rem; line-height: 1.7; flex: 1; }
  .story-meta { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
  .story-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), var(--accent)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 0.82rem; font-family: 'Rajdhani', sans-serif; flex-shrink: 0; }

  /* Internship slideshow */
  .intern-slideshow-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
  }
  .intern-slideshow {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }
  .intern-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
  }
  .intern-slide.active { opacity: 1; }
  .intern-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .intern-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }
  .intern-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 14px;
    z-index: 10;
    pointer-events: none;
  }
  .intern-arrows button {
    pointer-events: all;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .intern-arrows button:hover { background: var(--secondary); }

  /* Internship */
  .intern-card { background: var(--card); border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); padding: 24px; }
  .intern-tag { display: inline-block; padding: 2px 10px; border-radius: 4px; font-size: 0.72rem; font-weight: 600; background: #f0fdf4; color: #16a34a; }

  /* Enquire form */
  .form-card { background: var(--card); border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); padding: 32px; }
  label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text); margin-bottom: 5px; }
  input, select, textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text); background: var(--bg); outline: none; transition: border 0.2s; }
  input:focus, select:focus, textarea:focus { border-color: var(--secondary); }
  textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { margin-bottom: 16px; }
  .contact-item { display: flex; gap: 12px; align-items: flex-start; }
  .contact-icon { font-size: 1.1rem; width: 28px; flex-shrink: 0; color: var(--secondary); margin-top: 1px; }

  /* Certification */
  .cert-card { background: var(--card); border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); padding: 22px; display: flex; flex-direction: column; gap: 12px; transition: transform 0.2s; }
  .cert-card:hover { transform: translateY(-2px); }
  .cert-icon-wrap { width: 46px; height: 46px; border-radius: 10px; background: var(--secondary-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }

  /* CTA section */
  .cta-section { padding: 60px 0; text-align: center; }
  .cta-section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
  .cta-section p { color: rgba(255,255,255,0.78); margin-bottom: 28px; max-width: 460px; margin-left: auto; margin-right: auto; }

  /* Course detail */
  .detail-hero { position: relative; height: 320px; background: linear-gradient(135deg, #0f172a, #1e1b4b); display: flex; align-items: flex-end; padding-bottom: 32px; overflow: hidden; }
  .detail-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
  .detail-grid { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
  .content-block { background: var(--card); border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); padding: 28px; margin-bottom: 24px; }
  .block-title { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; padding-left: 12px; border-left: 3px solid var(--secondary); }
  .topic-chip { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--bg); border-radius: 8px; }
  .topic-num { width: 28px; height: 28px; background: var(--secondary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
  .use-chip { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--bg); border-radius: 8px; font-size: 0.875rem; }
  .job-chip { padding: 10px 14px; background: var(--bg); border-left: 3px solid var(--secondary); border-radius: 0 8px 8px 0; font-size: 0.875rem; font-weight: 600; }
  .sidebar-card { background: var(--card); border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); padding: 22px; position: sticky; top: 92px; }
  .info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
  .info-row:last-child { border-bottom: none; }

  /* Back link */
  .back-link { color: rgba(255,255,255,0.65); font-size: 0.85rem; display: inline-flex; align-items: center; gap: 4px; margin-bottom: 10px; cursor: pointer; background: none; border: none; }
  .back-link:hover { color: #fff; }

  /* Toast */
  .toast { position: fixed; bottom: 24px; right: 24px; background: #1e293b; color: #fff; padding: 14px 20px; border-radius: 10px; font-size: 0.88rem; z-index: 9999; box-shadow: 0 8px 24px rgba(0,0,0,0.2); transform: translateY(80px); opacity: 0; transition: all 0.35s; max-width: 320px; }
  .toast.show { transform: translateY(0); opacity: 1; }
  .toast-title { font-weight: 600; margin-bottom: 2px; }

  /* ===== FOOTER DISCLAIMER PAGES ===== */
  .policy-page-wrap {
    display: flex;
    min-height: 460px;
    background: #fff;
  }
  .policy-side-img {
    flex: 0 0 260px;
    overflow: hidden;
    position: relative;
  }
  .policy-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
  }
  .policy-side-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.4) 0%, rgba(255,255,255,0) 100%);
  }
  .policy-content {
    flex: 1;
    padding: 52px 48px;
  }
  .policy-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
  }
  .policy-content .policy-sub {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .policy-content p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 14px;
  }
  .policy-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 22px 0 8px;
    text-transform: uppercase;
  }

  /* Footer */
  footer { background: var(--primary); color: rgba(255,255,255,0.72); }
  .footer-inner { padding: 52px 0 28px; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-logo { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.3rem; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
  .footer-logo span { color: var(--secondary); }
  .footer-links { display: flex; flex-direction: column; gap: 8px; }
  .footer-links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; text-decoration: none; cursor: pointer; transition: color 0.2s; }
  .footer-links a:hover { color: var(--secondary); }
  .footer-head { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.95rem; color: #fff; text-transform: uppercase; margin-bottom: 14px; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px; }
  .footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; cursor: pointer; }
  .footer-bottom a:hover { color: var(--secondary); }

  /* Responsive */
  @media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .sidebar-card { position: static; }
    .side-panel { flex: 0 0 12%; }
    .about-side-panel { flex: 0 0 12%; }
    .policy-side-img { flex: 0 0 180px; }
  }
  @media (max-width: 640px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .three-panel { height: 300px; }
    .side-panel { display: none; }
    .intern-slideshow { height: 240px; }
    .policy-page-wrap { flex-direction: column; }
    .policy-side-img { flex: 0 0 200px; width: 100%; }
    .policy-content { padding: 28px 20px; }
    .about-three-panel { flex-direction: column; }
    .about-side-panel { flex: 0 0 160px; width: 100%; }
    .about-center-content { padding: 32px 20px; }
  }