:root {
  --blue-main: #2E2A72;
  --yellow-main: #F4D000;
  --red-accent: #C62828;
  --white: #FFFFFF;
  --light-text: #EDEDED;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #000;
}

/* TOP SOCIAL BAR */
.top-social {

    background-color: #FFC300   /* Bright Yellow */
;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
}

.top-social a {
    text-decoration: none;

}

.social-icons i {
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.quick-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    margin-left: 15px;
}

/* MAIN NAVBAR */
.navbar {
    background-color:#2E2A72   /* Dark Navy Blue */
;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    color: var(--light-text); /* Light Gray / White */
 ;
    
}

.logo a .dal{
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    color:#FFC300   /* Bright Yellow */
;}

.menu a {
    text-decoration: none;
    color: #E5E7EB;
    margin-left: 20px;
    font-weight: 600;
}

/* HOVER EFFECT */
.menu a:hover,
.quick-links a:hover {
    color: red;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
        color: #E5E7EB;
    }

    .menu {
        
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu a {
        margin: 8px;
    }
}


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
}

/* Background image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("assets/images/march.avif");
    /* crowd / march image */
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: 1;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 39, 39, 0.65);
    z-index: 2;
}

/* Content wrapper */
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    height: 100vh;
    color: #fff;
}

/* Text area */
.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn.primary {
    background-color: #e63946;
    color: #fff;
}

.btn.primary:hover {
    background-color: #c92f3b;
}

.btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Leader image */
.hero-leader img {
    max-height: 85vh;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
    animation: float 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 120px 20px 40px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-leader img {
        max-height: 55vh;
        margin-top: 30px;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}


/* ===== ABOUT SECTION ===== */
.about-section {
    background-color:#FFC300;
    padding: 80px 0;
}

.about-container {
    background-color:#2E2A72;
    width: 85%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Image */
.about-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Content */
.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #E5E7EB;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #E5E7EB;
    margin-bottom: 18px;
}

/* Button */
.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 26px;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s ease;
}

.about-btn:hover {
    background-color: #c92f3b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-image img {
        max-width: 100%;
    }
}


/* ===== VISION & MISSION ===== */
.vision-section {
    background-color:#2E2A72;
    
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #E5E7EB;
}

.vision-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* Cards */
.vision-card {
    background-color: #FFC300;
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

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

.vision-card i {
    font-size: 42px;
    color: #e63946;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: ;
}

.vision-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


/* ===== KEY ISSUES SECTION ===== */
.issues-section {
    background-color:#2E2A72;
    padding: 80px 20px;
    text-align: center;
}

.issues-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Issue card */
.issue-card {
    background-color: #FFC300;
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

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

.issue-card i {
    font-size: 40px;
    color: #e63946;
    margin-bottom: 18px;
}

.issue-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
}

.issue-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ===== WHY JOIN US ===== */
.why-section {
    background-color: #FFC300;
    padding: 90px 20px;
}

.why-container {
    background-color:#2E2A72 ;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Content */
.why-content {
    max-width: 550px;
}

.why-content h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
    color: var(--light-text);
}

.why-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.why-content ul li {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 14px;
}

/* Button */
.why-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s ease;
}

.why-btn:hover {
    background-color: #c92f3b;
}

/* Image */
.why-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 14px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .why-container {
        flex-direction: column;
        text-align: center;
    }

    .why-content h2 {
        font-size: 2.2rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    width: 100vw;
    padding: 100px 20px;
    background-image: url("assets/images/march.avif");
    /* optional image */
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    color: #fff;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 34px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s ease;
}

.cta-btn.primary {
    background-color: #e63946;
    color: #fff;
}

.cta-btn.primary:hover {
    background-color: #c92f3b;
}

.cta-btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.cta-btn.secondary:hover {
    background-color: #fff;
    color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: #111;
    color: #ddd;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 0 20px 40px;
}

/* Footer box */
.footer-box h3,
.footer-box h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #fff;
}

/* Social icons */
.footer-social i {
    font-size: 22px;
    margin-right: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-social i:hover {
    color: #e63946;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: #aaa;
}