/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/webguyio/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2026
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2026
BlankSlate is distributed under the terms of the GNU GPL
*/
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --green:#1A6B3C;--green-dark:#0D4A24;--green-mid:#2D8A52;
  --green-light:#E8F5EE;--green-pale:#F0FAF8;
  --amber:#B8720E;--amber-light:#FFF4E0;
  --text:#1C1C1C;--muted:#5A5A5A;--border:#E2E2DA;
  --bg:#FAFAF7;--white:#FFFFFF;
  --radius:14px;--shadow:0 4px 20px rgba(0,0,0,0.08);
}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;color:var(--text);background:var(--bg);font-size:16px;line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto}
 
/* ===== NAVBAR ===== */
nav{
  background:#fff;
  border-bottom:1.5px solid var(--border);
  padding:0 2rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:75px;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 16px rgba(0,0,0,0.04);
}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0}
 
/* Desktop nav links */
.navbar-nav{display:flex;align-items:center;gap:4px;list-style: none;}
.menu-item a{background:none;border:none;font-family:'DM Sans',sans-serif;font-size:1rem;color:var(--muted);padding:8px 12px;border-radius:8px;cursor:pointer;transition:all 0.2s;font-weight:400;white-space:nowrap; text-decoration:none;}
.menu-item a:hover,.menu-item a.active{background:var(--green-light);color:var(--green);font-weight:500}
.menu-item-type-custom a{background:var(--green);color:#fff !important;border:none;font-family:'DM Sans',sans-serif;font-size:1rem;font-weight:500;padding:9px 18px;border-radius:8px;cursor:pointer;transition:all 0.2s;margin-left:6px;white-space:nowrap}
.menu-item-type-custom a:hover{background:var(--green-dark)}
 
/* Hamburger */
.hamburger{display:none;flex-direction:column;justify-content:center;align-items:center;gap:5px;width:40px;height:40px;background:none;border:none;cursor:pointer;border-radius:8px;padding:4px}
.hamburger span{display:block;width:22px;height:2px;background:var(--text);border-radius:2px;transition:all 0.3s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
 
/* Mobile Drawer */
.mobile-menu{
  display:none;
  position:fixed;
  top:64px;left:0;right:0;bottom:0;
  background:#fff;
  z-index:999;
  overflow-y:auto;
  padding:1.5rem;
  flex-direction:column;
  gap:0.5rem;
  animation:slideDown 0.25s ease;
}
@keyframes slideDown{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
.mobile-menu.open{display:flex}
.mobile-menu .menu-item a{background:none;border:none;font-family:'DM Sans',sans-serif;font-size:1.05rem;color:var(--text);padding:14px 16px;border-radius:10px;cursor:pointer;text-align:left;transition:all 0.2s;border-bottom:1px solid var(--border); display: block;}
.mobile-menu .menu-item a:hover,.mobile-menu .menu-item a.active{background:var(--green-light);color:var(--green)}
.mobile-menu .menu-item-type-custom a{background:var(--green);color:#fff;border:none;font-family:'DM Sans',sans-serif;font-size:1rem;font-weight:500;padding:16px;border-radius:12px;cursor:pointer;margin-top:1rem;text-align:center}
.mobile-menu #menu-main-menu-1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}
 
 
/* ===== HERO ===== */
.hero{
  background:linear-gradient(150deg,#0A3D1F 0%,#1A6B3C 55%,#2D8A52 100%);
  color:#fff;padding:4rem 2rem 3.5rem;
  position:relative;overflow:hidden;
  text-align:left;
}
.hero::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle at 20% 50%,rgba(255,255,255,0.05) 0%,transparent 50%),radial-gradient(circle at 80% 20%,rgba(255,255,255,0.04) 0%,transparent 40%)}
.hero-inner{max-width:1024px;margin:0 auto;position:relative;z-index:1}
.hero-pill{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.9);font-size:0.7rem;letter-spacing:0.1em;text-transform:uppercase;padding:6px 14px;border-radius:30px;margin-bottom:1.5rem}
.hero-pill::before{content:'';width:6px;height:6px;background:#6EEDB8;border-radius:50%;display:inline-block;flex-shrink:0}
.hero h1{font-family:'Playfair Display',serif;font-size:2.8rem;font-weight:800;line-height:1.15;margin-bottom:1rem}
.hero h1 em{font-style:italic;color:#A8EDCA}
.hero>div>p{font-size:1rem;opacity:0.82;margin-bottom:1rem;line-height:1.8;font-weight:300}
.hero-btns{display:flex;gap:0.75rem;flex-wrap:wrap}
.btn-primary{background:#fff;color:var(--green);border:none;font-family:'DM Sans',sans-serif;font-weight:500;font-size:0.9rem;padding:12px 24px;border-radius:10px;cursor:pointer;transition:all 0.2s;box-shadow:0 4px 16px rgba(0,0,0,0.15)}
.btn-ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,0.45);font-family:'DM Sans',sans-serif;font-weight:400;font-size:0.9rem;padding:12px 24px;border-radius:10px;cursor:pointer;transition:all 0.2s}
 
/* ===== STATS ===== */
.stats-row{display:grid;grid-template-columns:repeat(3,1fr);background:#fff;border-bottom:1.5px solid var(--border)}
.stat{padding:1.5rem 1rem;text-align:center;border-right:1px solid var(--border)}
.stat:last-child{border-right:none}
.stat-n{font-family:'Playfair Display',serif;font-size:2rem;color:var(--green);font-weight:700;display:block}
.stat-l{font-size:0.72rem;color:var(--muted);margin-top:2px;display:block;line-height:1.4}
 
/* ===== SECTIONS ===== */
.section{padding:3rem 1.5rem;max-width:960px;margin:0 auto}
.sec-label{font-size:0.68rem;letter-spacing:0.12em;text-transform:uppercase;color:var(--green);font-weight:500;margin-bottom:0.4rem}
.sec-h{font-family:'Playfair Display',serif;font-size:1.8rem;color:var(--text);margin-bottom:0.65rem;line-height:1.3}
.sec-p{color:var(--muted);line-height:1.9;font-size:0.93rem;max-width:560px}
 
/* ===== PILLARS ===== */
.pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2rem}
.pillar{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:1.5rem;transition:all 0.25s}
.pillar:hover{border-color:var(--green);box-shadow:0 8px 32px rgba(26,107,60,0.12);transform:translateY(-3px)}
.p-icon{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem;font-size:1.3rem}
.pillar h3{font-size:0.95rem;font-weight:500;margin-bottom:0.4rem}
.pillar p{font-size:0.8rem;color:var(--muted);line-height:1.7}
.p-count{margin-top:0.85rem;font-size:0.75rem;font-weight:500;color:var(--green);padding:4px 12px;background:var(--green-light);border-radius:20px;display:inline-block}
 
/* ===== DONATE STRIP ===== */
.donate-strip{background:var(--green-dark);color:#fff;padding:2.5rem 1.5rem;margin-bottom:0}
.donate-inner{max-width:960px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.donate-text h3{font-family:'Playfair Display',serif;font-size:1.6rem;margin-bottom:0.5rem;line-height:1.3}
.donate-text p{opacity:0.8;font-size:0.88rem;line-height:1.7;max-width:440px}
.qr-block{background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);border-radius:16px;padding:1.25rem 1.75rem;text-align:center;flex-shrink:0}
.qr-img{width:100px;height:100px;background:#fff;border-radius:10px;margin:0 auto 0.65rem;display:flex;align-items:center;justify-content:center}
.qr-label{font-size:0.68rem;opacity:0.75;letter-spacing:0.08em;text-transform:uppercase}
.upi-id-small{font-size:0.78rem;opacity:0.9;margin-top:0.3rem;font-weight:500}
 
/* ===== WORK PAGE ===== */
.work-hero{background:var(--green-pale);border-bottom:1.5px solid var(--border);padding:2.5rem 1.5rem 0}
.work-hero-in{max-width:960px;margin:0 auto}
.work-tabs{display:flex;gap:0.4rem;margin-top:1.5rem;overflow-x:auto;padding-bottom:0;-webkit-overflow-scrolling:touch}
.work-tabs::-webkit-scrollbar{display:none}
.wtab{background:none;border:none;font-family:'DM Sans',sans-serif;font-size:0.82rem;color:var(--muted);padding:10px 16px;border-radius:10px 10px 0 0;cursor:pointer;border-bottom:3px solid transparent;margin-bottom:-1.5px;transition:all 0.2s;white-space:nowrap;flex-shrink:0}
.wtab.active{color:var(--green);border-bottom-color:var(--green);background:#fff;font-weight:500}
.work-body{max-width:960px;margin:0 auto;padding:2rem 1.5rem 3rem}
.wtab-content{display:none}
.wtab-content.active{display:block}
 
.events-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:1.25rem}
.ev-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:all 0.2s}
.ev-thumb{height:110px;display:flex;align-items:center;justify-content:center;font-size:2.8rem}
.ev-body{padding:1.1rem}
.ev-tag{display:inline-block;font-size:0.65rem;font-weight:500;letter-spacing:0.06em;text-transform:uppercase;padding:3px 10px;border-radius:20px;margin-bottom:0.5rem}
.ev-body h4{font-size:0.9rem;font-weight:500;margin-bottom:0.3rem}
.ev-body p{font-size:0.78rem;color:var(--muted);line-height:1.65}
.ev-meta{display:flex;flex-wrap:wrap;gap:0.75rem;margin-top:0.85rem;padding-top:0.75rem;border-top:1px solid var(--border)}
.ev-meta span{font-size:0.7rem;color:var(--muted)}
 
.students-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.25rem}
.stu-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:1.25rem;text-align:center;transition:all 0.2s}
.stu-card:hover{border-color:var(--green)}
.av{width:56px;height:56px;border-radius:50%;margin:0 auto 0.85rem;display:flex;align-items:center;justify-content:center;font-weight:500;font-size:1rem}
.stu-card h4{font-size:0.87rem;font-weight:500;margin-bottom:0.15rem}
.stu-card .cls{font-size:0.72rem;color:var(--muted)}
.stu-badge{display:inline-block;font-size:0.65rem;font-weight:500;padding:3px 10px;border-radius:20px;margin-top:0.65rem}
 
/* ===== MEMBERS ===== */
.members-hero{background:var(--green-pale);border-bottom:1.5px solid var(--border);padding:3rem 1.5rem}
.members-inner{max-width:1024px;margin:0 auto}
.mem-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.75rem}
.mem-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:1.25rem;display:flex;gap:1rem;align-items:flex-start;transition:all 0.2s}
.mem-card:hover{border-color:var(--green)}
.mem-av{width:170px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-weight:500;font-size:0.95rem}
.mem-details h4{font-size:0.88rem;font-weight:500;margin-bottom:0.15rem}
.role-tag{font-size:0.65rem;font-weight:500;padding:3px 10px;border-radius:20px;background:var(--green-light);color:var(--green);display:inline-block;margin-bottom:0.4rem}
.mem-details p{font-size:0.76rem;color:var(--muted);line-height:1.65}
 
.join-wrap{max-width:960px;margin:0 auto;padding:2rem 1.5rem 3rem}
.join-box{background:var(--green);color:#fff;border-radius:16px;padding:2rem 1.5rem;text-align:center}
.join-box h3{font-family:'Playfair Display',serif;font-size:1.5rem;margin-bottom:0.5rem;line-height:1.3}
.join-box p{opacity:0.82;font-size:0.86rem;line-height:1.8;max-width:440px;margin:0 auto 1.25rem}
.btn-white{background:#fff;color:var(--green);border:none;font-family:'DM Sans',sans-serif;font-weight:500;font-size:0.88rem;padding:11px 24px;border-radius:10px;cursor:pointer;transition:all 0.2s}
 
/* ===== HELP ===== */
.help-wrap{max-width:960px;margin:0 auto;padding:3rem 1.5rem}
.help-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;margin-top:1.75rem}
.h-card{border-radius:18px;padding:2rem}
.h-card.green{background:var(--green);color:#fff}
.h-card.light{background:#fff;border:1.5px solid var(--border)}
.h-card h3{font-family:'Playfair Display',serif;font-size:1.4rem;margin-bottom:0.65rem;line-height:1.3}
.h-card p{font-size:0.84rem;line-height:1.8;margin-bottom:1.5rem}
.h-card.green p{opacity:0.82}
.h-card.light p{color:var(--muted)}
.hbtn{display:inline-block;padding:11px 22px;border-radius:10px;font-family:'DM Sans',sans-serif;font-size:0.86rem;font-weight:500;border:none;cursor:pointer;transition:all 0.2s}
.h-card.green .hbtn{background:#fff;color:var(--green)}
.h-card.light .hbtn{background:var(--green);color:#fff}
.h-note{margin-top:1rem;font-size:0.73rem;opacity:0.75}
.h-card.light .h-note{color:var(--muted);opacity:1}
 
.qr-section{background:var(--green-pale);border:1.5px solid var(--border);border-radius:18px;padding:2.25rem 1.5rem;margin-top:1.75rem;text-align:center}
.qr-section h3{font-family:'Playfair Display',serif;font-size:1.35rem;margin-bottom:0.4rem}
.qr-section>p{color:var(--muted);font-size:0.86rem;margin-bottom:1.75rem;line-height:1.7}
.big-qr{width:150px;height:150px;background:#fff;border-radius:16px;margin:0 auto;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow)}
.upi-label{margin-top:1rem;font-size:0.78rem;color:var(--muted)}
.upi-chip{display:inline-block;background:#fff;border:1.5px solid var(--border);border-radius:8px;padding:8px 18px;font-weight:500;color:var(--green);font-size:0.9rem;margin-top:0.4rem}
.tax-note{margin-top:1rem;font-size:0.73rem;color:var(--muted)}
 
/* ===== ABOUT ===== */
.about-hero{background:linear-gradient(135deg,#0A3D1F,#1A6B3C);color:#fff;padding:4rem 1.5rem}
.about-inner{max-width:960px;margin:0 auto}
.about-hero h2{font-family:'Playfair Display',serif;font-size:2.1rem;font-weight:800;margin-bottom:1rem;line-height:1.2}
.about-hero p{opacity:0.82;font-size:0.95rem;max-width:540px;line-height:1.85;font-weight:300}
.about-body{max-width:960px;margin:0 auto;padding:3rem 1.5rem}
.values-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:1.5rem}
.val{background:#fff;border:1.5px solid var(--border);border-radius:12px;padding:1.1rem 1.25rem;display:flex;gap:0.85rem;align-items:flex-start}
.val-dot{width:9px;height:9px;border-radius:50%;background:var(--green);flex-shrink:0;margin-top:5px}
.val h4{font-size:0.88rem;font-weight:500;margin-bottom:0.25rem}
.val p{font-size:0.78rem;color:var(--muted);line-height:1.65}
.contact-box{margin-top:1.75rem;background:#fff;border:1.5px solid var(--border);border-radius:14px;padding:1.5rem}
.contact-box h4{font-size:0.92rem;font-weight:500;margin-bottom:0.85rem}
.contact-row{display:flex;align-items:center;gap:0.65rem;margin-bottom:0.65rem;font-size:0.83rem;color:var(--muted)}
.c-icon{width:30px;height:30px;background:var(--green-light);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:0.85rem}
 
/* ===== FOOTER ===== */
footer{background:var(--green-dark);color:#fff;padding:2rem 1.5rem;text-align:center}
.f-brand{font-family:'Playfair Display',serif;font-size:1.2rem;margin-bottom:0.4rem}
.f-links{display:flex;justify-content:center;flex-wrap:wrap;gap:0.75rem 1.25rem;margin-bottom:0.65rem}
.f-links span{font-size:0.75rem;opacity:0.6;cursor:pointer;transition:opacity 0.2s}
.f-links span:hover{opacity:1}
.f-copy{font-size:0.7rem;opacity:0.45;line-height:1.6}
 
/* ===== FLOATING WHATSAPP ===== */
.wa-float{
  position:fixed;bottom:24px;right:20px;
  width:52px;height:52px;
  background:#25D366;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,0.4);
  z-index:998;cursor:pointer;
  transition:transform 0.2s;
}
.wa-float:hover{transform:scale(1.08)}
.wa-float svg{width:28px;height:28px;fill:#fff}
 
/* ===== DONATE FLOAT MOBILE ===== */
.donate-float{
  display:none;
  position:fixed;bottom:0;left:0;right:0;
  background:var(--green);color:#fff;
  padding:14px;text-align:center;
  font-family:'DM Sans',sans-serif;font-size:0.95rem;font-weight:500;
  z-index:997;border:none;cursor:pointer;
  box-shadow:0 -4px 20px rgba(0,0,0,0.12);
}
 
/* ========================================
   RESPONSIVE — TABLET (max 768px)
   ======================================== */
@media(max-width: 1199px){
	.mem-grid{grid-template-columns: repeat(3, 1fr)}
}

@media(max-width:768px){
  /* Nav */
  nav{padding:0 1.25rem}
  .navbar-nav{display:none}
  .hamburger{display:flex}
 
  /* Hero */
  .hero{padding:3rem 1.25rem 2.5rem;text-align:left}
  .hero h1{font-size:2.1rem}
  .hero>div>p{font-size:0.92rem;margin-bottom:1.75rem}
  .btn-primary,.btn-ghost{font-size:0.85rem;padding:11px 20px}
 
  /* Stats */
  .stats-row{grid-template-columns:repeat(3,1fr)}
  .stat{padding:1.1rem 0.5rem}
  .stat-n{font-size:1.6rem}
  .stat-l{font-size:0.65rem}
 
  /* Pillars */
  .pillars{grid-template-columns:1fr;gap:0.85rem}
 
  /* Donate strip */
  .donate-strip{padding:2rem 1.25rem}
  .donate-inner{flex-direction:column;align-items:flex-start;gap:1.5rem}
  .donate-text h3{font-size:1.4rem}
  .qr-block{width:100%;display:flex;align-items:center;gap:1.25rem;padding:1rem 1.25rem}
  .qr-img{margin:0;flex-shrink:0}
 
  /* Events */
  .events-grid{grid-template-columns:1fr}
 
  /* Students */
  .students-grid{grid-template-columns:repeat(2,1fr)}
 
  /* Members */
	.mem-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}
	.mem-av{
		width: 250px;
	}
  .members-hero{padding:2.5rem 1.25rem}
  .mem-grid{grid-template-columns: repeat(1, 1fr)}
 
  /* Help */
  .help-wrap{padding:2.5rem 1.25rem}
  .help-grid{grid-template-columns:1fr}
 
  /* About */
  .about-hero{padding:3rem 1.25rem}
  .about-hero h2{font-size:1.8rem}
  .values-grid{grid-template-columns:1fr}
  .about-body{padding:2.5rem 1.25rem}
 
  /* Work */
  .work-hero{padding:2rem 1.25rem 0}
  .work-body{padding:1.75rem 1.25rem 3rem}
 
  /* Members join */
  .join-wrap{padding:1.75rem 1.25rem 5rem}
 
  /* Section */
  .section{padding:2.5rem 1.25rem}
  .sec-h{font-size:1.6rem}
 
  /* Donate float */
  .donate-float{display:block}
  .wa-float{bottom:72px}
}
 
/* ========================================
   RESPONSIVE — MOBILE (max 480px)
   ======================================== */
@media(max-width:480px){
  .hero h1{font-size:1.75rem}
  .hero-pill{font-size:0.62rem}
  .hero-btns{flex-direction:column;gap:0.6rem}
  .btn-primary,.btn-ghost{width:100%;text-align:center;padding:13px}
 
  .stats-row{grid-template-columns:1fr 1fr 1fr}
  .stat-n{font-size:1.35rem}
  .stat-l{font-size:0.6rem}
 
  .students-grid{grid-template-columns:1fr 1fr}
  .stu-card{padding:1rem}
  .av{width:48px;height:48px;font-size:0.9rem}
 
  .qr-block{flex-direction:column;align-items:center;text-align:center}
 
  .about-hero h2{font-size:1.55rem}
 
  .h-card{padding:1.5rem}
  .h-card h3{font-size:1.25rem}
 
  .join-box{padding:1.75rem 1.25rem}
  .join-box h3{font-size:1.3rem}
 
  .qr-section{padding:1.75rem 1.25rem}
  .big-qr{width:135px;height:135px}
 
  footer{padding:1.75rem 1rem}
  .f-copy{font-size:0.65rem}
 
  .ev-meta{flex-direction:column;gap:0.35rem}
}
.navbar-brand img {
    max-width: 200px;
    height: 65px;
}