/* ====================================
   NCMDLCA BRAND COLORS
==================================== */

:root{
    --primary: #1E8E3E;
    --primary-dark: #0F5E26;
    --primary-light: #EAF8ED;
    --secondary: #5FBF73;
    --black: #111111;
    --dark: #1F2937;
    --white: #FFFFFF;
    --light: #F8FAF8;
    --gray: #6B7280;

    --shadow: 0 8px 25px rgba(0,0,0,.08);
    --radius: 15px;
    --transition: all .3s ease;
}

/* ====================================
   GENERAL
==================================== */

body{
    font-family: "Segoe UI", sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

section{
    padding: 80px 0;
}

img{
    max-width: 100%;
}

/* ====================================
   HERO SECTION
==================================== */

.hero-section{
    position: relative;
    min-height: 500px; 
    overflow: hidden;
    margin: 0;
    padding: 0;

    background:
    linear-gradient(
        rgba(3, 117, 35, 0.92),
        rgba(69, 158, 94, 0.92)
    ),
    url('../images/banner.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    color: var(--white);
}

.hero-section h1{
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section p{
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: .95;
}

.hero-badge{
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: #fff;
    /* padding: 10px 20px; */
    border-radius: 50px;
    /* margin-bottom: 20px; */
    font-size: .9rem;
    letter-spacing: 1px;
}

.hero-logo{
    max-height: 340px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,.35));
}

/* ====================================
   BUTTONS
==================================== */

.btn-brand{
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-brand:hover{
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-brand{
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-outline-brand:hover{
    background: var(--white);
    color: var(--primary-dark);
}

/* ====================================
   SERVICE CARDS
==================================== */

.service-card{
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover{
    transform: translateY(-10px);
}

.service-card i{
    color: var(--primary);
    font-size: 45px;
    margin-bottom: 20px;
}

.service-card h4{
    font-weight: 700;
    margin-bottom: 15px;
}

/* ====================================
   BENEFITS
==================================== */

.benefits-section{
    background: var(--primary-light);
}

.benefit-box{
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-box:hover{
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ====================================
   VERIFICATION SECTION
==================================== */

.verification-section{
    background: var(--white);
}

.verification-section .form-control{
    min-height: 60px;
    border-radius: 10px;
}

/* ====================================
   STATISTICS
==================================== */

.statistics-section{
    background: var(--black);
    color: var(--white);
}

.statistics-section h2{
    color: var(--secondary);
    font-size: 3rem;
    font-weight: 800;
}

.statistics-section p{
    margin: 0;
    opacity: .9;
}

/* ====================================
   NEWS SECTION
==================================== */

.news-card{
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.news-card:hover{
    transform: translateY(-8px);
}

.news-card h5{
    color: var(--primary-dark);
    font-weight: 700;
}

/* ====================================
   SECTION TITLES
==================================== */

.section-title h2,
.about-section h2,
.benefits-section h2,
.news-section h2,
.verification-section h2{
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width: 991px){

    .hero-section{
        text-align: center;
        padding: 100px 0; 
        min-height: auto;
        
    margin: 0;
    padding: 0;
    }

    .hero-logo{
        margin-top: 40px;
        max-height: 250px;
    }

    .hero-section h1{
        font-size: 2.5rem;
    }
}

@media(max-width: 576px){

    .hero-section h1{
        font-size: 2rem;
    }

    .btn-brand,
    .btn-outline-brand{
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ====================================
   FOOTER STYLING
==================================== */

.footer-section{
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0;
}

.footer-section h4{
    color: var(--primary-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p{
    opacity: .9;
}

/* Footer links */
.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 10px;
}

.footer-links a{
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover{
    color: var(--secondary);
    padding-left: 5px;
}

/* Footer bottom text */
.footer-section hr{
    border-color: rgba(255,255,255,.2);
    margin: 30px 0;
}

.navbar{
    background: var(--primary-dark);
}

.navbar .nav-link{
    color: var(--white);
    transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
    color: var(--secondary);
}

.navbar-brand{
    color: var(--white);
    font-weight: 800;
}

/* ================================
   PRESIDENT SECTION
================================ */

.president-section{
    background: var(--white);
}

.president-img{
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 420px;
    object-fit: cover;
}

.about-img{
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 420px;
    object-fit: cover;
}

.section-badge{
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-list{
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list li{
    margin-bottom: 10px;
    color: var(--dark);
}


.about-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.about-section {
    padding: 60px 20px;
}

.about-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.section-title {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.president-card {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.president-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--primary);
}

.footer-note {
    text-align: center;
    padding: 30px;
    color: #666;
    font-size: 14px;
}

/* ===========================
   CONTACT PAGE STYLES
=========================== */

.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.contact-section {
    padding: 60px 20px;
}

.contact-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.contact-title {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 100%;
    margin-bottom: 15px;
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.map-frame {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

.image-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-wrapper img {
            max-width: 100%;
            max-height: 100vh;
            object-fit: contain;
        }

        /* ====================================
   MOBILE NAV IMPROVEMENT
==================================== */

.navbar-toggler{
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus{
    box-shadow: none;
}

.navbar-nav .nav-link{
    color: #fff !important;
    font-weight: 500;
    padding: 12px 10px;
    transition: .3s;
}

.navbar-nav .nav-link:hover{
    color: #b0f5b0 !important;
}

/* MOBILE MENU BACKGROUND */
@media (max-width: 991px){

    .navbar-collapse{
        background: linear-gradient(
            135deg,
            #0F5E26,
            #1E8E3E
        );

        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
    }

    .navbar-nav{
        gap: 10px;
    }

    .btn-brand{
        width: 100%;
        margin-top: 10px;
    }
}

.hero-banner{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}