:root {
  --saffron:       #D94F00;
  --saffron-light: #F26C1A;
  --saffron-pale:  #FFF0E6;
  --yellow:        #F5B800;
  --yellow-deep:   #E09E00;
  --yellow-light:  #FFE58A;
  --yellow-pale:   #FFF7D6;
  --green:         #1A5C22;
  --green-mid:     #237A2E;
  --green-light:   #E8F5EA;
  --gold:          #C8960C;
  --gold-light:    #F5DFA0;
  --cream:         #FEF9F3;
  --ink:           #1A1209;
  --ink-soft:      #3D2B1A;
  --white:         #FFFFFF;
  --border:        #D4B896;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans Devanagari', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--ink);
  color: var(--yellow-light);
  text-align: center;
  font-size: 0.78rem;
  padding: 6px 16px;
  letter-spacing: 0.04em;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--yellow); background: var(--white); }
.nav-title { display: flex; flex-direction: column; line-height: 1.2; }
.nav-title .h { font-size: 0.95rem; font-weight: 700; color: var(--saffron); }
.nav-title .s { font-size: 0.72rem; color: var(--ink-soft); font-weight: 600; }
.nav-links { display: flex; gap: 8px; list-style: none; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links a:hover { background: var(--yellow-pale); color: var(--yellow-deep); }

/* ── HERO (yellow theme like logo) ── */
.hero {
  background: #ffda09 100%;
  color: var(--ink);
  padding: 64px 24px;
  overflow: hidden;
  position: relative;
}
.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='%23000000' fill-opacity='0.04'%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");
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-org {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}
.hero-name {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero-name span { color: var(--saffron); }
.hero-role {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--saffron), var(--ink));
  margin-bottom: 24px;
  border-radius: 2px;
}
.hero-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--saffron);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--saffron);
}
.hero-cta:hover { background: var(--ink); border-color: var(--ink); color: var(--yellow-light); }
.hero-logo-block { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-logo-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.35), 0 8px 32px rgba(0,0,0,0.25);
  overflow: hidden;
  background: var(--white);
}
.hero-logo-ring img { width: 100%; height: 100%; object-fit: cover; }
.hero-reg {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--ink);
  text-align: center;
  font-weight: 700;
}

/* ── STATS ── */
.stats-strip { background: var(--saffron); padding: 20px 24px; }
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-num { font-size: 1.6rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.75rem; opacity: 0.9; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── SECTIONS ── */
section { padding: 64px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.eyebrow-line { width: 40px; height: 3px; background: var(--saffron); border-radius: 2px; }
.eyebrow-text { font-size: 0.75rem; font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: 0.1em; }
.section-title {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-sub { font-size: 0.95rem; color: var(--ink-soft); max-width: 600px; line-height: 1.8; margin-bottom: 40px; }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--saffron), 16px 16px 0 var(--yellow);
  position: relative;
  z-index: 1;
  background: var(--yellow-pale);
}
.about-photo-frame img { width: 100%; display: block; object-fit: cover; height: 400px; padding: 40px; background: var(--yellow-pale); }
.about-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--ink);
  color: var(--yellow-light);
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  border: 2px solid var(--white);
}
.info-card {
  background: var(--saffron-pale);
  border-left: 4px solid var(--saffron);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.info-card .label { font-size: 0.72rem; font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.info-card .value { font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.about-text { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.9; margin-bottom: 20px; }

/* ── ORGANIZATION ── */
#organization { background: var(--yellow-pale); }
.org-header-letterhead {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 6px solid var(--saffron);
}
.org-header-letterhead img { width: 90px; height: 90px; flex-shrink: 0; border-radius: 50%; }
.org-header-text h2 { font-family: 'Noto Serif Devanagari', serif; font-size: 1.2rem; color: var(--saffron); font-weight: 700; }
.org-header-text p { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }
.org-address {
  background: var(--yellow-pale);
  border-radius: 6px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── MEMBERS SLIDER ── */
#members { background: var(--white); }
.slider {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
}
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.member-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.member-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.10); }
.member-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--yellow-pale);
  border: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--saffron);
  overflow: hidden;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-role {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.member-name { font-family: 'Noto Serif Devanagari', serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 10px; }
.member-info { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 10px; }
.member-phone { font-size: 0.85rem; color: var(--green-mid); font-weight: 700; }
.member-phone a { color: inherit; text-decoration: none; }

.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--yellow-deep);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--saffron); color: var(--white); border-color: var(--saffron); }
.slider-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.slider-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.slider-dots button.active { background: var(--saffron); transform: scale(1.3); }

/* ── MISSION ── */
#mission { background: var(--cream); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--saffron), var(--yellow));
}
.mission-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.10); }
.mission-icon { font-size: 2rem; margin-bottom: 14px; }
.mission-title { font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 8px; }
.mission-desc { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.8; }

/* ── CONTACT ── */
#contact {
  background: linear-gradient(135deg, var(--ink) 0%, #2d1e10 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#contact .section-title { color: var(--white); }
#contact .eyebrow-text { color: var(--yellow-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; position: relative; }
.contact-info-block { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}
.contact-text .label { font-size: 0.72rem; font-weight: 700; color: var(--yellow-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-text .value { font-size: 0.9rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
.contact-text a { color: rgba(255,255,255,0.9); text-decoration: none; }
.contact-cta-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 32px 28px;
}
.contact-cta-box h3 { font-family: 'Noto Serif Devanagari', serif; font-size: 1.2rem; margin-bottom: 12px; color: var(--white); }
.contact-cta-box p { font-size: 0.87rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 24px; }
.cta-email-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.87rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-email-btn:hover { opacity: 0.85; }

/* ── FOOTER ── */
footer {
  background: #0a0705;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  line-height: 1.8;
}
footer a { color: var(--yellow-light); text-decoration: none; }
footer strong { color: rgba(255,255,255,0.9); }

#demands{
    background:#fff8e8;
    padding:90px 0;
}

.demand-slider{
    display:flex;
    align-items:center;
    gap:20px;
}

.demand-track{
    display:flex;
    gap:35px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:10px;
}

.demand-track::-webkit-scrollbar{
    display:none;
}

.demand-card{
    min-width:420px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.demand-card img{
    width:100%;
    display:block;
}

.demand-content{
    padding:25px;
}

.demand-content h3{
    margin-bottom:12px;
}

.demand-content p{
    margin-bottom:20px;
    line-height:1.7;
}

.demand-btn{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#8b0000;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

.slider-direction{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-bottom:30px;
    padding:10px 16px;
    background:var(--yellow-pale);
    border:1px solid var(--border);
    border-radius:30px;
    width:fit-content;
    margin-left:auto;
    margin-right:auto;
    color:var(--ink-soft);
    font-size:.9rem;
    font-weight:600;
}

.slider-direction span:first-child,
.slider-direction span:last-child{
    font-size:1.3rem;
    color:var(--saffron);
    animation:arrowMove 1.5s infinite alternate;
}

@keyframes arrowMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(6px);
    }
}

@media(max-width:768px){
    .slider-direction{
        width:100%;
        border-radius:12px;
        font-size:.8rem;
        text-align:center;
        padding:10px;
    }
}

/*================ Gallery ================*/

#gallery{
    background:#fff;
}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

}

.gallery-img{

    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:14px;
    cursor:pointer;

    transition:.35s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.gallery-img:hover{

    transform:translateY(-6px) scale(1.03);

}


/*================ Lightbox ================*/

.lightbox{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.9);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;

}

.lightbox img{

    max-width:90%;
    max-height:85vh;

    border-radius:12px;

}

.lightbox-close{
    position:absolute;
    top:25px;
    right:35px;
    color:white;
    font-size:45px;
    cursor:pointer;
}

.lightbox-prev,
.lightbox-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:white;
    font-size:55px;
    cursor:pointer;
    user-select:none;
}

.lightbox-prev{
    left:40px;
}

.lightbox-next{
    right:40px;
}

/*================ Responsive ================*/

@media(max-width:900px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-img{

height:240px;

}

.prev,
.next{

font-size:38px;

}

.close{

font-size:36px;

}

}

/* ---------- Demand Section Responsive ---------- */

.demand-track{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
}

.demand-card{
    flex:0 0 420px;
    scroll-snap-align:center;
}

#demands{
    background:#fff8e8;
    padding:64px 24px;
}

#demands .section-inner{
    max-width:1100px;
    margin:0 auto;
}

#demands .section-eyebrow{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

#demands .eyebrow-line{
    width:40px;
    height:3px;
    background:var(--saffron);
    border-radius:2px;
}

#demands .eyebrow-text{
    font-size:.75rem;
    font-weight:700;
    color:var(--saffron);
    letter-spacing:.1em;
    text-transform:uppercase;
}

#demands .section-title{
    margin-bottom:12px;
}

#demands .section-sub{
    max-width:650px;
    margin-bottom:40px;
}

/* Tablet */

@media (max-width:900px){

    .demand-card{
        flex:0 0 80%;
    }

}

/* Mobile */

@media (max-width:768px){

    .demand-slider{
        gap:10px;
    }

    .demand-card{
        flex:0 0 100%;
        min-width:100%;
    }

    .demand-content{
        padding:18px;
    }

    .demand-btn{
        display:none;
    }
     #demands{
        padding:50px 16px;
    }

    #demands .section-eyebrow{
        justify-content:flex-start;
    }

    #demands .section-title{
        font-size:1.7rem;
    }

    #demands .section-sub{
        font-size:.92rem;
        margin-bottom:28px;
    }

}


/* Small phones */

@media (max-width:480px){

    .demand-card{
        border-radius:12px;
    }

    .demand-content h3{
        font-size:1rem;
    }

    .demand-content p{
        font-size:.9rem;
    }

}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .member-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-logo-block { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { display: none; }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .org-header-letterhead { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .member-card { flex: 0 0 100%; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }