/* =========================
GLOBAL STYLES
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    color:#222;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

img{
    max-width:100%;
    height: auto;
    display:block;
}

a{
    text-decoration:none;
    transition: .3s;
}

.section-tag{
    color:#ffcc00;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:10px;
    display:inline-block;
}

.btn{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:14px 30px;
    border-radius:5px;
    font-weight:600;
    text-align: center;
    width: fit-content;
}

.btn:hover{
    background:#fff;
}

.btn-outline{
    border:2px solid #fff;
    padding:14px 30px;
    color:#fff;
    border-radius:5px;
}

/* =========================
HEADER & LOGO (120px)
========================= */
.header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:#02024f;
    padding:15px 0;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo-area img{
    width: 120px; 
}

.logo-text h2{
    color:#fff;
    font-size:22px;
}

.logo-text span{
    color:#ffcc00;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1.5px;
}

/* =========================
MULTI-LEVEL MENU & HOVER EFFECT
========================= */
.menu{
    display:flex;
    list-style:none;
    gap:30px;
}

.menu li{
    position:relative;
}

.menu a{
    color:#fff;
    font-weight:500;
}

.menu a:hover{
    color:#ffcc00;
}

/* RESTORED HOVER EFFECT: Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 10px 0;
    list-style: none;
    
    /* Animation Properties */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease-in-out;
    pointer-events: none; /* Prevents ghost hovering */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li a {
    color: #222 !important;
    padding: 10px 25px;
    display: block;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f8f9fc;
    color: #02024f !important;
    padding-left: 30px; /* Slight slide effect on individual links */
}

/* Mobile Toggle Icon */
.mobile-toggle {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 1100;
}

/* =========================
HERO SLIDER (70vh)
========================= */
.hero-slider{
    position:relative;
    height:70vh; 
    overflow:hidden;
    margin-top: 90px;
}

.slide{
    position:absolute;
    inset: 0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active{
    opacity:1;
    z-index: 2;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.slide-content{
    position:relative;
    z-index:3;
    color:#fff;
    max-width:850px;
    padding-top:120px;
    padding-left:8%;
}

.slide-content h1{
    font-size:64px;
    line-height:1.2;
}

/* =========================
ABOUT (Side-by-Side)
========================= */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: 15px; box-shadow: 15px 15px 0 #ffcc00; }

/* =========================
PROGRAMS (65px Icons)
========================= */
.programs-section { padding: 100px 0; background: #f8f9fc; }
.program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.program-card { background: #fff; padding: 40px; border-radius: 10px; text-align: center; }
.program-card .icon { font-size: 65px; display: block; margin-bottom: 20px; }

/* =========================
STATS & NEWS
========================= */
.stats-section { background: #02024f; color: #fff; padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); text-align: center; gap: 30px; }
.stat-box h2 { font-size: 50px; color: #ffcc00; }

.news-section { padding: 100px 0; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.news-card { border-radius: 15px; overflow: hidden; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.news-content { padding: 25px; }

/* =========================
FOOTER (FULL)
========================= */
.footer { background: #02024f; color: #fff; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; padding-bottom: 50px; }
.footer h3 { color: #ffcc00; margin-bottom: 25px; font-size: 18px; }
.footer a { color: #fff; font-size: 14px; }
.footer a:hover { color: #ffcc00; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding: 25px 0; text-align: center; font-size: 14px; color: #aaa; }

/* =========================
MOBILE RESPONSIVE
========================= */
@media(max-width: 991px){
    .mobile-toggle { display: block; }
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #02024f;
        flex-direction: column;
        padding: 100px 30px;
        transition: 0.4s ease-in-out;
    }
    .menu.active { right: 0; }

    .dropdown-menu { 
        position: static; 
        opacity: 1; 
        visibility: visible; 
        display: none; 
        background: rgba(255,255,255,0.08); 
        transform: none; 
        box-shadow: none;
        pointer-events: auto;
    }

    .dropdown:hover .dropdown-menu { display: block; }

    /* MOBILE TEXT COLOR FIX */
    .dropdown-menu li a { 
        color: #ffffff !important; 
        padding: 12px 25px;
    }

    .about-grid { grid-template-columns: 1fr; }
    .donate-btn { display: none; }
    .slide-content h1 { font-size: 42px; }
}

/* =========================
INNER PAGE SPECIFIC STYLES
========================= */
.inner-banner {
    height: 40vh; /* Shorter than the hero slider */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 90px; /* Offset for fixed header */
}

.inner-banner .overlay {
    background: rgba(2, 2, 79, 0.7); /* Branding blue overlay */
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 14px;
    color: #ffcc00;
}

.breadcrumbs a {
    color: #fff;
    margin-right: 5px;
}

/* CONTENT AREA */
.page-content {
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 8fr 4fr; /* Main content and Sidebar */
    gap: 50px;
}

.main-article h2 {
    margin-bottom: 20px;
    color: #02024f;
}

.main-article p {
    margin-bottom: 20px;
}

.sidebar-box {
    background: #f8f9fc;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-box h3 {
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 18px;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.sidebar-links a {
    color: #222;
    font-weight: 500;
}

.sidebar-links a:hover {
    color: #02024f;
    padding-left: 5px;
}

@media (max-width: 991px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    .inner-banner {
        height: 30vh;
    }
    .banner-content h1 {
        font-size: 32px;
    }
}



/* ==========================
MISSION & VISION HERO
========================== */

.mv-hero{
    height:85vh;
    position:relative;
    display:flex;
    align-items:center;
    background:url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f')
    center/cover fixed;
    overflow:hidden;
}

.mv-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(2,2,79,.85),
        rgba(2,2,79,.65)
    );
}

.mv-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:850px;
}

.mv-content h1{
    font-size:72px;
    line-height:1.15;
    margin:20px 0;
    font-weight:800;
}

.mv-content p{
    font-size:22px;
    opacity:.95;
}

/* ==========================
MISSION + VISION
========================== */

.vision-mission-section{
    padding:120px 0;
    background:#f8f9fc;
}

.vm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.vm-card{
    padding:60px;
    border-radius:25px;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.vm-card:hover{
    transform:translateY(-15px);
}

.mission-card{
    background:#02024f;
    color:#fff;
}

.vision-card{
    background:#ffcc00;
}

.icon-box{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:25px;
}

.vm-card h2{
    font-size:34px;
    margin-bottom:20px;
}

/* ==========================
CORE VALUES
========================== */

.values-section{
    padding:120px 0;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

.section-header h2{
    font-size:48px;
    color:#02024f;
    margin-bottom:20px;
}

.values-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.value-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.value-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.value-icon{
    font-size:60px;
    margin-bottom:20px;
}

.value-card h3{
    color:#02024f;
    margin-bottom:15px;
}

/* ==========================
IMPACT QUOTE
========================== */

.impact-quote{
    background:
    linear-gradient(rgba(2,2,79,.9),
    rgba(2,2,79,.9)),
    url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c')
    center/cover fixed;

    padding:120px 0;
    text-align:center;
    color:#fff;
}

.impact-quote blockquote{
    font-size:50px;
    line-height:1.4;
    font-weight:700;
    max-width:900px;
    margin:auto;
}

.impact-quote span{
    display:block;
    margin-top:30px;
    color:#ffcc00;
    font-size:18px;
    letter-spacing:2px;
}

/* ==========================
GLASS EFFECT
========================== */

.value-card,
.vm-card{
    backdrop-filter:blur(10px);
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:991px){

    .vm-grid{
        grid-template-columns:1fr;
    }

    .mv-content h1{
        font-size:42px;
    }

    .mv-content p{
        font-size:18px;
    }

    .section-header h2{
        font-size:34px;
    }

    .impact-quote blockquote{
        font-size:30px;
    }
}

/* ====================================
MISSION VISION CORE VALUES PAGE
==================================== */

.mv-hero{
    height:85vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
    rgba(2,2,79,.80),
    rgba(2,2,79,.75)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f')
    center/cover fixed;
}

.mv-overlay{
    position:absolute;
    inset:0;
}

.mv-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:850px;
}

.mv-content h1{
    font-size:72px;
    line-height:1.15;
    margin:20px 0;
    font-weight:800;
}

.mv-content p{
    font-size:22px;
    max-width:700px;
}

.vision-mission-section{
    padding:120px 0;
    background:#f8f9fc;
}

.vm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.vm-card{
    padding:60px;
    border-radius:25px;
    transition:.5s;
    position:relative;
    overflow:hidden;
}

.vm-card:hover{
    transform:translateY(-15px);
}

.mission-card{
    background:#02024f;
    color:#fff;
}

.vision-card{
    background:#ffcc00;
    color:#000;
}

.icon-box{
    width:90px;
    height:90px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    background:rgba(255,255,255,.2);
    margin-bottom:25px;
}

.vm-card h2{
    font-size:36px;
    margin-bottom:20px;
}

/* =============================
VALUES SECTION
============================= */

.values-section{
    padding:120px 0;
    background:#fff;
}

.section-header{
    text-align:center;
    max-width:800px;
    margin:auto auto 70px;
}

.section-header h2{
    font-size:50px;
    color:#02024f;
    margin-bottom:15px;
}

.values-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.value-card{
    position:relative;

    background:#fff;
    border-radius:25px;
    padding:45px;

    text-align:center;

    border:1px solid rgba(255,204,0,.15);

    transform-style:preserve-3d;
    perspective:1000px;

    transition:
    transform .6s cubic-bezier(.23,1,.32,1),
    box-shadow .6s ease;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    overflow:hidden;
}

.value-card::before{
    content:'';
    position:absolute;
    top:-150%;
    left:-100%;
    width:120%;
    height:400%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.5),
    transparent);

    transform:rotate(25deg);
    transition:.8s;
}

.value-card::after{
    content:'';
    position:absolute;
    inset:0;
    border-radius:25px;

    background:
    radial-gradient(
    circle at center,
    rgba(255,204,0,.20),
    transparent 70%);

    opacity:0;
    transition:.5s;
}

.value-card:hover{
    transform:
    rotateX(10deg)
    rotateY(-10deg)
    translateY(-18px)
    scale(1.03);

    border-color:#ffcc00;

    box-shadow:
    0 35px 70px rgba(0,0,0,.18),
    0 0 30px rgba(255,204,0,.25);
}

.value-card:hover::before{
    left:150%;
}

.value-card:hover::after{
    opacity:1;
}

.value-icon{
    font-size:65px;
    margin-bottom:20px;

    transform:translateZ(40px);

    transition:
    transform .5s ease,
    filter .5s ease;
}

.value-card:hover .value-icon{
    transform:
    translateZ(80px)
    scale(1.2)
    rotate(10deg);

    filter:
    drop-shadow(
    0 10px 15px rgba(255,204,0,.35));
}

.value-card h3{
    color:#02024f;
    margin-bottom:15px;

    transform:translateZ(25px);
    transition:.5s;
}

.value-card:hover h3{
    transform:
    translateZ(55px)
    scale(1.05);
}

.value-card p{
    transform:translateZ(15px);
    transition:.5s;
}

.value-card:hover p{
    transform:translateZ(35px);
}

/* =============================
QUOTE SECTION
============================= */

.impact-quote{
    background:
    linear-gradient(
    rgba(2,2,79,.90),
    rgba(2,2,79,.90)),
    url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c')
    center/cover fixed;

    padding:140px 0;
    text-align:center;
    color:#fff;
}

.impact-quote blockquote{
    font-size:50px;
    font-weight:700;
    line-height:1.4;
    max-width:900px;
    margin:auto;
}

.impact-quote span{
    display:block;
    margin-top:30px;
    color:#ffcc00;
    letter-spacing:2px;
}

/* =============================
RESPONSIVE
============================= */

@media(max-width:991px){

    .vm-grid{
        grid-template-columns:1fr;
    }

    .mv-content h1{
        font-size:42px;
    }

    .mv-content p{
        font-size:18px;
    }

    .section-header h2{
        font-size:34px;
    }

    .impact-quote blockquote{
        font-size:28px;
    }
}

/* =========================
GLOBAL
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f4f6fb;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
PARALLAX HERO
========================= */
.board-hero{
    height:55vh;
    background:url('board-header.jpg') center/cover fixed;
    position:relative;
    display:flex;
    align-items:center;
    text-align:center;
}

.board-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(2,2,79,.85), rgba(2,2,79,.65));
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.hero-content h1{
    font-size:60px;
    font-weight:800;
}

.hero-content p{
    font-size:18px;
    margin-top:10px;
    color:#ffcc00;
}

/* =========================
BOARD SECTION
========================= */
.board-section{
    padding:100px 0;
}

/* GRID */
.board-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:35px;
}

/* =========================
GLASSMORPHISM CARD
========================= */
.board-card{
    perspective:1000px;
    height:340px;
}

.card-inner{
    position:relative;
    width:100%;
    height:100%;
    transform-style:preserve-3d;
    transition:transform 0.9s ease;
}

.board-card:hover .card-inner{
    transform:rotateY(180deg);
}

/* FRONT + BACK */
.card-front,
.card-back{
    position:absolute;
    inset:0;
    backface-visibility:hidden;
    border-radius:20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:25px;

    /* GLASS EFFECT */
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.25);
    box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

/* FRONT */
.card-front img{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #ffcc00;
    margin-bottom:15px;
}

.card-front h3{
    font-size:17px;
    color:#02024f;
    text-align:center;
}

.card-front span{
    font-size:13px;
    color:#555;
}

/* BACK */
.card-back{
    transform:rotateY(180deg);
    background:rgba(2,2,79,0.85);
    color:#fff;
    text-align:center;
}

.card-back p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:20px;
    padding:0 10px;
}

/* LINKEDIN BUTTON */
.linkedin{
    display:inline-flex;
    align-items:center;
    gap:8px;

    background:#ffcc00;
    color:#000;
    padding:10px 18px;
    border-radius:6px;

    font-weight:600;
    font-size:14px;

    transition:.3s ease;
    text-decoration:none;
}

.linkedin i{
    font-size:16px;
}

.linkedin:hover{
    background:#fff;
    transform:translateY(-2px);
}

/* =========================
RESPONSIVE
========================= */
@media(max-width:768px){

    .hero-content h1{
        font-size:36px;
    }

    .board-card{
        height:320px;
    }
}

/* =========================
GLOBAL
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f4f6fb;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
HERO (PARALLAX STYLE)
========================= */
.program-hero{
    height:45vh;
    background:url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover fixed;
    display:flex;
    align-items:center;
    text-align:center;
    position:relative;
}

.program-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(2,2,79,.85), rgba(2,2,79,.65));
}

.program-hero h1{
    font-size:55px;
    color:#fff;
    position:relative;
    z-index:2;
}

.program-hero p{
    color:#ffcc00;
    position:relative;
    z-index:2;
    margin-top:10px;
}

/* =========================
GRID
========================= */
.program-section{
    padding:100px 0;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:30px;
}

/* =========================
V-CARD STYLE (GLASSMORPHISM)
========================= */
.program-card{
    text-decoration:none;
    color:#222;

    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.25);

    padding:40px 30px;
    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    transition:all .4s ease;

    position:relative;
    overflow:hidden;
}

.program-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* glow effect */
.program-card::before{
    content:'';
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:radial-gradient(circle, rgba(255,204,0,0.25), transparent 60%);
    opacity:0;
    transition:.5s;
}

.program-card:hover::before{
    opacity:1;
}

/* ICON */
.icon{
    font-size:50px;
    margin-bottom:15px;
}

/* TEXT */
.program-card h3{
    font-size:22px;
    color:#02024f;
    margin-bottom:10px;
}

.program-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}


/* =========================================================
IMPACT PAGE MODULE (ADD-ON - SAFE TO APPEND TO style.css)
========================================================= */

/* -------------------------
IMPACT HERO (PARALLAX HEADER)
------------------------- */
.impact-hero{
    height:45vh;
    background:url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover fixed;
    position:relative;
    display:flex;
    align-items:center;
    text-align:center;
}

.impact-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(2,2,79,.85), rgba(2,2,79,.65));
}

.impact-hero .container{
    position:relative;
    z-index:2;
}

.impact-hero h1{
    color:#fff;
    font-size:52px;
    font-weight:800;
    margin-bottom:10px;
}

.impact-hero p{
    color:#ffcc00;
    font-size:16px;
}

/* -------------------------
CAROUSEL SECTION
------------------------- */
.carousel-section{
    padding:80px 0;
}

.carousel{
    position:relative;
    height:520px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

/* SLIDES */
.slides{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slides.active{
    opacity:1;
}

.slides img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CAPTION */
.caption{
    position:absolute;
    bottom:25px;
    left:25px;
    background:rgba(2,2,79,0.80);
    color:#fff;
    padding:12px 18px;
    border-radius:10px;
    font-size:14px;
    border-left:4px solid #ffcc00;
}

/* NAV BUTTONS */
.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    background:rgba(255,255,255,0.85);
    font-size:20px;
    transition:.3s;
}

.prev:hover, .next:hover{
    background:#ffcc00;
}

.prev{ left:15px; }
.next{ right:15px; }

/* -------------------------
PROJECTS SECTION
------------------------- */
.projects-section{
    padding:100px 0;
    background:#f8f9fc;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#02024f;
    margin-bottom:50px;
    font-weight:800;
}

/* GRID */
.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:30px;
}

/* GLASS PROJECT CARDS */
.project-card{
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.25);

    padding:30px;
    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    transition:all .4s ease;
    position:relative;
    overflow:hidden;
}

/* glow effect */
.project-card::before{
    content:'';
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:radial-gradient(circle, rgba(255,204,0,0.18), transparent 60%);
    opacity:0;
    transition:.5s;
}

.project-card:hover::before{
    opacity:1;
}

.project-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.project-card h3{
    color:#02024f;
    margin-bottom:10px;
    font-size:18px;
}

.project-card p{
    font-size:14px;
    line-height:1.7;
    color:#555;
}

/* -------------------------
RESPONSIVE FIX
------------------------- */
@media(max-width:768px){

    .impact-hero h1{
        font-size:36px;
    }

    .carousel{
        height:320px;
    }

    .section-title{
        font-size:28px;
    }
}

/* =========================================================
CONTACT PAGE ADD-ON (DO NOT DUPLICATE GLOBAL STYLES)
========================================================= */

/* HERO */
.contact-hero{
    height:40vh;
    background:url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover fixed;
    position:relative;
    display:flex;
    align-items:center;
    text-align:center;
}

.contact-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(2,2,79,.85), rgba(2,2,79,.65));
}

.contact-hero .container{
    position:relative;
    z-index:2;
}

.contact-hero h1{
    color:#fff;
    font-size:48px;
    font-weight:800;
}

.contact-hero p{
    color:#ffcc00;
}

/* LAYOUT */
.contact-section{
    padding:90px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

/* FORM */
.contact-form{
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.25);

    padding:40px;
    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h2{
    color:#02024f;
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;

    border-radius:10px;
    border:1px solid #ddd;

    font-family:inherit;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#ffcc00;
}

/* BUTTON */
.contact-form button{
    background:#ffcc00;
    color:#000;
    padding:14px 20px;
    border:none;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#02024f;
    color:#fff;
}

/* INFO PANEL */
.contact-info{
    background:#02024f;
    color:#fff;
    padding:40px;
    border-radius:20px;
}

.contact-info h2{
    color:#ffcc00;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:12px;
    font-size:14px;
}

.note{
    margin-top:25px;
    padding:15px;
    background:rgba(255,255,255,0.08);
    border-left:4px solid #ffcc00;
    font-size:13px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:20px;

    background:#25D366;
    color:#fff;

    padding:12px 16px;
    border-radius:8px;

    text-decoration:none;
    font-weight:600;

    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
}

/* FLOAT WHATSAPP */
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;

    width:60px;
    height:60px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    box-shadow:0 10px 25px rgba(0,0,0,0.25);

    z-index:9999;

    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* RESPONSIVE */
@media(max-width:991px){
    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:32px;
    }
}


/* =========================================================
PARTNER WITH US (PAYSTACK PAGE ADD-ON)
========================================================= */

/* HERO */
.partner-hero{
    height:40vh;
    background:url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover fixed;
    position:relative;
    display:flex;
    align-items:center;
    text-align:center;
}

.partner-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(2,2,79,.85), rgba(2,2,79,.65));
}

.partner-hero .container{
    position:relative;
    z-index:2;
}

.partner-hero h1{
    color:#fff;
    font-size:48px;
    font-weight:800;
}

.partner-hero p{
    color:#ffcc00;
}

/* GRID */
.partner-section{
    padding:90px 0;
}

.partner-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

/* FORM */
.partner-form{
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.25);

    padding:40px;
    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.partner-form h2{
    color:#02024f;
    margin-bottom:20px;
}

.partner-form input,
.partner-form select{
    width:100%;
    padding:14px;
    margin-bottom:15px;

    border-radius:10px;
    border:1px solid #ddd;

    font-family:inherit;
    outline:none;
}

.partner-form input:focus,
.partner-form select:focus{
    border-color:#ffcc00;
}

/* BUTTON */
.partner-form button{
    width:100%;
    background:#ffcc00;
    color:#000;
    padding:14px;
    border:none;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.partner-form button:hover{
    background:#02024f;
    color:#fff;
}

/* INFO */
.partner-info{
    background:#02024f;
    color:#fff;
    padding:40px;
    border-radius:20px;
}

.partner-info h2{
    color:#ffcc00;
    margin-bottom:20px;
}

.partner-info ul{
    list-style:none;
}

.partner-info ul li{
    margin-bottom:12px;
    font-size:14px;
}

.note{
    margin-top:25px;
    padding:15px;
    background:rgba(255,255,255,0.08);
    border-left:4px solid #ffcc00;
    font-size:13px;
}

/* RESPONSIVE */
@media(max-width:991px){
    .partner-grid{
        grid-template-columns:1fr;
    }

    .partner-hero h1{
        font-size:32px;
    }
}

.partner-form input,
.partner-form select{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.partner-form button{
    width:100%;
    padding:15px;
    background:#ffcc00;
    border:none;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
}

.account-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.account-card{
    background:#fff;
    width:90%;
    max-width:600px;
    padding:35px;
    border-radius:20px;
    position:relative;
}

.close-modal{
    position:absolute;
    top:15px;
    right:20px;
    font-size:28px;
    cursor:pointer;
}

.summary-box{
    background:#f8f9fc;
    padding:15px;
    border-radius:10px;
    margin:15px 0;
}

.account-box{
    background:#fff;
    border-left:4px solid #ffcc00;
    padding:15px;
    margin-top:15px;
}

.success-box{
    background:#e8fff0;
    color:#008a3d;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
    font-weight:600;
}

.error-box{
    background:#ffeaea;
    color:#d00000;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
    font-weight:600;
}

.whatsapp-card{
    margin-top:30px;
    display:flex;
    align-items:flex-start;
    gap:15px;
    background:#f5fff8;
    border:1px solid #d9f3df;
    padding:20px;
    border-radius:15px;
}

.whatsapp-card i{
    font-size:42px;
    color:#25D366;
}

.whatsapp-card h3{
    margin-bottom:5px;
}

.whatsapp-card p{
    margin-bottom:12px;
}

.whatsapp-card a{
    display:inline-block;
    background:#25D366;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.whatsapp-card a:hover{
    opacity:.9;
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.whatsapp-float:hover{
    transform:scale(1.05);
}