:root{
--primary:#1e3a8a;
--secondary:#15803d;
--accent:#f59e0b;
--bg:#f8fafc;
--card:#ffffff;
--text:#0f172a;
}

body{
margin:0;
font-family:'Poppins','Noto Sans Devanagari',sans-serif;
background:var(--bg);
color:var(--text);
}

.section{
padding:60px 20px;
max-width:1200px;
margin:auto;
}

.btn{
background:var(--secondary);
color:#fff;
padding:12px 20px;
border-radius:8px;
text-decoration:none;
display:inline-block;
}

.card{
background:var(--card);
padding:20px;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
}

.gallery-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
}

.gallery-container img {
  width: 260px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  transition: 0.3s;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* ===== Notices Section ===== */

.notices-section{
  background:#0f172a;
  padding:60px 20px;
}

.section-title{
  color:white;
  margin-bottom:30px;
  font-size:24px;
}

.notice-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.notice-card{
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  transition:0.3s;
}

.notice-card:hover{
  transform:translateY(-5px);
}

.notice-title{
  font-weight:600;
  margin-bottom:10px;
}

.notice-desc{
  font-size:14px;
  color:#444;
  margin-bottom:10px;
}

.notice-btn{
  display:inline-block;
  padding:8px 14px;
  background:#2563eb;
  color:white;
  border-radius:6px;
  text-decoration:none;
  font-size:13px;
}

/* ================= NOTICE CARDS ================= */

.notice-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
  margin-top:20px;
}

.notice-card{
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.notice-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

.notice-title{
  font-weight:600;
  font-size:18px;
  margin-bottom:8px;
}

.notice-desc{
  font-size:14px;
  margin-bottom:10px;
  color:#555;
}

.notice-btn{
  display:inline-block;
  padding:6px 12px;
  background:#1d4ed8;
  color:white;
  text-decoration:none;
  border-radius:6px;
  font-size:13px;
}

.new-badge{
  background:red;
  color:white;
  font-size:11px;
  padding:4px 8px;
  border-radius:12px;
  margin-left:8px;
}


/* ================= STATS ================= */

.stats-container{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

/* FIX NOTICE GRID */
.notice-grid{
  margin-top:20px;
}

/* NEW badge */
.new-badge{
  background:#ff3b3b;
  color:white;
  font-size:10px;
  padding:3px 6px;
  border-radius:5px;
  margin-left:6px;
}


/* Gallery */
.gallery{
  overflow:hidden;
  position:relative;
  width:100%;
}

.gallery-track{
  display:flex;
  gap:20px;
  width:max-content;
  animation:scroll 35s linear infinite;
}

.gallery:hover .gallery-track{
  animation-play-state:paused;
}

.gallery img{
  width:260px;
  height:170px;
  object-fit:cover;
  border-radius:18px;
  transition:transform 0.4s ease;
  flex-shrink:0;
}

.gallery img:hover{
  transform:scale(1.1);
}

@keyframes scroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

.member-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

.member-card h3{
  margin:10px 0 5px;
}

.member-card p{
  margin:5px 0;
  font-size:14px;
  color:#666;
}

.leaders-grid {
  display:flex;
  gap:40px;
  justify-content:center;
  margin-bottom:60px;
  flex-wrap:wrap;
}

.leader-card {
  background:#1f2937;
  padding:30px;
  border-radius:20px;
  text-align:center;
  width:280px;
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.leader-card img {
  width:140px;
  height:140px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:15px;
  border:4px solid #00c6ff;
}

.members-grid {
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:60px;
}

.member-card {
  background:#243b45;
  padding:20px;
  border-radius:15px;
  text-align:center;
  width:200px;
}

.member-card img {
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:10px;
}

/* ===== Leadership Section ===== */
.leadership-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.leader-card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 300px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.leader-card:hover {
  transform: translateY(-8px);
}

.leader-card img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

.leader-card h3 {
  margin: 10px 0 5px;
}

.leader-card p {
  margin: 4px 0;
  font-size: 14px;
}

/* ===== Member Grid ===== */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.member-card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* ================= NAVBAR ================= */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:#1e3a8a;
  color:white;
  position:sticky;
  top:0;
  z-index:1000;
}

.navbar h2{
  margin:0;
  color:white;
}

.nav-links{
  display:flex;
  gap:20px;
}

.nav-links a{
  text-decoration:none;
  color:white;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  opacity:0.7;
}

/* ===== MOBILE MENU ===== */

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:white;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

  .nav-links{
    position:absolute;
    top:60px;
    right:0;
    width:100%;
    background:#1e3a8a;
    flex-direction:column;
    text-align:center;
    padding:20px 0;
    display:none;
  }

  .nav-links a{
    margin:15px 0;
  }

  .menu-toggle{
    display:block;
  }

}

.logo-area img{
  height:60px;
  object-fit:contain;
}

