/* GENERAL STYLES & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.section-padding { padding: 60px 0; }
.bg-light { background-color: #f8fafd; }
.relative-pos { position: relative; }

/* TOP BAR */
.top-bar {
    background-color: #002147;
    color: #fff;
    font-size: 13px;
    padding: 10px 0;
}

.top-tags span { margin-right: 20px; font-weight: 500; }
.top-right { display: flex; align-items: center; }
.social-links a { color: #fff; margin-left: 15px; font-size: 14px; }

.donate-btn {
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    font-weight: bold;
    margin-left: 20px;
    border-radius: 0 0 4px 4px;
    margin-top: -10px;
}

/* NAVBAR */
.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-area { display: flex; align-items: center; }
.logo-placeholder { font-size: 35px; margin-right: 12px; color: #ff6600; }
.logo-text { display: flex; flex-direction: column; }

.main-title { font-size: 22px; font-weight: 800; color: #002147; line-height: 1.1; }
.sub-title { font-size: 15px; font-weight: 700; color: #ff6600; letter-spacing: 0.5px; }
.tagline { font-size: 11px; color: #00a859; font-weight: 600; }

.nav-menu { display: flex; list-style: none; }
.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    padding: 8px 15px;
    font-size: 14px;
}
.nav-menu li a.active, .nav-menu li a:hover {
    color: #ff6600;
    border-bottom: 2px solid #ff6600;
}

/* EXACT HERO SECTION */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 82vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 35%, rgba(255, 255, 255, 0.4) 65%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-container { position: relative; z-index: 2; }
.hero-text-box h2 { font-size: 52px; color: #002147; font-weight: 800; }
.hero-text-box h1 { font-size: 72px; font-weight: 900; line-height: 1.05; }
.text-orange { color: #ff6600; }
.text-green { color: #00a859; }

.hero-desc { font-size: 20px; margin: 25px 0 35px 0; max-width: 550px; color: #333; font-weight: 600; line-height: 1.5; }
.hero-btns { display: flex; gap: 20px; }

.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-dark-blue { background: #002147; color: white; }
.btn-orange-filled { background: #ff6600; color: white; }

/* 3-Layered Indian Flag Curved Wave */
.tricolor-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 45px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.wave-orange, .wave-white, .wave-green { width: 100%; height: 16px; }
.wave-orange { background-color: #ff9933; clip-path: ellipse(65% 100% at 50% 100%); }
.wave-white  { background-color: #ffffff; clip-path: ellipse(65% 100% at 50% 100%); margin-top: -5px; }
.wave-green  { background-color: #128807; clip-path: ellipse(65% 100% at 50% 100%); margin-top: -5px; }

/* SECTION TITLES WITH LINE DESIGN */
.main-section-title {
    font-size: 26px;
    color: #002147;
    margin-bottom: 40px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-section-title::before, .main-section-title::after {
    content: "";
    height: 2px;
    width: 80px;
    background: #ff6600;
    margin: 0 15px;
}

/* VISION GRID */
.vision-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.vision-card { background: #fff; padding: 35px 25px; border: 1px solid #eef2f5; border-radius: 6px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
.v-icon { font-size: 45px; margin-bottom: 20px; }
.vision-card h3 { font-size: 16px; color: #002147; margin-bottom: 10px; }
.vision-card p { font-size: 14px; color: #666; }
.icon-orange { color: #ff6600; } .icon-blue { color: #002147; } .icon-green { color: #00a859; } .icon-red { color: #eb3b5a; } .icon-purple { color: #a55eea; }

/* TRIPLE GRID */
.triple-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.1fr; gap: 30px; }
@media(max-width: 992px) { .triple-grid { grid-template-columns: 1fr; } }

.box-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #002147; padding-bottom: 10px; margin-bottom: 20px; }
.box-header h3 { font-size: 16px; color: #002147; font-weight: 800; }
.view-all { font-size: 13px; color: #ff6600; text-decoration: none; font-weight: bold;}

.news-item { display: flex; align-items: center; margin-bottom: 15px; background: white; padding: 10px; border-radius: 4px; border: 1px solid #eee; }
.img-placeholder { width: 60px; height: 50px; background: #eef2f5; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-right: 15px; border-radius: 4px; }
.news-item h4 { font-size: 14px; color: #333; margin-bottom: 4px; line-height: 1.3;}
.news-item span { font-size: 12px; color: #999; }
.read-more-btn { width: 100%; background: #002147; color: white; border: none; padding: 12px; font-weight: bold; cursor: pointer; margin-top: 10px; }

.volunteer-banner { background: linear-gradient(rgba(0,33,71,0.9), rgba(0,33,71,0.95)), url('https://images.unsplash.com/photo-1531206715517-5c0ba140b2b8?auto=format&fit=crop&w=600&q=80') center/cover; color: white; padding: 40px 30px; text-align: center; border-radius: 6px; display: flex; flex-direction: column; justify-content: center; }
.volunteer-banner h3 { font-size: 24px; margin-bottom: 15px; font-weight: 800;}
.volunteer-banner p { font-size: 14px; line-height: 1.6; margin-bottom: 25px; color: #ddd;}
.join-now-btn { background: #ff6600; color: white; text-decoration: none; padding: 12px 25px; font-weight: bold; border-radius: 4px; align-self: center; }

.member-box { background: white; padding: 30px; border: 1px solid #eef2f5; border-radius: 6px; }
.member-box h3 { color: #002147; margin-bottom: 10px; font-weight: 800;}
.member-box p { font-size: 14px; color: #666; margin-bottom: 20px;}
.benefit-list { list-style: none; margin-bottom: 25px;}
.benefit-list li { font-size: 14px; margin-bottom: 12px; color: #444;}
.benefit-list li i { color: #00a859; margin-right: 10px;}
.apply-membership-btn { width: 100%; background: #00a859; color: white; border: none; padding: 14px; font-weight: bold; border-radius: 4px; cursor: pointer; }

/* LEADERSHIP SLIDER LOOK */
.leader-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; padding: 0 40px; }
.leader-card { background: #fff; padding: 25px 15px; border: 1px solid #eef2f5; border-radius: 6px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.leader-img { width: 100px; height: 100px; background: #eef2f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 15px auto; border: 3px solid #ff6600; }
.leader-card h4 { font-size: 13px; color: #002147; margin-bottom: 8px; font-weight: 800; }
.leader-card p { font-size: 12px; color: #666; line-height: 1.4; }
.slider-btn { position: absolute; top: 55%; transform: translateY(-50%); background: #ff6600; color: white; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; z-index: 5; }
.prev-btn { left: 0; } .next-btn { right: 0; }

/* GALLERY & EVENTS GRID */
.gallery-events-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
@media(max-width: 768px) { .gallery-events-grid { grid-template-columns: 1fr; } }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-img { aspect-ratio: 1; background: #ddd; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #888; }

.events-list { display: flex; flex-direction: column; gap: 15px; }
.event-item { display: flex; background: white; padding: 15px; border-radius: 6px; border: 1px solid #eee; align-items: center; }
.event-date { background: #002147; color: white; padding: 10px; border-radius: 4px; display: flex; flex-direction: column; align-items: center; min-width: 60px; font-weight: bold; margin-right: 15px; }
.event-date span:first-child { font-size: 18px; }
.event-date span:last-child { font-size: 11px; color: #ff6600; }
.event-details h4 { font-size: 14px; color: #333; margin-bottom: 5px; }
.event-details p { font-size: 12px; color: #777; }

/* SUBSCRIBE BAR */
.subscribe-bar { background-color: #ff6600; color: white; padding: 30px 0; }
.sub-text h3 { font-size: 22px; font-weight: 800; }
.sub-text p { font-size: 14px; color: #fff;}
.sub-form { display: flex; background: white; padding: 5px; border-radius: 4px; width: 100%; max-width: 450px; }
.sub-form input { border: none; padding: 10px; width: 100%; outline: none; }
.sub-form button { background: #002147; color: white; border: none; padding: 10px 20px; font-weight: bold; cursor: pointer; border-radius: 4px; }

/* FOOTER */
footer { background: #001124; color: #a3b8cc; padding: 60px 0 20px 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 40px; border-bottom: 1px solid #002147; padding-bottom: 40px; }
@media(max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.logo-text.inverted .main-title { color: #fff; }
footer h4 { color: white; margin-bottom: 20px; font-size: 16px; font-weight: 800;}
.f-links { list-style: none; }
.f-links li { margin-bottom: 10px; }
.f-links li a { color: #a3b8cc; text-decoration: none; }
.f-links li a:hover { color: #ff6600; }
.contact-info { margin-bottom: 15px; }
.contact-info i { margin-right: 10px; color: #ff6600; }
.footer-socials a { background: #112d4e; width: 35px; height: 35px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 8px; margin-left: 0; }
.footer-bottom { padding-top: 20px; font-size: 13px; }
.footer-bottom a { color: #a3b8cc; text-decoration: none; margin: 0 10px; }
