/* ==========================================
AJP WEBSITE VERSION 3.0
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}
/* ==========================================
TOP BAR
========================================== */
.top-bar{
    background:#0b2d6d;
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

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

.top-left{
    display:flex;
    align-items:center;
    gap:8px;
}

.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.top-text{
    font-weight:500;
}
.social-links{
    display:flex;
    gap:10px;
}

.social-links a{
    width:34px;
    height:34px;
    background:#a00032;
    border:1px solid #a00032;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    background:#ffffff;
    color:#a00032;
    border-color:#ffffff;
    transform:translateY(-3px);
}

/* ==========================================
HEADER
========================================== */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.main-header{
    padding:8px 0;
}

.main-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.logo img{
    width:60px;
}

.logo-text h1{
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
}

.logo-text p{
    color:#a00032;
    font-size:16px;
    font-weight:600;
}

/* ==========================================
MENU
========================================== */

nav{
    margin-left:auto;
}

nav ul{
    display:flex;
    align-items:center;
    gap:15px;
    list-style:none;
}

nav li{
    white-space:nowrap;
}

nav a{
    color:#222;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#0056b3;
}

/* Hide hamburger on desktop */
.menu-btn{
    display:none;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
    color:#0056b3;
}

/* ==========================================
MOBILE MENU
========================================== */

@media (max-width:900px){

    .top-bar{
        display:none;
    }

    .menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        box-shadow:0 10px 20px rgba(0,0,0,.15);
        z-index:999;
    }

    nav.show{
        display:block;
    }

    nav ul{
        flex-direction:column;
        gap:0;
        padding:15px 0;
    }

    nav ul li{
        width:100%;
        text-align:center;
        padding:12px 0;
    }

    .logo img{
        width:50px;
    }

    .logo-text h1{
        font-size:16px;
        white-space:normal;
        line-height:1.2;
    }

    .logo-text p{
        font-size:12px;
    }
}

/* ==========================================
HERO
========================================== */

.hero{
    background:linear-gradient(135deg,#0056b3,#0a2d73);
    color:#fff;
    position:relative;
    overflow:hidden;
    padding:90px 0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.30);
}

.hero-content{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h4{
    color:#FFD54F;
    font-size:22px;
    margin-bottom:10px;
}

.hero-text h1{
    font-size:55px;
    line-height:1.15;
    margin-bottom:20px;
    font-weight:700;
}

.hero-text h3{
    font-size:24px;
    color:#FFD54F;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:320px;
    max-width:100%;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.35);
}

/* ==========================================
BUTTONS
========================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    padding:15px 35px;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
    text-align:center;
}

.btn-primary{
    background:#FFC107;
    color:#000;
}

.btn-primary:hover{
    background:#FFB300;
    transform:translateY(-3px);
}

.btn-secondary{
    background:#fff;
    color:#0056b3;
    margin-left:15px;
}

.btn-secondary:hover{
    background:#f3f3f3;
}

/* ==========================================
SECTION HEADINGS
========================================== */

section{
    padding:80px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-size:42px;
    color:#0056b3;
    margin-bottom:15px;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.7;
}

/* ==========================================
ABOUT SECTION
========================================== */

.about-home{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

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

.about-card i{
    font-size:55px;
    color:#0056b3;
    margin-bottom:20px;
}

.about-card h3{
    color:#7b1032;
    margin-bottom:15px;
}

.about-card p{
    color:#555;
    line-height:1.8;
}

/* ==========================================
TEN PILLARS
========================================== */

.pillars{
    background:#eef4ff;
}

.pillar-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.pillar{
    background:#fff;
    border-radius:15px;
    padding:25px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.pillar:hover{
    background:#0056b3;
    color:#fff;
    transform:translateY(-8px);
}

.pillar h3{
    margin-bottom:12px;
}

/* ==========================================
MISSION
========================================== */

.mission{
    background:#fff;
}

.mission-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.mission h2{
    font-size:42px;
    color:#0056b3;
    margin-bottom:25px;
}

.mission p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:25px;
}

.mission img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.20);
}

/* ==========================================
LATEST NEWS
========================================== */

.latest-news{
    background:#f7f9fc;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.news-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

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

.news-card h3{
    color:#0056b3;
    margin-bottom:15px;
}

.news-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.news-card a{
    color:#7b1032;
    font-weight:700;
}

/* ==========================================
HOME JOIN SECTION
========================================== */

.join-section{
    background:linear-gradient(135deg,#0056b3,#0b2d6d);
    color:#fff;
    text-align:center;
    padding:80px 0;
}

.join-section .container{
    max-width:900px;
}

.join-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.join-section p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:18px;
}

.join-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:35px;
}

/* ==========================================
GALLERY
========================================== */

.gallery-preview{
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ==========================================
RESPONSIVE
========================================== */

@media (max-width:900px){

    .hero-content,
    .mission-grid{
        grid-template-columns:1fr;
        display:block;
        text-align:center;
    }

    .hero-image{
        margin-top:40px;
    }

    .about-grid,
    .pillar-grid,
    .news-grid,
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .join-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn{
        width:240px;
        margin:0;
    }

}

/* ==========================================
   MANIFESTO PAGE
========================================== */

/* OUR VISION */

.manifesto-vision{

    background:#ffffff;
    padding:80px 0;

}

.vision-content{

    max-width:900px;
    margin:40px auto 0;
    text-align:center;

}

.vision-content p{

    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;

}


/* KEY COMMITMENTS */

.manifesto-commitments{

    background:#061b4f;
    padding:80px 0;

}

.manifesto-commitments .section-heading h2,
.manifesto-commitments .section-heading p{

    color:white;

}

.manifesto-commitments .card{

    background:white;

}

.manifesto-commitments .card h3{

    color:#061b4f;

}

.manifesto-commitments .card p{

    color:#555;

}

.manifesto-commitments .card a{

    display:inline-block;
    margin-top:15px;
    color:#061b4f;
    font-weight:600;

}


/* OUR PROMISE */

.manifesto-promise{

    background:#ffffff;
    padding:80px 0;

}

.manifesto-promise p{

    font-size:18px;
    color:#555;
}


/* CTA */

.join-cta{

    background:#8b4513;

}

/* ==========================================
FOOTER
========================================== */

.footer{
    background:linear-gradient(135deg,#061B46,#003B73);
    color:#fff;
    padding:70px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
    align-items:start;
}

.footer-column h3{
    color:#FFD700;
    font-size:22px;
    margin-bottom:20px;
}
.footer-column a{
    color:#e5e5e5;
    text-decoration:none;
    transition:.3s;
}

.footer-column a:hover{
    color:#FFD700;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul li a{
    color:#ddd;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#FFD700;
    padding-left:6px;
}

.footer-logo{
    width:70px;
    margin-bottom:18px;
}

.footer-social{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.footer-social a{
    width:46px;
    height:46px;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:20px;
    transition:.3s;
}

.footer-social a:hover{
    background:#FFD700;
    color:#061B46;
    transform:translateY(-5px);
}

.footer-bottom{
    margin-top:50px;
    background:#04122f;
    padding:20px;
    text-align:center;
    color:#ccc;
    border-top:1px solid rgba(255,255,255,.1);
}

@media (max-width:900px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        margin:0 auto 18px;
    }

    .footer-social{
        justify-content:center;
    }

}
/* ==========================================
   JOIN PAGE
========================================== */

/* Section Spacing */

.page-banner,
.why-join,
.benefits,
.eligibility,
.membership-form,
.join-cta{
    padding:60px 0;
}

/* Alternate Background Colours */

.page-banner{
    background:linear-gradient(135deg,#003366,#0056b3);
    color:#fff;
    text-align:center;
}

/* White */
.why-join{
    background:#ffffff;
}

/* Soft Sky Blue */
.benefits{
    background:#CFE8FF;
}

/* Soft Light Grey */
.eligibility{
    background:#ECECEC;
}

/* Soft Cream */
.membership-form{
    background:#FFF8E6;
}

/* Dark Golden */
.join-cta{
    background:#C69214;
    color:#222;
    text-align:center;
}

.join-cta h2,
.join-cta p{
    color:#222;
}

/* Cards */

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
    margin:60px 0;

}

.card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/* Membership Form */

.join-form{
    max-width:900px;
    margin:40px auto 0;
    display:grid;
    grid-template-columns:220px 1fr;
    gap:18px;
    align-items:center;
}

.join-form input,
.join-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.join-form textarea{
    height:140px;
    resize:vertical;
}

.join-form button{
    grid-column:1 / 3;
    padding:16px;
    background:#003366;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}
/* ==========================================
   MANIFESTO DETAILS PAGE
========================================== */
/* ==========================================
   MANIFESTO DETAILS PAGE
========================================== */

/* Banner */

.manifesto-details-banner{

    background:#061b4f;
    color:white;
    text-align:center;
    padding:70px 20px;

}

.manifesto-details-banner h1{

    font-size:42px;
    margin-bottom:20px;

}

.manifesto-details-banner p{

    max-width:800px;
    margin:auto;
    line-height:1.8;

}


/* Sections */

.manifesto-detail{

    position:relative;
    padding:70px 20px;

}

.manifesto-detail:nth-of-type(even){

    background:#f8f9fc;

}

.manifesto-detail:nth-of-type(odd){

    background:#ffffff;

}

.manifesto-detail h2{

    color:#061b4f;
    font-size:34px;
    margin-bottom:20px;
    text-align:center;

}

.manifesto-detail p{

    color:#555;
    line-height:1.9;
    margin-bottom:18px;
    text-align:center;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;

}


/* Section Divider */

.manifesto-detail::after{

    content:"";
    display:block;
    width:120px;
    height:4px;
    background:#8b4513;
    margin:50px auto 0;
    border-radius:10px;

}

.manifesto-detail:last-of-type::after{

    display:none;

}


/* CTA */

.manifesto-details-cta{

    background:#8b4513;
    color:white;
    text-align:center;
    padding:70px 20px;

}

.manifesto-details-cta h2{

    font-size:36px;
    margin-bottom:20px;

}

.manifesto-details-cta p{

    max-width:800px;
    margin:0 auto 30px;
    line-height:1.8;
    color:white;

}

.manifesto-details-cta .btn{

    display:inline-block;
    background:white;
    color:#061b4f;
    padding:14px 30px;
    border-radius:6px;
    font-weight:600;
    text-decoration:none;

}
/* ==========================================
   PROGRAMS PAGE
========================================== */

/* Programs Cards */

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;

}

.card{

    background:#ffffff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    color:#061b4f;
    margin-bottom:18px;
    font-size:24px;

}

.card p{

    color:#555;
    line-height:1.8;
    margin-bottom:25px;

}

.card a{

    display:inline-block;
    background:#8b4513;
    color:#ffffff;
    padding:12px 24px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.card a:hover{

    background:#061b4f;

}


/* Community & Future Sections */

.programs-text{

    max-width:900px;
    margin:auto;
    line-height:1.9;
    color:#555;
    text-align:center;

}
/* ==========================================
   PROGRAMS SECTION COLOURS
========================================== */

.programs-vision{

    background:#ffffff;
    padding:80px 0;

}

.programs-core{

    background:#f5f8fc;
    padding:80px 0;

}

.programs-outreach{

    background:#ffffff;
    padding:80px 0;

}

.programs-future{

    background:#f5f8fc;
    padding:80px 0;

}
/* ==========================================
   PROGRAM DETAILS PAGE
========================================== */

.program-details-light{

    background:#f5f8fc;
    padding:70px 20px;
    position:relative;

}

.program-details-white{

    background:#ffffff;
    padding:70px 20px;
    position:relative;

}

.program-details-light::after,
.program-details-white::after{

    content:"";
    display:block;
    width:120px;
    height:4px;
    background:#8b4513;
    margin:50px auto 0;
    border-radius:10px;

}

.program-details-white:last-of-type::after{

    display:none;

}
/* ==========================================
   ABOUT PAGE
========================================== */


.about-section{

    padding:70px 0;

    background:#f5f8fc;

}



.about-intro{

    max-width:900px;

    margin:0 auto 50px;

    text-align:center;

}



.about-intro h2{

    font-size:36px;

    margin-bottom:20px;

    color:#123b68;

}



.about-intro p{

    font-size:17px;

    line-height:1.8;

    margin-bottom:20px;

}




.about-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin:50px 0;

}



.about-cards .card{

    background:white;

    padding:35px 25px;

    border-radius:12px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

}



.about-cards .card h3{

    font-size:22px;

    color:#b21f1f;

    margin-bottom:15px;

}



.about-cards .card p{

    font-size:16px;

    line-height:1.7;

}




.about-block{

    max-width:900px;

    margin:60px auto;

    background:white;

    padding:40px;

    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

}



.about-block h2{

    text-align:center;

    color:#123b68;

    font-size:32px;

    margin-bottom:20px;

}



.about-block p{

    font-size:17px;

    line-height:1.8;

    margin-bottom:15px;

}



.about-block .mission-list{

    padding-left:25px;

}



.about-block .mission-list li{

    margin-bottom:12px;

    font-size:17px;

}



.manifesto-message{

    margin-top:60px;

    padding:50px 30px;

    text-align:center;

    background:#123b68;

    color:white;

    border-radius:15px;

}



.manifesto-message h2{

    font-size:32px;

    margin-bottom:20px;

}



.manifesto-message p{

    max-width:750px;

    margin:0 auto 30px;

    line-height:1.8;

}



.manifesto-message .btn{

    display:inline-block;

    background:#f4c542;

    color:#111;

    padding:12px 30px;

    border-radius:30px;

    font-weight:600;

    text-decoration:none;

}
/* ==========================================
   ABOUT PAGE FINAL FIX
========================================== */

.about-section .container{

    display:flex !important;

    flex-direction:column !important;

    align-items:stretch !important;

}


.about-intro{

    width:100% !important;

    display:block !important;

    margin-bottom:50px;

}


.about-cards{

    width:100% !important;

    display:grid !important;

    grid-template-columns:repeat(3,1fr) !important;

    gap:30px;

    margin-bottom:50px;

}


.about-block{

    width:100% !important;

    display:block !important;

    margin-bottom:50px;

}


.manifesto-message{

    width:100% !important;

    display:block !important;

}