*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  :root {
    --green-deep: #1B4332;
    --green-mid: #2D6A4F;
    --green-light: #52B788;
    --green-pale: #D8F3DC;
    --terra: #BC4A1A;
    --terra-light: #E76F3B;
    --gold: #D4A017;
    --gold-light: #F4C842;
    --cream: #FDF8EE;
    --cream-dark: #F0E8D6;
    --brown: #3D1F0D;
    --text: #1A1A1A;
    --text-muted: #5C5C5C;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: rgba(27,67,50,0.97);
    backdrop-filter: blur(8px);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }
  .logo-emblem {
    width: 44px; height: 44px; background: var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-family: 'Playfair Display', serif;
    font-weight: 900; color: var(--green-deep); flex-shrink: 0;
  }
  .logo-text { line-height: 1.1; }
  .logo-text strong {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 15px; color: var(--white); font-weight: 700; letter-spacing: 0.3px;
  }
  .logo-text span { font-size: 10px; color: var(--green-light); letter-spacing: 2px; text-transform: uppercase; }

  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.82); font-size: 14px; text-decoration: none;
    font-weight: 400; letter-spacing: 0.3px; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-btn {
    background: var(--terra) !important; color: var(--white) !important;
    padding: 9px 22px; border-radius: 50px;
    font-weight: 600 !important; font-size: 13px !important;
    transition: background 0.2s, transform 0.1s !important;
  }
  .nav-btn:hover { background: var(--terra-light) !important; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(to bottom right, rgba(27,67,50,0.88), rgba(45,106,79,0.75)),
      url('https://images.unsplash.com/photo-1599940824399-b87987ceb72a?w=1400&q=80') center/cover no-repeat;
    display: flex; align-items: center;
    padding: 120px 5% 80px;
    position: relative; overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(transparent, var(--cream));
  }

  .hero-content { max-width: 700px; position: relative; z-index: 1; }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,160,23,0.2); border: 1px solid rgba(212,160,23,0.5);
    color: var(--gold-light); font-size: 12px; letter-spacing: 2.5px;
    text-transform: uppercase; padding: 7px 16px; border-radius: 50px;
    margin-bottom: 28px; font-weight: 600;
  }
  .hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 74px); line-height: 1.08;
    color: var(--white); font-weight: 900; margin-bottom: 24px;
  }
  .hero h1 em { font-style: italic; color: var(--gold-light); }

  .hero p {
    font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.85);
    margin-bottom: 44px; max-width: 580px;
  }

  .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    background: var(--terra); color: var(--white);
    padding: 16px 36px; border-radius: 50px; font-size: 15px;
    font-weight: 600; text-decoration: none; letter-spacing: 0.3px;
    transition: all 0.2s; display: inline-block; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--terra-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(188,74,26,0.4); }

  .btn-outline {
    background: transparent; color: var(--white);
    padding: 15px 36px; border-radius: 50px; font-size: 15px;
    font-weight: 500; text-decoration: none; letter-spacing: 0.3px;
    border: 1.5px solid rgba(255,255,255,0.4); transition: all 0.2s; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

  .hero-stats {
    display: flex; gap: 40px; margin-top: 60px; padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2); flex-wrap: wrap;
  }
  .hero-stat .num {
    font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700;
    color: var(--gold-light); line-height: 1;
  }
  .hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

  /* ── SECTION COMMON ── */
  section { padding: 90px 5%; }
  .section-tag {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--terra); font-weight: 600; margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-tag::before { content: ''; width: 30px; height: 2px; background: var(--terra); }
  .section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 50px);
    font-weight: 700; line-height: 1.15; color: var(--green-deep); margin-bottom: 20px;
  }
  .section-sub { font-size: 17px; line-height: 1.75; color: var(--text-muted); max-width: 640px; }

  /* ── ABOUT ── */
  .about { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }

  .about-visual { position: relative; }
  .about-img-main {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 20px 20px 20px 0;
    background: linear-gradient(135deg, var(--green-pale), var(--green-light));
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .about-img-main img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

  .about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--terra); color: var(--white); padding: 20px 24px;
    border-radius: 14px; text-align: center;
    box-shadow: 0 8px 24px rgba(188,74,26,0.3);
  }
  .about-badge .big { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; line-height: 1; }
  .about-badge .small { font-size: 13px; margin-top: 4px; opacity: 0.9; }

  .about-leaf {
    position: absolute; top: -16px; left: -16px; width: 80px; height: 80px;
    background: var(--gold); border-radius: 50% 0 50% 0; opacity: 0.9;
  }

  .about-text p { font-size: 16px; line-height: 1.85; color: var(--text-muted); margin-bottom: 20px; }
  .about-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--green-pale); color: var(--green-deep);
    padding: 8px 16px; border-radius: 50px; font-size: 13px;
    font-weight: 500; margin: 4px;
  }
  .about-pill::before { content: '✓'; font-size: 11px; color: var(--green-mid); }

  /* ── MISSION VISION ── */
  .mission { background: var(--green-deep); }
  .mission .section-tag { color: var(--gold-light); }
  .mission .section-tag::before { background: var(--gold-light); }
  .mission .section-title { color: var(--white); }
  .mission .section-sub { color: rgba(255,255,255,0.7); }
  .mv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 60px; }
  .mv-card {
    background: rgba(255,255,255,0.07); padding: 44px 36px;
    border: 1px solid rgba(255,255,255,0.1); transition: background 0.3s;
    position: relative; overflow: hidden;
  }
  .mv-card:hover { background: rgba(255,255,255,0.12); }
  .mv-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
  }
  .mv-card:hover::after { transform: scaleX(1); }
  .mv-icon { font-size: 44px; margin-bottom: 20px; }
  .mv-card h3 {
    font-family: 'Playfair Display', serif; font-size: 26px; color: var(--gold-light);
    margin-bottom: 16px; font-weight: 700;
  }
  .mv-card p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.75); }

  /* ── PROGRAMS ── */
  .programs { background: var(--cream); }
  .programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
  .prog-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06); transition: transform 0.25s, box-shadow 0.25s;
  }
  .prog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
  .prog-header { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; }
  .prog-header.green { background: linear-gradient(135deg, #D8F3DC, #95D5B2); }
  .prog-header.terra { background: linear-gradient(135deg, #FDDCCC, #F4A57A); }
  .prog-header.gold { background: linear-gradient(135deg, #FFF0C2, #F4C842); }
  .prog-header.blue { background: linear-gradient(135deg, #D0E8FF, #74B9F5); }
  .prog-header.pink { background: linear-gradient(135deg, #FFD6E0, #FF85A1); }
  .prog-header.teal { background: linear-gradient(135deg, #CCFAF0, #52D9B8); }
  .prog-body { padding: 28px; }
  .prog-body h3 { font-size: 19px; font-weight: 600; color: var(--green-deep); margin-bottom: 10px; }
  .prog-body p { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

  /* ── IMPACT ── */
  .impact { background: var(--cream-dark); }
  .impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; border: 1px solid rgba(0,0,0,0.08); border-radius: 20px; overflow: hidden; }
  .impact-cell {
    padding: 44px 30px; background: var(--white); text-align: center;
    border-right: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: background 0.25s;
  }
  .impact-cell:hover { background: var(--green-pale); }
  .impact-cell:nth-child(4n) { border-right: none; }
  .impact-cell:nth-last-child(-n+4) { border-bottom: none; }
  .impact-num {
    font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700;
    color: var(--green-deep); line-height: 1;
  }
  .impact-num span { color: var(--terra); }
  .impact-lbl { font-size: 14px; color: var(--text-muted); margin-top: 10px; line-height: 1.4; }

  /* ── LEGAL STRIP ── */
  .legal-strip { background: var(--gold); padding: 40px 5%; }
  .legal-inner { display: flex; align-items: center; gap: 40px; max-width: 1100px; margin: 0 auto; }
  .legal-icon { font-size: 48px; flex-shrink: 0; }
  .legal-text h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--brown); margin-bottom: 6px; }
  .legal-text p { font-size: 15px; color: rgba(61,31,13,0.8); line-height: 1.6; }
  .legal-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
  .l-badge {
    background: rgba(27,67,50,0.15); color: var(--green-deep); padding: 6px 16px;
    border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  }

  /* ── GET INVOLVED ── */
  .involve { background: var(--white); }
  .involve-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-top: 60px; }
  .inv-card {
    border: 1.5px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 36px 28px;
    text-align: center; transition: all 0.25s;
  }
  .inv-card:hover { border-color: var(--green-mid); box-shadow: 0 12px 32px rgba(45,106,79,0.12); }
  .inv-icon { font-size: 48px; margin-bottom: 16px; }
  .inv-card h3 { font-size: 20px; font-weight: 600; color: var(--green-deep); margin-bottom: 10px; }
  .inv-card p { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 24px; }
  .btn-green {
    background: var(--green-mid); color: var(--white); padding: 12px 28px;
    border-radius: 50px; font-size: 14px; font-weight: 500; text-decoration: none;
    display: inline-block; transition: all 0.2s;
  }
  .btn-green:hover { background: var(--green-deep); }

  /* ── TEAM ── */
  .team { background: var(--cream); }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
  .team-card {
    background: var(--white); border-radius: 16px; overflow: hidden; text-align: center;
    border: 1px solid rgba(0,0,0,0.06); transition: transform 0.2s;
  }
  .team-card:hover { transform: translateY(-4px); }
  .team-avatar { height: 200px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--green-pale), var(--green-light)); }
  .avatar-circle {
    width: 100px; height: 100px; border-radius: 50%; background: var(--green-deep);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700;
    border: 4px solid var(--white);
  }
  .team-info { padding: 24px 20px 28px; }
  .team-info h3 { font-size: 18px; font-weight: 600; color: var(--green-deep); }
  .team-role { font-size: 13px; color: var(--terra); font-weight: 500; margin: 4px 0 10px; }
  .team-info p { font-size: 13px; line-height: 1.65; color: var(--text-muted); }

  /* ── CONTACT ── */
  .contact { background: var(--green-deep); }
  .contact .section-title { color: var(--white); }
  .contact .section-tag { color: var(--gold-light); }
  .contact .section-tag::before { background: var(--gold-light); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
  .contact-info { }
  .contact-info p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
  .c-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
  .c-item-icon {
    width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
  }
  .c-item-text strong { display: block; color: var(--white); font-size: 14px; font-weight: 500; }
  .c-item-text span { color: rgba(255,255,255,0.65); font-size: 14px; }
  .contact-form { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 40px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 8px; font-weight: 500; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; color: var(--white);
    font-size: 15px; font-family: 'DM Sans', sans-serif; outline: none; transition: border 0.2s;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-light); }
  .form-group select option { background: var(--green-deep); }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .btn-submit {
    width: 100%; background: var(--terra); color: var(--white); padding: 16px;
    border-radius: 50px; font-size: 16px; font-weight: 600; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: all 0.2s; margin-top: 8px;
  }
  .btn-submit:hover { background: var(--terra-light); }

  /* ── FOOTER ── */
  footer { background: var(--brown); padding: 60px 5% 30px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.55); margin-top: 16px; }
  .footer-col h4 { color: var(--gold-light); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 14px; text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
  .footer-bottom a { color: var(--gold-light); text-decoration: none; }
  .reg-info { font-size: 12px; color: rgba(255,255,255,0.3); }

  /* ── BANNER ── */
  .banner { background: var(--terra); padding: 18px 5%; text-align: center; }
  .banner p { color: var(--white); font-size: 14px; }
  .banner strong { font-weight: 600; }
  .banner a { color: var(--gold-light); text-decoration: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .mv-grid, .programs-grid, .involve-grid, .team-grid { grid-template-columns: 1fr 1fr; }
    .impact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .hero-stats { gap: 28px; }
  }
  @media (max-width: 600px) {
    .mv-grid, .programs-grid, .involve-grid, .team-grid, .impact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .legal-inner { flex-direction: column; gap: 20px; }
    .hero h1 { font-size: 38px; }
  }

  /* Animations */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .hero-content > * { animation: fadeUp 0.7s ease both; }
  .hero-tag { animation-delay: 0.1s; }
  .hero h1 { animation-delay: 0.25s; }
  .hero p { animation-delay: 0.4s; }
  .hero-cta { animation-delay: 0.55s; }
  .hero-stats { animation-delay: 0.7s; }


  .menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
}

@media(max-width:768px){

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    padding:15px 20px;
}

.menu-toggle{
    display:block;
    z-index:1002;
}

.nav-links{

    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#fff;

    display:flex;
    flex-direction:column;

    padding:80px 20px;

    transition:.4s ease;

    z-index:1001;
}

.nav-links.active{
    right:0;
}

.nav-links li{
    margin:15px 0;
}

}
/* ================= MOBILE NAVBAR ================= */

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
    z-index:1002;
}

@media (max-width:768px){

    /* .menu-toggle{
        display:block;
    } */

    /* .nav-links{

        position:fixed;
        top:70px;
        right:-100%;

        width:260px;
        height:calc(100vh - 70px);

        background:#1B4332;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        gap:0;

        padding:20px;

        transition:.35s ease;

        z-index:1000;
    } */
    .menu-toggle{
    display:block;
}

.nav-links{

    position:fixed;

    top:70px;        /* Navbar ke niche se open hoga */

    right:-100%;

    width:260px;

    height:calc(100vh - 70px);

    background:#1B4332;

    transition:.3s;

    overflow-y:auto;

}

.nav-links.active{
    right:0;
}

    .nav-links.active{
        right:0;
    }

    .nav-links li{
        width:100%;
        list-style:none;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:15px 10px;
        color:#fff;
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .nav-btn{
        margin-top:15px;
        text-align:center;
    }

    .logo-text span{
        display:none;
    }

    .logo-text strong{
        font-size:13px;
    }

}
.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}
nav{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:70px;
    z-index:9999;
}

body{
    padding-top:70px;
}