body {
  font-family: 'Noto Sans Devanagari', sans-serif;
}

body{
            font-family: 'Noto Sans Devanagari', sans-serif;
            margin:0;
            padding:0;
        }
        .header {
            background: #ff9933;
            color: white;
            text-align: center;
            padding: 20px 15px; /* 👉 padding वाढव */
            /* height remove केला */
        }

          .header h1 {
            margin: 0;
            font-size: 42px;  
        
        }

          .header p {
            font-size: 16px;
            margin: 5px 0 0 0;
            color: #f1f1f1;
            letter-spacing: 1px;
          }
         
        .nav {
  display: flex;
  gap: 25px;                 /* spacing */
  background: #333;
  padding: 14px 20px;        /* 👉 height control */
  align-items: center;
  justify-content: center;
}

.nav a {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 16px;           /* 👉 font size */
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  white-space: nowrap;
  transition: 0.3s;
}

/* Hover effect */
.nav a:hover {
  color: yellow;
  background: #444;
  border-radius: 5px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #444;
  top: 40px;
  left: 0;
  min-width: 180px;
  z-index: 1000;
}
/* 👉 हे add कर */
.dropdown-content.show {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: white;
}

/* General */
body { margin:0; padding:0; }

/* Slider container */
.slider {
    position: relative;
    width: 100vw;
    height: 100vh;  /* full screen */
    overflow: hidden;
}

/* Slides */
.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Overlay text - LEFT side */
.slider-text {
    position: absolute;
    top: 50%;
    left: 10%; /* Left side */
    transform: translateY(-50%);
    color: white;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    max-width: 40%; /* text box width */
}

.slider-text h2 {
    font-size: 3em;
    margin: 0 0 10px 0;
}

.slider-text p {
    font-size: 1.5em;
    margin: 0;
}



.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: #f3eee9; /* softer background */
    padding: 50px;
    border-radius: 30px;
    margin: 40px;
}

/* Card */
.stat-card {
    background: #f9f6f3;
    padding: 25px 15px;
    text-align: center;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    min-height: 130px;
}

/* Hover effect */
.stat-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.icon {
    background: #fde6d8;
    color: #e67e22;
    font-size: 18px;
    width: 55px;
    height: 55px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Number */
.stat-card h2 {
    margin: 15px 0 5px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

/* Text */
.stat-card p {
    color: #777;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
}




/* ===== SCHEMES SECTION ===== */
.schemes-wrapper {
    padding: 50px 20px;
    background: #f8f9fa;
}

.schemes-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 26px;
    color: #333;
}

/* GRID */
.schemes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.scheme-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.scheme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ICON IMAGE */
.scheme-card img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* ICON HOVER */
.scheme-card:hover img {
    transform: scale(1.1);
}

/* TEXT */
.scheme-card span {
    display: block;
    font-size: 15px;
    font-weight: 500;
}


.scheme-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    color: #333;

    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.scheme-card:hover {
    transform: rotateX(10deg) rotateY(-10deg) scale(1.05);
    box-shadow: 0 25px 40px rgba(0,0,0,0.2);
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .schemes-wrapper {
        padding: 30px 10px;
    }

    .scheme-card {
        padding: 15px;
    }

    .scheme-card img {
        width: 55px;
        height: 55px;
    }

    .scheme-card span {
        font-size: 14px;
    }
}


.members-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    flex-wrap: wrap;
}

.member-card {
    background: #fff;
    width: 260px;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.member-card img {
    width: 110px;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

.member-card h4 {
    margin-top: 15px;
    font-size: 18px;
}

.member-card p {
    color: #777;
    margin-top: 8px;
}






.footer {
  background: linear-gradient(to right, #3b2a1f, #4b3326);
  color: #fff;
  padding: 50px 20px 20px;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

/* Logo section */
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.footer-col h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: #ddd;
  cursor: pointer;
}

.footer-col ul li:hover {
  color: #fff;
}

.footer-col p {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 8px;
}

.address {
  margin-top: 10px;
  line-height: 1.6;
}

/* Bottom line */
.copyright {
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: #ccc;
  font-size: 14px;
}
.footer-map {
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
}