/* Global settings */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    color: #333;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 600;
}

/* Navbar */
/* HEADER FIXED HEIGHT LESS */
header {
    position: sticky;
    top: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

/* SMALLER LOGO */
header .logo {
    height: 50px;   /* Earlier 100px था इसलिए बहुत बड़ा लग रहा था */
    width: auto;
}

/* NAVBAR LINKS */
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #1B8C3B;
    font-size: 16px;
    font-weight: 500;
}
.logo {
    width: 95px;        /* Bigger but balanced */
    height: auto;
    margin-left: 20px;  /* Adds breathing space */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    font-size: 16px;
    color: #1b8c3b;
    font-weight: 500;
}

nav a:hover {
    color: #15702f;
}

/* Hero banner */
.hero {
    background: linear-gradient(to right, #1b8c3b, #15702f);
    color: white;
    text-align: center;
    padding: 70px 20px;
    border-radius: 12px;
    margin: 40px auto;
    width: 85%;
}

/* Cards layout */
.focus-cards, .activities-list, .team-grid {
    display: grid;
    gap: 25px;
    margin: 40px auto;
    width: 85%;
}

.focus-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.activities-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card, .activity, .team-card {
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

/* Footer */
footer {
    background: #1b8c3b;
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: 50px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

input, textarea {
    padding: 12px;
    border: 2px solid #1b8c3b;
    border-radius: 6px;
}

button {
    padding: 12px;
    border: none;
    background: #1b8c3b;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #15702f;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    animation: zoomIn 0.8s forwards;
}

@keyframes zoomIn {
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .logo {
        width: 80px;
        margin-left: 10px;
    }
}


