*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --sun: #F5A623;
    --teal: #2ABFBF;
    --navy: #1A2E4A;
    --cream: #FFF9F0;
    --rose: #F76E6E;
    --mint: #D4F5EF;
    --gold: #E8C547;
    --soft-grey: #F2F0EB;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
  }
  .hero-bg-blob.b1 { width: 500px; height: 500px; background: var(--teal); top: -100px; right: -100px; }
  .hero-bg-blob.b2 { width: 400px; height: 400px; background: var(--sun); bottom: -80px; left: 10%; }
  .hero-bg-blob.b3 { width: 250px; height: 250px; background: var(--rose); top: 40%; left: 35%; }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 2;
  }

  .issue-tag {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
    width: fit-content;
    animation: fadeUp 0.8s ease both;
  }

  .hero-headline {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.95;
    color: #fff;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero-headline em {
    color: var(--sun);
    font-style: italic;
  }

  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 48px;
    font-weight: 300;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-meta {
    display: flex;
    gap: 32px;
    animation: fadeUp 0.8s 0.45s ease both;
  }
  .hero-meta-item { color: rgba(255,255,255,0.5); font-size: 13px; }
  .hero-meta-item strong { display: block; color: #fff; font-size: 32px; font-weight: 500; }

  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: fadeIn 1.2s 0.2s ease both;
  }

  .hero-card-stack {
    position: relative;
    width: 320px;
    height: 420px;
  }
  .hero-card {
    position: absolute;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  }
  .hero-card.c1 {
    width: 280px; height: 340px;
    background: var(--teal);
    top: 40px; left: 60px;
    transform: rotate(6deg);
  }
  .hero-card.c2 {
    width: 300px; height: 360px;
    background: var(--sun);
    top: 20px; left: 20px;
    transform: rotate(-3deg);
  }
  .hero-card.c3 {
    width: 300px; height: 360px;
    background: #fff;
    top: 0; left: 0;
    transform: rotate(1deg);
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
  }
  .hero-card.c3 .card-logo {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
  }
  .hero-card.c3 .card-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
  }
  .hero-card.c3 .card-big {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: 38px;
    line-height: 1.1;
    color: var(--navy);
    margin-top: 8px;
  }
  .hero-card.c3 .card-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    font-weight: 300;
  }
  .card-dot-row { display: flex; gap: 6px; margin-top: auto; }
  .card-dot { width: 8px; height: 8px; border-radius: 50%; }
  .card-dot.d1 { background: var(--teal); }
  .card-dot.d2 { background: var(--sun); }
  .card-dot.d3 { background: var(--rose); }
  .card-dot.d4 { background: var(--navy); }

  /* ── SECTION SHARED ── */
  section { padding: 100px 80px; }
  .section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
  }
  .section-title em { color: var(--sun); font-style: italic; }

  /* ── DIRECTOR SECTION ── */
  .director-section {
    background: var(--navy);
    position: relative;
  }
  .director-section .section-label { color: var(--gold); }
  .director-section .section-title { color: #fff; }

  .director-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }

  .director-quote-wrap {
    position: relative;
  }
  .big-quote {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: 200px;
    line-height: 0.7;
    color: var(--teal);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -20px;
    pointer-events: none;
  }
  .director-quote {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    border-left: 3px solid var(--teal);
    padding-left: 28px;
    margin-top: 60px;
  }
  .director-name {
    margin-top: 24px;
    padding-left: 28px;
  }
  .director-name strong { color: #fff; display: block; font-size: 16px; }
  .director-name span { color: rgba(255,255,255,0.5); font-size: 13px; }
  .director-email {
    display: inline-block;
    margin-top: 8px;
    margin-left: 28px;
    padding: 6px 14px;
    background: rgba(42,191,191,0.15);
    border-radius: 100px;
    color: var(--teal);
    font-size: 12px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .director-email:hover { background: rgba(42,191,191,0.3); }

  .director-body { color: rgba(255,255,255,0.7); line-height: 1.85; font-size: 16px; font-weight: 300; }
  .director-body p + p { margin-top: 20px; }

  /* deco blob in director */
  .dir-blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.15; pointer-events: none; }
  .dir-blob.db1 { width: 400px; height: 400px; background: var(--teal); top: -100px; right: -100px; }

  /* ── TEAM CARDS ── */
  .team-section { background: var(--soft-grey); }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
  }

  .team-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(26,46,74,0.12); }

  .team-card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
  }
  .team-card:nth-child(1) .team-card-accent { background: var(--teal); }
  .team-card:nth-child(2) .team-card-accent { background: var(--sun); }
  .team-card:nth-child(3) .team-card-accent { background: var(--rose); }

  .team-card-role {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .team-card:nth-child(2) .team-card-role { color: var(--sun); }
  .team-card:nth-child(3) .team-card-role { color: var(--rose); }

  .team-card-name {
    font-family:'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .team-card-body {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
    margin-bottom: 24px;
  }

  .team-card-email {
    font-size: 12px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.6;
    transition: opacity 0.2s;
  }
  .team-card-email:hover { opacity: 1; }
  .team-card-email::before { content: '→'; }

  /* ── INITIATIVES ── */
  .initiatives-section { background: var(--cream); }

  .initiatives-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
    align-items: end;
  }

  .initiative-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .initiative-card {
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s;
  }
  .initiative-card:hover { transform: scale(1.02); }

  .initiative-card.ic1 { background: var(--teal); }
  .initiative-card.ic2 { background: var(--navy); }
  .initiative-card.ic3 { background: var(--sun); }

  .initiative-icon {
    font-size: 52px;
    position: absolute;
    top: 28px;
    right: 24px;
    opacity: 0.4;
  }

  .initiative-card-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
  }
  .initiative-card-title {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: 24px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .initiative-card-body {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── RESILIENCE ── */
  .resilience-section {
    background: #1a2e4a;
    position: relative;
    overflow: hidden;
  }
  .resilience-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .resilience-section .section-label { color: rgba(255,255,255,0.7); }
  .resilience-section .section-title { color: #fff; }
  .resilience-body { color: rgba(255,255,255,0.8); line-height: 1.85; font-size: 16px; font-weight: 300; }

  .gem-pills {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .gem-pill {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s;
  }
  .gem-pill:hover { background: rgba(255,255,255,0.25); }
  .gem-pill-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }
  .gem-pill-text strong { color: #fff; display: block; font-size: 16px; margin-bottom: 2px; }
  .gem-pill-text span { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 300; }

  /* ── RECIPE ── */
  .recipe-section { background: var(--soft-grey); }

  .recipe-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
  }

  .recipe-card {
    background: var(--navy);
    border-radius: 28px;
    padding: 48px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .recipe-card-deco {
    position: absolute;
    font-size: 100px;
    opacity: 0.07;
    top: 10px; right: 20px;
  }
  .recipe-heading {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: 28px;
    margin-bottom: 28px;
    line-height: 1.2;
  }
  .ingredient-list { list-style: none; }
  .ingredient-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
  }
  .ingredient-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
  }

  .steps-list { list-style: none; counter-reset: steps; }
  .steps-list li {
    counter-increment: steps;
    padding: 20px 0 20px 60px;
    border-bottom: 1px solid rgba(26,46,74,0.08);
    position: relative;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
  }
  .steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0; top: 18px;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
  }
  .steps-list li strong { color: var(--navy); display: block; margin-bottom: 4px; font-size: 15px; }

  /* ── RECRUITMENT ── */
  .recruitment-section {
    background: var(--sun);
    position: relative;
    overflow: hidden;
  }
  .recruitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .recruitment-section .section-title { color: var(--navy); }
  .recruitment-section .section-label { color: rgba(26,46,74,0.6); }
  .recruitment-body { color: rgba(26,46,74,0.8); line-height: 1.85; font-size: 16px; font-weight: 300; }
  .recruit-email-btn {
    display: inline-block;
    margin-top: 32px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .recruit-email-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(26,46,74,0.3); }

  .recruit-stat-box {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .recruit-stat { text-align: center; }
  .recruit-stat-number {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    display: block;
  }
  .recruit-stat-label { font-size: 13px; color: rgba(26,46,74,0.6); margin-top: 8px; }
  .recruit-stat-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(26,46,74,0.15);
  }

  /* ── CLOSING ── */
  .closing-section {
    background: transparent;
    text-align: center;
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
  }
  .closing-blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.2; pointer-events: none; }
  .closing-blob.cb1 { width: 500px; height: 500px; background: var(--teal); top: -150px; left: -100px; }
  .closing-blob.cb2 { width: 400px; height: 400px; background: var(--sun); bottom: -100px; right: -50px; }

  .closing-tag {
    display: inline-block;
    background: rgb(245 166 35 / 72%);
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    font-weight: 500;
  }
  .closing-title {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: clamp(42px, 6vw, 80px);
    color:#4c4c4c;
    line-height: 1.05;
    max-width: 800px;
    margin: 0 auto 32px;
  }
  .closing-title em { color: var(--sun); font-style: italic; }
  .closing-sub { color: rgb(0 0 0 / 53%); font-size: 18px; font-weight: 300; max-width: 500px; margin: 0 auto 48px; line-height: 1.7; }

  .closing-contact-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .contact-pill {
    background: #1a2e4ade;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 14px 24px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .contact-pill:hover { background: rgb(130 130 130); color: #fff; }
  .contact-pill-icon { font-size: 16px; }

  /* ── HANDWRITTEN NOTE ── */
  .handwrite {
    font-family: 'Baloo Bhaijaan 2', Arial, sans-serif;
    font-size: 28px;
    color: var(--sun);
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 16px;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* CSS-only fade-in animations */
  .reveal { animation: fadeUp 0.8s ease both; }
  .reveal-delay-1 { animation-delay: 0.15s; }
  .reveal-delay-2 { animation-delay: 0.3s; }
  .reveal-delay-3 { animation-delay: 0.45s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    section { padding: 70px 30px; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { display: none; }
    .hero-left { padding: 80px 30px 60px; }
    .director-grid, .team-grid, .initiatives-header,
    .resilience-grid, .recipe-grid, .recruitment-grid,
    .initiative-list { grid-template-columns: 1fr; gap: 40px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .team-grid, .recruit-stat-box { grid-template-columns: 1fr; }
  }
.clearfix{
max-width: 100%;
}
#banner {
display: none;
}
#content .section {
    padding-top: 0;
}
@media only screen and (max-width: 767px) {
    #content .section {
        padding-top: 0 !important;
        padding-left: 0;
        padding-right: 0;
    }
   .hero-left {
        padding: 20px 4px 15px;
    }
   .closing-section {
       padding: 57px 12px;
   }
}