:root{
--primary:#0f172a;
--secondary:#d4a017;
--light:#f8fafc;
--white:#ffffff;
--text:#1e293b;
--muted:#64748b;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:var(--light);
color:var(--text);
line-height:1.6;
}

/* =====================
CONTAINER
===================== */
.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* =====================
HEADER (MAIN NAV)
===================== */
header{
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 20px rgba(0,0,0,.05);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo img{
height:60px;
object-fit:contain;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:var(--primary);
font-weight:600;
transition:.3s;
}

nav a:hover{
color:var(--secondary);
}

/* =====================
BUTTONS
===================== */
.btn,
.btn-primary{
background:var(--secondary);
color:white;
padding:12px 26px;
text-decoration:none;
border-radius:40px;
font-weight:600;
display:inline-block;
transition:.3s;
}

.btn:hover,
.btn-primary:hover{
opacity:.9;
transform:translateY(-2px);
}

.btn-outline{
border:2px solid white;
padding:12px 26px;
border-radius:40px;
color:white;
text-decoration:none;
margin-left:10px;
}

/* =====================
HERO
===================== */
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* SLIDES */

.hero-slider{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.5s ease;
    background-size:cover;
    background-position:center;
}

.slide.active{
    opacity:1;
}

/* Your Images */

.slide:nth-child(1){
    background-image:url("../images/hero1.jpg");
}

.slide:nth-child(2){
    background-image:url("../images/hero2.jpg");
}

.slide:nth-child(3){
    background-image:url("../images/hero3.jpg");
}

/* Overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(8,15,35,.60);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    z-index:2;
}

.hero-content{
    max-width:850px;
    padding:20px;
}

.hero-content h1{
    font-size:3.5rem;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.2rem;
    margin-bottom:35px;
}

.slide{
    animation:zoom 10s linear infinite;
}

@keyframes zoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.1);
    }

}

/* =====================
SECTIONS
===================== */
section{
padding:90px 0;
}

h2{
text-align:center;
font-size:2.5rem;
margin-bottom:40px;
color:var(--primary);
}

/* =====================
STATS
===================== */
.stats{
background:white;
padding:70px 0;
}

.stat-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
text-align:center;
gap:20px;
}

.stat-grid h2{
color:var(--secondary);
font-size:3rem;
}

/* =====================
GRIDS (REUSABLE)
===================== */
.pillar-grid,
.service-grid,
.program-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

/* =====================
CARDS
===================== */
.card{
background:white;
padding:25px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:10px;
color:var(--primary);
}

.card p{
color:var(--muted);
}

/* =====================
CTA
===================== */
.cta{
background:var(--primary);
padding:90px 20px;
text-align:center;
color:white;
}

.cta h2{
color:white;
}

/* =====================
FORMS (CONTACT PAGE)
===================== */
form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,
textarea{
padding:14px;
border:1px solid #ddd;
border-radius:10px;
font-size:1rem;
}

textarea{
min-height:150px;
resize:none;
}

button{
background:var(--secondary);
border:none;
padding:14px;
color:white;
border-radius:10px;
cursor:pointer;
font-size:1rem;
}

/* =====================
PAGE HEADER (FOR OTHER PAGES)
===================== */
.page-header{
background:var(--primary);
color:white;
text-align:center;
padding:80px 20px;
}

.page-header h1{
font-size:3rem;
margin-bottom:10px;
}

.page-header p{
color:#cbd5e1;
}

/* =====================
FOOTER
===================== */
footer{
background:var(--primary);
color:white;
text-align:center;
padding:25px;
margin-top:50px;
}

/* =====================
RESPONSIVE
===================== */
@media(max-width:768px){

.hero h1{
font-size:2.3rem;
}

nav ul{
display:none;
}

}

/* ==========================
   PROGRAMS PAGE
========================== */

#programs{
    padding:100px 0;
}

.program{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:120px;
}

.program.reverse{
    grid-template-columns:1fr 1.2fr;
}

.program.reverse .program-image{
    order:2;
}

.program.reverse .program-content{
    order:1;
}

/* IMAGE */

.program-image{
    width:100%;
    height:500px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.program-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.5s;
}

.program-image:hover img{
    transform:scale(1.05);
}

/* CONTENT */

.program-content i{
    font-size:2rem;
    color:var(--secondary);
    margin-bottom:20px;
}

.program-content h2{
    text-align:left;
    margin-bottom:20px;
    font-size:2rem;
}

.program-content p{
    color:var(--muted);
    margin-bottom:25px;
}

.program-content ul{
    margin-bottom:30px;
    padding-left:20px;
}

.program-content li{
    margin-bottom:12px;
}

/* MOBILE */

@media(max-width:900px){

    .program,
    .program.reverse{
        grid-template-columns:1fr;
        gap:30px;
    }

    .program.reverse .program-image,
    .program.reverse .program-content{
        order:unset;
    }

    .program-image{
        height:320px;
    }

}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-card{
    display:flex;
    align-items:flex-start;
    gap:25px;

    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.why-card:hover{
    transform:translateY(-6px);
}

.why-card i{
    font-size:3rem;
    color:var(--secondary);
    min-width:60px;
    text-align:center;
}

.why-content h3{
    margin-bottom:8px;
    color:var(--primary);
    font-size:1.3rem;
}

.why-content p{
    color:var(--muted);
    margin:0;
}


/* ==========================
   SUCCESS PAGE
========================== */

.success-hero{
    height:85vh;
    min-height:700px;
    background:
    linear-gradient(rgba(15,23,42,.65),rgba(15,23,42,.65)),
    url("../images/success-hero.jpg") center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;
}

.success-overlay{
    width:100%;
    text-align:center;
    color:#fff;
}

.success-overlay h1{
    font-size:4.5rem;
    margin-bottom:25px;
}

.success-overlay p{
    max-width:800px;
    margin:0 auto 40px;
    font-size:1.2rem;
    line-height:1.8;
}

/* IMPACT */

.success-stats{
    background:#fff;
}

/* STORIES */

.story{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:120px;
}

.story.reverse{
    grid-template-columns:1fr 1.2fr;
}

.story.reverse .story-image{
    order:2;
}

.story.reverse .story-content{
    order:1;
}

.story-image{
    height:550px;
    overflow:hidden;
    border-radius:20px;
}

.story-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.story-image:hover img{
    transform:scale(1.05);
}

.story-content h2{
    text-align:left;
    margin-bottom:20px;
}

.story-content p{
    color:var(--muted);
    margin-bottom:30px;
}

.story-tag{
    display:inline-block;
    background:var(--secondary);
    color:#fff;
    padding:12px 22px;
    border-radius:40px;
    font-weight:600;
}

/* ==========================
   TESTIMONIAL SLIDER
========================== */

.testimonial-section{
    background:#fff;
    overflow:hidden;
}

.testimonial-slider{
    width:100%;
    overflow:hidden;
    margin-top:50px;
}

.testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollTestimonials 35s linear infinite;
}

.testimonial-card{
    width:420px;
    flex-shrink:0;

    background:#fff;
    border-radius:18px;
    padding:35px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.testimonial-card p{
    font-style:italic;
    color:var(--muted);
    line-height:1.8;
}

.testimonial-card h4{
    margin-top:25px;
    color:var(--primary);
}

.testimonial-slider:hover .testimonial-track{
    animation-play-state:paused;
}

@keyframes scrollTestimonials{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}
/* MOBILE */

@media(max-width:900px){

.story,
.story.reverse{
grid-template-columns:1fr;
gap:30px;
}

.story.reverse .story-image,
.story.reverse .story-content{
order:unset;
}

.story-image{
height:320px;
}

.success-overlay h1{
font-size:3rem;
}

.testimonial-card{
padding:35px;
}

}

/* ==========================
   MENTORSHIP HERO
========================== */

.mentorship-hero{
    height:85vh;
    min-height:700px;

    background:
    linear-gradient(rgba(15,23,42,.65), rgba(15,23,42,.65)),
    url("../images/mentorship-hero.jpg") center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    color:#fff;
    padding:0;
}

.mentorship-hero h1{
    font-size:4.5rem;
    margin-bottom:20px;
}

.mentorship-hero p{
    max-width:800px;
    margin:0 auto 35px;
    font-size:1.2rem;
}

/* ==========================
   INTRO
========================== */

.mentorship-intro{
    text-align:center;
    max-width:900px;
}

/* ==========================
   MENTOR GRID
========================== */

.mentor-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.mentor-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.mentor-card:hover{
    transform:translateY(-8px);
}

.mentor-card i{
    font-size:3rem;
    color:var(--secondary);
    margin-bottom:20px;
}

.mentor-card h3{
    margin-bottom:10px;
    color:var(--primary);
}

.mentor-card p{
    color:var(--muted);
}

/* ==========================
   HOW IT WORKS
========================== */

.how-it-works{
    background:#fff;
}

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:50px;
}

.step{
    text-align:center;
    padding:30px;
}

.step span{
    display:inline-block;
    width:55px;
    height:55px;
    line-height:55px;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    font-weight:700;
    font-size:1.2rem;
    margin-bottom:20px;
}

.step h3{
    margin-bottom:10px;
}

.step p{
    color:var(--muted);
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.mentorship-hero h1{
    font-size:3rem;
}

}

/* ==========================
   CONTACT HERO
========================== */

.contact-hero{
    height:70vh;
    min-height:500px;

    background:
    linear-gradient(rgba(15,23,42,.65), rgba(15,23,42,.65)),
    url("../images/contact-hero.jpg") center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    color:#fff;
    padding:0;
}

.contact-hero h1{
    font-size:4rem;
    margin-bottom:20px;
}

.contact-hero p{
    max-width:750px;
    margin:auto;
    font-size:1.2rem;
}

/* ==========================
   CONTACT INFO
========================== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:60px;
}

.contact-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-6px);
}

.contact-card i{
    font-size:2.8rem;
    color:var(--secondary);
    margin-bottom:15px;
}

.contact-card h3{
    margin-bottom:10px;
}

.contact-card p{
    color:var(--muted);
}

/* ==========================
   CONTACT SECTION
========================== */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
    margin-top:80px;
}

/* FORM */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form h2{
    text-align:left;
    margin-bottom:25px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    margin-bottom:15px;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:1rem;
}

.contact-form textarea{
    min-height:150px;
    resize:none;
}

.contact-form button{
    width:100%;
    background:var(--secondary);
    border:none;
    padding:14px;
    color:#fff;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    opacity:.9;
}

/* SIDE */

.contact-side h2{
    text-align:left;
    margin-bottom:20px;
}

.contact-side p{
    color:var(--muted);
    margin-bottom:30px;
}

.contact-box{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* MOBILE */

@media(max-width:900px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.contact-hero h1{
    font-size:3rem;
}

}