/* =========================================================
   PROGRAMS PAGE STYLE
========================================================= */

/* =========================================================
   HERO
========================================================= */

.program-hero{
    background:
    linear-gradient(rgba(10,31,92,.82),rgba(10,31,92,.88)),
    url('../images/slides/slide1.jpg') center/cover no-repeat;
    position:relative;
}


.section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 18px;
    border-radius:50px;
    background:rgba(245,166,35,.12);
    color:var(--gold);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
} 

.program-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(245,166,35,.14),
    transparent 40%);
}

.program-title{
    font-size:5rem;
    line-height:1.05;
    color:#fff;
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
}

.program-title span{
    color:var(--gold);
}

.program-text{
    font-size:1.05rem;
    line-height:1.9;
    color:rgba(255,255,255,.8);
    max-width:620px;
}

.program-hero-image{
    position:relative;
}

.program-hero-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.hero-card{
    position:absolute;
    background:#fff;
    padding:24px;
    border-radius:24px;
    min-width:220px;
    box-shadow:0 18px 50px rgba(0,0,0,.12);
}

.hero-card h4{
    font-size:2rem;
    color:var(--navy);
    margin-bottom:5px;
    font-weight:800;
}

.hero-card p{
    margin:0;
    color:var(--gray);
    font-size:.9rem;
}

.hero-card.card-one{
    left:-40px;
    bottom:60px;
}

.hero-card.card-two{
    right:-40px;
    top:60px;
}

.btn-gold{
    background:var(--gold);
    color:var(--navy);
    padding:14px 30px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
    border:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-gold:hover{
    background:#fff;
    color:var(--navy);
    transform:translateY(-4px);
}

.btn-outline-light-custom{
    border:2px solid rgba(255,255,255,.4);
    color:#fff;
    padding:14px 30px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.btn-outline-light-custom:hover{
    background:#fff;
    color:var(--navy);
}

/* =========================================================
   PROGRAM CARDS
========================================================= */

.program-card{
    position:relative;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    transition:.45s;
    height:100%;
    border:1px solid var(--border);
    box-shadow:0 12px 45px rgba(10,31,92,.05);
}

.program-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(10,31,92,.12);
}

.program-image{
    position:relative;
    overflow:hidden;
    height:260px;
}

.program-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.program-card:hover .program-image img{
    transform:scale(1.08);
}

.program-content{
    padding:35px 30px;
}

.program-icon{
    width:80px;
    height:80px;
    border-radius:24px;
    background:rgba(245,166,35,.12);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    margin-bottom:25px;
    transition:.4s;
}

.program-card:hover .program-icon{
    background:var(--gold);
    color:var(--navy);
    transform:rotate(-6deg);
}

.program-content h3{
    font-size:2rem;
    color:var(--navy);
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
    margin-bottom:16px;
}

.program-content p{
    color:var(--gray);
    line-height:1.9;
    margin-bottom:22px;
}

.program-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:0;
    margin:0;
    list-style:none;
}

.program-list li{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--dark);
    font-size:.95rem;
}

.program-list li i{
    width:24px;
    height:24px;
    min-width:24px;
    border-radius:50%;
    background:rgba(245,166,35,.12);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.72rem;
}

/* =========================================================
   IMPACT
========================================================= */

.impact-section{
    background:
    linear-gradient(135deg,#0A1F5C,#12337F);
}

.impact-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border-radius:28px;
    padding:45px 30px;
    text-align:center;
    transition:.4s;
    height:100%;
}

.impact-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.12);
}

.impact-card h3{
    font-size:3rem;
    color:var(--gold);
    font-weight:800;
    margin-bottom:10px;
}

.impact-card p{
    color:rgba(255,255,255,.78);
    margin:0;
    font-size:1rem;
}

/* =========================================================
   CTA
========================================================= */

.about-cta{
    padding:100px 0;
    background:#fff;
}

.cta-box{
    background:
    linear-gradient(135deg,#0A1F5C,#163B91);
    border-radius:35px;
    padding:80px 50px;
    position:relative;
    overflow:hidden;
}

.cta-box::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(245,166,35,.08);
    top:-120px;
    right:-120px;
}

.cta-box h2{
    color:#fff;
    font-size:3.2rem;
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
    margin-bottom:20px;
}

.cta-box p{
    color:rgba(255,255,255,.78);
    max-width:700px;
    margin:auto;
    line-height:1.9;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .program-title{
        font-size:3.8rem;
    }

    .program-hero-image img{
        height:560px;
    }

    .hero-card.card-one{
        left:20px;
    }

    .hero-card.card-two{
        right:20px;
    }

    .program-content h3{
        font-size:1.8rem;
    }

    .cta-box h2{
        font-size:2.5rem;
    }

}

@media(max-width:767px){

    .program-title{
        font-size:2.5rem;
        line-height:1.15;
    }

    .program-text{
        font-size:.96rem;
    }

    .program-hero-image img{
        height:420px;
    }

    .hero-card{
        min-width:auto;
        padding:18px;
    }

    .hero-card h4{
        font-size:1.4rem;
    }

    .hero-card.card-one{
        left:10px;
        bottom:20px;
    }

    .hero-card.card-two{
        right:10px;
        top:20px;
    }

    .program-image{
        height:220px;
    }

    .program-content{
        padding:28px 22px;
    }

    .program-content h3{
        font-size:1.5rem;
    }

    .program-icon{
        width:68px;
        height:68px;
        border-radius:20px;
        font-size:1.7rem;
    }

    .impact-card{
        padding:35px 20px;
    }

    .impact-card h3{
        font-size:2.3rem;
    }

    .cta-box{
        padding:60px 25px;
    }

    .cta-box h2{
        font-size:2rem;
    }

}

@media(max-width:480px){

    .program-title{
        font-size:2rem;
    }

    .program-hero-image img{
        height:340px;
    }

    .program-image{
        height:200px;
    }

    .program-content{
        padding:24px 18px;
    }

    .program-content h3{
        font-size:1.35rem;
    }

    .program-content p{
        font-size:.92rem;
    }

    .impact-card h3{
        font-size:2rem;
    }

}