/* ===================================]
   RESET
=================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#0f0f0f;
    color:#f4f1ea;
    overflow-x:hidden;
    line-height:1.7;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===================================
   VARIABLES
=================================== */

:root{

    --bg:#0f0f0f;
    --bg-secondary:#171717;
    --card:#1d1d1d;

    --gold:#c8a96b;
    --gold-dark:#a88547;

    --burgundy:#6f1d1b;
    --burgundy-light:#8d2b27;

    --text:#f4f1ea;
    --text-muted:#b8b1a4;

    --border:rgba(200,169,107,.15);

}



/* ===================================
   CONTAINER
=================================== */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ===================================
   TYPOGRAPHY
=================================== */

h1{
    font-size:clamp(2.8rem,5vw,4.8rem);
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;
}

h2{
    font-size:clamp(2rem,4vw,3.5rem);
    line-height:1.1;
    margin-bottom:20px;
}

h3{
    font-size:1.4rem;
    margin-bottom:15px;
}

p{
    color:var(--text-muted);
}

.section-tag{
    color:var(--gold);
    font-size:.85rem;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:15px;
    display:block;
}

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

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

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(15,15,15,.85);
    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(200,169,107,.12);
}

.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:90px;

}

.logo img{
    height:200px;
    width:auto;
}

.footer-logo img{
    width:240px;
}

.navbar ul{

    display:flex;
    align-items:center;
    gap:35px;

}

.navbar a{

    color:#f4f1ea;
    font-weight:500;
    transition:.3s;

}

.navbar a:hover{
    color:#c8a96b;
}

.nav-book-online{

    background:linear-gradient(
        135deg,
        #6f1d1b,
        #8d2b27
    );

    color:white !important;

    padding:10px 18px;

    border-radius:8px;

    font-weight:600;

    box-shadow:0 8px 20px rgba(111,29,27,.25);

    transition:.3s;

}

.nav-book-online:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(111,29,27,.35);

}

@media(max-width:992px){

    .navbar{
        display:none;
    }

}

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

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:8px;
    background:linear-gradient(
        135deg,
        var(--burgundy),
        var(--burgundy-light)
    );
    color:white;
    font-weight:600;
    transition:.35s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border:1px solid var(--gold);
    color:var(--gold);
    border-radius:8px;
    transition:.35s;
}

.btn-secondary:hover{
    background:var(--gold);
    color:black;
}


.hero{
    height:620px;
    padding-top:90px;


    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.72) 36%,
            rgba(0,0,0,.30) 62%,
            rgba(0,0,0,.08) 100%
        ),
        url("../images/hero-healthcare.PNG");

    background-size:cover;
    background-position:center center;

    display:flex;
    align-items:center;
}

main{
    padding-top:80px;
}

.hero-content{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.hero-text{
    max-width:560px;
    margin-top:-35px;
}

.hero-tag{
    display:block;
    color:var(--gold);
    font-size:.85rem;
    letter-spacing:2px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:18px;
}

.hero h1{
    font-size:clamp(2.8rem,4.6vw,4.8rem);
    line-height:1.05;
    margin-bottom:24px;
}

.hero h1 span{
    color:var(--gold);
    display:block;
}

.hero p{
    max-width:560px;
    font-size:1.05rem;
    margin-bottom:34px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}


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

.page-hero{

    padding:280px 0 120px;

    text-align:center;

    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.85)
    ),

    url('../images/hero-healthcare.PNG');

    background-size:cover;
    background-position:center;
}

.page-hero h1{
    max-width:900px;
    margin:auto;
}

.page-hero p{
    max-width:750px;
    margin:25px auto 0;
    font-size:1.1rem;
}

.page-hero span{
    color:var(--gold);
}

/* ===================================
   PROGRAMS
=================================== */

.programs{
    padding:120px 0;
}

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

.programs{
    padding:120px 0;
}

.programs-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    margin-bottom:60px;
}

.programs-left{
    flex:1;
}

.programs-right{
    max-width:420px;
}

.programs-right p{
    color:var(--text-muted);
    font-size:1.05rem;
    line-height:1.8;
}

.programs-label{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.programs-label span{
    color:var(--gold);
    font-size:.9rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    white-space:nowrap;
}

.programs-label .line{
    width:120px;
    height:1px;
    background:var(--gold);
    opacity:.6;
}

.programs-left h2{
    font-size:clamp(2.2rem,4vw,3.8rem);
    font-family:Georgia, serif;
    font-weight:400;
    margin-bottom:0;
}

.program-grid{

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

}

.program-card{
    position:relative;
    text-align:left;
}
.program-card{
    text-align:center;
}
.program-icon{
    margin:0 auto 20px;
}
.program-card h3,
.program-card h2,
.program-card p{
    text-align:center;
}

.program-number{
    position:absolute;
    top:20px;
    left:20px;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#8d2b27;
    color:white;

    font-weight:700;

    border-radius:6px;
}

.program-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

}

.program-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}

.program-icon{

    font-size:3rem;

    padding:30px;

    color:var(--gold);

}

.program-card h2{
    font-size:1.6rem;
    padding:0 30px;
}

.program-card p{
    padding:0 30px;
}

.program-card ul{
    padding:25px 30px;
}

.program-card li{
    padding:10px 0;
    color:var(--text);
}

.program-card .btn-primary{
    margin:0 30px 30px;
}
.learn-more{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:25px;

    color:var(--gold);
    font-weight:600;
    font-size:.95rem;
    text-transform:uppercase;
    letter-spacing:1px;

    transition:.3s;
}

.learn-more:hover{
    color:#fff;
    transform:translateX(5px);
}
.program-content{
    padding:30px;
}

.program-content p{
    margin-bottom:20px;
}

.learn-more{
    display:inline-block;

    margin-top:20px;

    color:var(--gold);
    text-decoration:none;

    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;

    transition:.3s;
}

.learn-more:visited{
    color:var(--gold);
}

.learn-more:hover{
    color:#fff;
}

.program-card{
    text-align:left;
}

.program-card .learn-more{
    display:block;
    text-align:left;
}

@media(max-width:992px){

    .programs-top{
        flex-direction:column;
        gap:25px;
    }

    .programs-right{
        max-width:100%;
    }

}
/* ===================================
   WHY CHOOSE
=================================== */

.why-us{

    background:
    linear-gradient(
        90deg,
        #5d1616 0%,
        #6f1d1b 40%,
        #581514 100%
    );

    padding:70px 0;
}

.why-wrapper{

    display:grid;
    grid-template-columns:1.4fr repeat(5,1fr);
    gap:35px;
    align-items:flex-start;
}

.why-intro h2{

    font-size:3rem;
    line-height:1.1;
    margin:0;
    color:white;
}

.why-intro span{
    color:var(--gold);
}

.why-item{
    text-align:left;
}

.why-icon{

    font-size:2rem;
    color:var(--gold);

    margin-bottom:18px;
}

.why-item h3{

    font-size:1.2rem;
    color:white;

    margin-bottom:12px;
}

.why-item p{

    font-size:.95rem;
    line-height:1.7;
    color:rgba(255,255,255,.82);
}
.why-icon{
    margin-bottom:18px;
}

.why-icon img{
    width:34px;
    height:34px;
    object-fit:contain;
    opacity:.95;
}


@media(max-width:992px){

    .why-wrapper{

        grid-template-columns:1fr;
        gap:30px;
    }

    .why-intro{
        text-align:center;
    }

}
/* ===================================
   CAREERS
=================================== */

.about-section{

    background:#0f0f0f;

    padding:0;

    border-top:1px solid rgba(255,255,255,.05);
}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1.5fr 1fr;

    align-items:stretch;
}

.about-content{

    padding:80px 50px;
}

.about-content h2{

    font-size:3.2rem;
    line-height:1.05;

    margin-bottom:25px;
}

.about-content p{

    margin-bottom:35px;

    color:var(--text-muted);
}

.about-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.about-stats{

    padding:60px 40px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.stat-item{

    padding:35px 0;

    border-bottom:1px solid rgba(255,255,255,.12);
}

.stat-item:last-child{
    border-bottom:none;
}

.stat-number{

    font-size:3rem;

    color:var(--gold);

    font-weight:700;

    margin-bottom:8px;
}

.stat-text{

    color:#f4f1ea;

    font-size:1rem;
}

.about-map{
    width:100%;
    height:100%;
    min-height:500px;
    overflow:hidden;
    background:#171717;
}

.about-map iframe{
    width:100%;
    height:100%;
    min-height:500px;
    border:0;
    display:block;
}

@media(max-width:992px){

    .about-map{
        min-height:380px;
        margin-top:30px;
        margin-bottom:30px;
    }

    .about-map iframe{
        min-height:380px;
    }

}

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-image{
        height:350px;
    }

}
/* ===================================
   CTA
=================================== */

.about-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 30px;

    border:1px solid var(--gold);

    color:var(--gold);

    font-weight:600;

    transition:.35s;
}

.about-btn span{

    transition:.35s;
}

.about-btn:hover{

    background:rgba(200,169,107,.08);
}

.about-btn:hover span{

    transform:translateX(8px);
}

.journey-banner{

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url("../images/journey-bg.PNG");

    background-size:cover;
    background-position:center;

    padding:55px 80px;
}

.journey-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;
}

.journey-content h2{

    margin:0;

    font-size:3rem;

    line-height:1.1;

    max-width:500px;
}

.journey-content h2 span{
    color:var(--gold);
}

.journey-content p{

    max-width:420px;

    margin:0;
}

/* ==========================
   READY TO START CTA
========================== */

/* ===================================
   READY TO START CTA
=================================== */

.journey-banner{

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url("../images/journey-bg.PNG");

    background-size:cover;
    background-position:center;

    padding:50px 70px;

    border-top:1px solid rgba(255,255,255,.08);
}

.journey-content{

    display:grid;
    grid-template-columns:1.3fr 1fr auto;

    align-items:center;

    gap:40px;
}

.journey-left h2{

    font-size:3rem;

    line-height:1.1;

    margin:0;

    color:white;
}

.journey-left span{

    color:var(--gold);
}

.journey-center p{

    color:#f4f1ea;

    font-size:1rem;

    line-height:1.8;

    margin:0;
}

.journey-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 36px;

    border:1px solid var(--gold);

    color:var(--gold);

    font-weight:600;

    transition:.35s;
}

.journey-btn span{

    transition:.35s;
}

.journey-btn:hover span{

    transform:translateX(8px);
}

.journey-btn:hover{

    background:rgba(200,169,107,.10);
}

.stat-number{
    font-size:4rem;
    font-weight:800;
    color:var(--gold);
}

@media(max-width:992px){

    .journey-content{

        grid-template-columns:1fr;

        text-align:center;

        gap:25px;
    }

    .journey-left h2{

        font-size:2.2rem;
    }
}
/* ===================================
   FOOTER
=================================== */

.footer{
    background:#090909;
    border-top:1px solid rgba(200,169,107,.15);
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:60px;
}

.footer-logo img{
    width:250px;
    margin-bottom:20px;
}

.footer-brand p{
    color:#b8b1a4;
    max-width:280px;
}

.footer h4{
    color:#c8a96b;
    margin-bottom:22px;
    font-size:1rem;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer a{
    display:block;
    color:#f4f1ea;
    margin-bottom:10px;
    transition:.3s;
}

.footer a:hover{
    color:#c8a96b;
}

.footer p{
    color:#b8b1a4;
    margin-bottom:12px;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
}

.footer-bottom p{
    color:#8f8f8f;
    font-size:.9rem;
}





@media(max-width:992px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

}


.menu-toggle{
    display:none;
    font-size:2rem;
    color:var(--gold);
    cursor:pointer;
}

.mobile-menu{
    position:absolute;
    top:90px;
    left:0;
    width:100%;

    background:#0f0f0f;

    display:none;
    flex-direction:column;

    padding:30px;

    border-top:1px solid rgba(200,169,107,.15);
}

.mobile-menu a{
    color:white;
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.mobile-apply{
    margin-top:20px;
    text-align:center;
    border:1px solid var(--gold);
    color:var(--gold) !important;
    padding:15px;
}

.mobile-menu.active{
    display:flex;
}

/* ===================================
   ABOUT STORY
=================================== */

.about-story{
    padding:120px 0;
    background:#0f0f0f;
}

.story-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:center;
}

.story-image img{
    width:100%;
    border-radius:20px;
    border:1px solid var(--border);
}

.story-content h2{
    margin-bottom:25px;
}

.story-content p{
    margin-bottom:20px;
}

/* ===================================
   LEADERSHIP
=================================== */

.leadership{
    padding:120px 0;
    background:#131313;
}

.leader-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.leader-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    transition:.35s;
}

.leader-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);
}

.leader-card img{

    width:100%;
    height:420px;

    object-fit:cover;
}

.leader-card h3{

    padding:30px 30px 15px;

    color:white;
}

.leader-card p{

    padding:0 30px;
    margin-bottom:18px;
}

.leader-card p:last-child{
    padding-bottom:30px;
}

/* ===================================
   WHAT MAKES US DIFFERENT
=================================== */

.difference-section{
    padding:120px 0;
    background:#0f0f0f;
}

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

.difference-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    transition:.35s;
}

.difference-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);
}

.difference-number{

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--burgundy);

    color:white;

    border-radius:8px;

    font-weight:700;

    margin-bottom:25px;
}

.difference-card h3{

    color:white;

    margin-bottom:15px;
}

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

.mission-vision{
    padding:120px 0;
    background:#131313;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.mission-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:20px;

    padding:45px;
}

.mission-card h3{

    color:white;

    margin-bottom:18px;
}

/* ===================================
   ABOUT PAGE MOBILE
=================================== */

@media(max-width:992px){

    .story-grid{
        grid-template-columns:1fr;
    }

    .leader-grid{
        grid-template-columns:1fr;
    }

    .difference-grid{
        grid-template-columns:1fr;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .story-content,
    .section-heading{
        text-align:center;
    }

    .leader-card img{
        height:320px;
    }

}

@media(max-width:992px){

    .navbar{
        display:none;
    }

    .desktop-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .logo img{
        height:120px;
    }

}

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

.programs-hero{
    min-height:70vh;

    display:flex;
    align-items:center;

    padding:140px 0 100px;

    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.75)
    ),
    url("../images/hero-healthcare.PNG");

    background-size:cover;
    background-position:center;
}

.programs-hero-content{
    max-width:700px;
}

.programs-hero .hero-tag{
    display:inline-block;

    color:#d4af37;

    letter-spacing:3px;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:20px;
}

.programs-hero h1{
    font-size:4rem;
    line-height:1.1;

    color:white;

    margin-bottom:25px;
}

.programs-hero h1 span{
    color:#d4af37;
}

.programs-hero p{
    font-size:1.1rem;

    line-height:1.8;

    color:#d0d0d0;

    max-width:600px;

    margin-bottom:35px;
}

.programs-hero .hero-buttons{
    display:flex;
    gap:15px;
}

@media(max-width:768px){

    .programs-hero{
        min-height:60vh;
        padding:120px 0 80px;
    }

    .programs-hero h1{
        font-size:2.6rem;
    }

    .programs-hero p{
        font-size:1rem;
    }

    .programs-hero .hero-buttons{
        flex-direction:column;
    }

}

/* =========================
PROGRAM OVERVIEW
========================= */

.program-overview{
    padding:120px 0;
}

.section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-header h2{
    font-size:3rem;
    margin:15px 0;
}

.section-header p{
    color:#a0a0a0;
    line-height:1.8;
}

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

.program-card{
    background:#0f0f0f;

    border:1px solid rgba(212,175,55,.2);

    border-radius:24px;

    overflow:hidden;

    transition:.3s;
}

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

    border-color:#d4af37;
}

.program-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.program-card-content{
    padding:30px;
}

.program-badge{
    color:#d4af37;
    font-size:.8rem;
    letter-spacing:2px;
    font-weight:600;
}

.program-card h3{
    margin:15px 0;
    font-size:1.6rem;
}

.program-card p{
    color:#bdbdbd;
    line-height:1.8;
}

.program-card ul{
    margin:25px 0;
    padding-left:18px;
}

.program-card ul li{
    margin-bottom:10px;
    color:#d4af37;
}

.program-btn{
    display:inline-block;

    color:#d4af37;

    text-decoration:none;

    font-weight:600;
}

@media(max-width:991px){

    .program-cards{
        grid-template-columns:1fr;
    }

}

/* =========================
   PROGRAM DETAIL
========================= */

.program-detail{
    padding:120px 0;
    background:#131313;
}

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

.program-detail-image img{
    width:100%;
    border-radius:24px;
}

.program-detail-content h2{
    margin:15px 0 25px;
}

.program-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:40px 0;
}

.info-box{
    background:#1a1a1a;
    border:1px solid rgba(212,175,55,.15);
    border-radius:16px;
    padding:25px;
    text-align:center;
}

.info-box h4{
    color:#d4af37;
    margin-bottom:10px;
}

.pricing-card{
    margin:40px 0;

    background:#171717;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:30px;
}

.pricing-card h3{
    margin-bottom:25px;
}

.fee-row{
    display:flex;
    justify-content:space-between;
    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.fee-row.total{
    border:none;
    padding-top:20px;

    color:#d4af37;

    font-size:1.15rem;
}

.curriculum-section{
    margin-top:80px;
}

.curriculum-section h3{
    text-align:center;
    margin-bottom:40px;
}

.curriculum-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.curriculum-item{
    background:#171717;

    border:1px solid rgba(212,175,55,.15);

    border-radius:16px;

    padding:22px;
}

.admission-box{
    margin-top:60px;

    background:#171717;

    border-left:4px solid #d4af37;

    padding:35px;

    border-radius:0 16px 16px 0;
}
.alternate .program-detail-grid{

    grid-template-columns:1fr 1fr;

}



@media(max-width:992px){

    .program-detail-grid{
        grid-template-columns:1fr;
    }

    .program-info-grid{
        grid-template-columns:1fr;
    }

    .curriculum-grid{
        grid-template-columns:1fr;
    }

   
}

/* ===================================
   CNA TO HHA TRANSITION
=================================== */

.transition-detail{
    background:#0f0f0f;
}

.transition-detail .program-detail-image img{
    min-height:620px;
    object-fit:cover;
}

.transition-detail .curriculum-section{
    margin-top:90px;
}

.transition-detail .curriculum-section .section-tag{
    text-align:center;
}

.transition-detail .admission-box{
    border-left-color:var(--burgundy-light);
}
/* ===================================
   PROGRAM BENEFITS
=================================== */

.program-benefits{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #5d1616,
        #6f1d1b
    );

}

.benefits-grid{

    display:grid;

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

    gap:30px;

}

.benefit-card{
    background:transparent;
    border:none;
    border-radius:0;
    padding:20px;
    text-align:center;
}

.benefit-card:hover{
    transform:none;
}

.benefit-icon{

    margin-bottom:20px;

}

.benefit-icon img{

    width:40px;
    height:40px;

}

.benefit-card h3{

    color:white;

    margin-bottom:15px;

}

.benefit-card p{

    color:rgba(255,255,255,.82);

}

.program-benefits .benefit-icon img{
    width:70px !important;
    height:70px !important;
    object-fit:contain;
}
.program-benefits .benefit-card{
    overflow:hidden;
}

@media(max-width:992px){

    .benefits-grid{

        grid-template-columns:1fr;
    }

}

.program-status{

    display:inline-block;

    padding:8px 14px;

    border-radius:30px;

    background:rgba(200,169,107,.12);

    color:var(--gold);

    font-size:.85rem;

    margin-bottom:20px;

}

@media(max-width:992px){

    .program-detail-grid{
        display:flex !important;
        flex-direction:column !important;
    }

    .program-detail-image{
        width:100%;
        margin-bottom:30px;
    }

    .program-detail-content{
        width:100%;
    }

    .program-detail-image img{
        width:100%;
        height:280px;
        object-fit:cover;
    }

}
/* ===================================
   CONTACT PAGE
=================================== */

.contact-hero{
    min-height:520px;

    display:flex;
    align-items:center;
    text-align:center;

    padding:150px 0 90px;

    background:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.82)
        ),
        url("../images/hero-healthcare.PNG");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.contact-hero .container{
    max-width:850px;
}

.contact-hero h1{
    margin:15px 0 25px;
    color:var(--text);
}

.contact-hero p{
    max-width:700px;
    margin:0 auto;
    font-size:1.08rem;
    color:var(--text-muted);
}


/* CONTACT CARDS */

.application-support{
    padding:110px 0;
    background:var(--bg);
}

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

.support-card{
    min-height:310px;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    padding:38px;

    background:var(--card);

    border:1px solid var(--border);
    border-radius:20px;

    transition:.35s;
}

.support-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
}


.support-icon img{
    width:150px;
    height:150px;
}



.support-card h3{
    color:var(--text);
    margin-bottom:14px;
}

.support-card p{
    margin-bottom:22px;
    color:var(--text-muted);
}

.support-card a{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:auto;

    color:var(--gold);
    font-weight:600;

    transition:.3s;
}

.support-card a:hover{
    color:var(--text);
}

.support-card a span{
    transition:.3s;
}

.support-card a:hover span{
    transform:translateX(6px);
}


/* OFFICE HOURS */

.office-hours{
    padding:100px 0;
    background:var(--bg-secondary);
}

.office-hours h2{
    text-align:center;
    margin-bottom:45px;
}

.hours-card{
    max-width:760px;
    margin:0 auto;

    padding:42px;

    background:var(--card);

    border:1px solid var(--border);
    border-radius:20px;
}

.hours-card p{
    display:flex;
    justify-content:space-between;
    gap:25px;

    padding:18px 0;
    margin:0;

    border-bottom:1px solid rgba(255,255,255,.08);

    color:var(--text-muted);
}

.hours-card p:last-child{
    border-bottom:none;
}

.hours-card strong{
    color:var(--gold);
}


/* CONTACT MAP */

.contact-map{
    padding:100px 0;
    background:var(--bg);
}

.contact-map iframe{
    width:100%;
    min-height:520px;

    display:block;

    border:0;
    border-radius:22px;

    box-shadow:0 20px 60px rgba(0,0,0,.35);
}


/* ===================================
   SCHOOL CALENDAR PAGE
=================================== */

.calendar-hero{
    min-height:500px;

    display:flex;
    align-items:center;
    text-align:center;

    padding:150px 0 90px;

    background:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.82)
        ),
        url("../images/hero-healthcare.PNG");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.calendar-hero .container{
    max-width:850px;
}

.calendar-hero h1{
    margin:15px 0 25px;
}

.calendar-hero p{
    max-width:650px;
    margin:0 auto;
    font-size:1.08rem;
}


/* HOLIDAY CALENDAR */

.holiday-calendar{
    padding:110px 0;
    background:var(--bg);
}

.holiday-calendar h2{
    text-align:center;
    margin-bottom:60px;
}

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

.holiday-card{
    position:relative;

    min-height:150px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:30px;

    text-align:center;

    background:var(--card);

    border:1px solid var(--border);
    border-radius:18px;

    color:var(--text);
    font-size:1.08rem;
    font-weight:600;

    transition:.35s;
}

.holiday-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    border-radius:18px 18px 0 0;

    background:linear-gradient(
        90deg,
        var(--burgundy),
        var(--gold)
    );
}

.holiday-card:hover{
    transform:translateY(-7px);
    border-color:var(--gold);
}


/* CALENDAR NOTICE */

.calendar-notice{
    padding:0 0 110px;
    background:var(--bg);
}

.notice-card{
    max-width:850px;
    margin:0 auto;

    padding:42px;

    background:linear-gradient(
        135deg,
        rgba(111,29,27,.28),
        rgba(200,169,107,.08)
    );

    border:1px solid rgba(200,169,107,.22);
    border-left:4px solid var(--gold);
    border-radius:0 20px 20px 0;
}

.notice-card h3{
    margin-bottom:15px;
    color:var(--text);
}

.notice-card p{
    margin:0;
    color:var(--text-muted);
}


/* ===================================
   CONTACT + CALENDAR TABLET
=================================== */

@media(max-width:992px){

    .application-support-grid{
        grid-template-columns:1fr;
    }

    .holiday-grid{
        grid-template-columns:1fr 1fr;
    }

    .contact-hero,
    .calendar-hero{
        min-height:430px;
        padding:130px 0 80px;
    }

}


/* ===================================
   CONTACT + CALENDAR MOBILE
=================================== */

@media(max-width:768px){

    .contact-hero,
    .calendar-hero{
        min-height:390px;
        padding:120px 0 65px;
    }

    .contact-hero h1,
    .calendar-hero h1{
        font-size:2.7rem;
    }

    .application-support,
    .office-hours,
    .contact-map,
    .holiday-calendar{
        padding:80px 0;
    }

    .support-card{
        min-height:auto;
        padding:30px;
    }

    .hours-card{
        padding:28px;
    }

    .hours-card p{
        flex-direction:column;
        gap:5px;
    }

    .contact-map iframe{
        min-height:380px;
        border-radius:16px;
    }

    .holiday-grid{
        grid-template-columns:1fr;
    }

    .holiday-card{
        min-height:120px;
    }

    .calendar-notice{
        padding:0 0 80px;
    }

    .notice-card{
        padding:30px;
    }

}


/* ===================================
   CAREERS BENEFITS
=================================== */


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

.careers-hero{

    min-height:650px;

    display:flex;
    align-items:center;

    padding:140px 0 100px;

    background:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.80)
        ),
        url("../images/hero-healthcare.PNG");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.careers-hero-content{

    max-width:750px;
}

.careers-hero h1{

    margin:20px 0;

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.05;
}

.careers-hero h1 span{

    color:var(--gold);
}

.careers-hero p{

    max-width:650px;

    margin-bottom:35px;

    color:var(--text-muted);

    font-size:1.08rem;
}
/* ===================================
   CAREERS CTA
=================================== */

.career-cta{

    padding:100px 0;

    text-align:center;

    background:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.72)
        ),
        url("../images/journey-bg.PNG");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.career-cta h2{

    max-width:750px;

    margin:0 auto 20px;
}

.career-cta p{

    max-width:650px;

    margin:0 auto 35px;

    color:var(--text-muted);
}

.careers-benefits{
    padding:120px 0;
    background:#050505;
}

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

.benefit-card{
    background:#0b0b0b;
    border:1px solid rgba(201,169,110,.15);
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
}

.benefit-card:hover{
    transform:translateY(-8px);
    border-color:#c9a96e;
}

.benefit-card img{
    width:250px;
    height:150px;
    object-fit:contain;
    margin-bottom:25px;
}

.benefit-card h3{
    color:#fff;
    margin-bottom:15px;
}

.benefit-card p{
    color:#b7b7b7;
    line-height:1.7;
}


/* ===================================
   CAREER CONTACT
=================================== */

.career-contact{
    padding:120px 0;
    background:#090909;
}

.career-contact-card{
    background:#101010;
    border:1px solid rgba(201,169,110,.15);
    border-radius:30px;
    padding:70px;
    text-align:center;
}

.career-contact-card h2{
    margin:15px 0 20px;
}

.career-contact-card p{
    color:#b7b7b7;
}

.career-contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.career-contact-item{
    background:#151515;
    padding:30px;
    border-radius:20px;
}

.career-contact-item img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:20px;
}

.career-contact-item h3{
    margin-bottom:12px;
    color:#fff;
}

.career-contact-item p,
.career-contact-item a{
    color:#c9a96e;
    text-decoration:none;
}

.career-buttons{
    margin-top:50px;

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


/* ===================================
   CAREERS CTA
=================================== */



.career-cta h2{
    max-width:700px;
    margin:0 auto 20px;
}

.career-cta p{
    max-width:650px;
    margin:0 auto 40px;
    color:#b7b7b7;
}


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

@media(max-width:992px){

    .benefits-grid,
    .career-contact-grid{
        grid-template-columns:1fr;
    }

    .career-contact-card{
        padding:40px;
    }

}

@media(max-width:768px){

    .careers-benefits,
    .career-contact,
    .career-cta{
        padding:80px 0;
    }

    .benefit-card,
    .career-contact-item{
        padding:25px;
    }

    .career-contact-card{
        padding:30px 25px;
    }

    .benefit-card img{
        width:150px;
        height:150px;
    }

    .career-contact-item img{
        width:60px;
        height:60px;
    }

}

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

.apply-hero{
    min-height:620px;
    padding:160px 0 110px;

    display:flex;
    align-items:center;

    text-align:center;

    background:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.78)
        ),
        url("../images/hero-healthcare.PNG");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.apply-hero-content{
    max-width:850px;
    margin:auto;
}

.apply-hero h1{
    font-size:clamp(3rem,6vw,5rem);
    line-height:1.05;
    margin:25px 0;
}

.apply-hero h1 span{
    color:var(--gold);
}

.apply-hero p{
    max-width:700px;
    margin:auto;
    color:#bdbdbd;
    font-size:1.1rem;
}
.enrollment-process{
    padding:100px 0;
}

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

.enrollment-step{
    background:#0d0d0d;
    border:1px solid rgba(201,168,97,.15);
    border-radius:20px;
    padding:35px;
}

.step-number{
    color:var(--gold);
    font-size:2rem;
    font-weight:800;
    margin-bottom:20px;
}

.enrollment-step h3{
    margin-bottom:15px;
}

.enrollment-step p{
    color:#bdbdbd;
}
.payment-programs{
    padding:120px 0;
}

.payment-program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.payment-program-card{
    background:#0c0c0c;
    border:1px solid rgba(201,168,97,.15);
    border-radius:24px;
    overflow:hidden;
    transition:.3s;
}

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

.payment-program-image{
    position:relative;
}

.payment-program-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.payment-program-number{
    position:absolute;
    top:20px;
    right:20px;
    width:55px;
    height:55px;
    background:rgba(0,0,0,.7);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-weight:700;
}

.payment-program-content{
    padding:30px;
}

.program-badge{
    color:var(--gold);
    font-size:.8rem;
    letter-spacing:2px;
}

.payment-program-content h3{
    margin:15px 0;
}

.payment-program-content p{
    color:#bdbdbd;
    margin-bottom:25px;
}

.payment-program-details{
    margin-bottom:25px;
}

.payment-detail-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    padding-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.fee-highlight{
    color:var(--gold);
    font-weight:700;
}
.stripe-payment-btn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 22px;
    background:linear-gradient(
        135deg,
        #c9a861,
        #e4c987
    );
    color:#111;
    text-decoration:none;
    font-weight:700;
    border-radius:14px;
    transition:.3s;
}

.stripe-payment-btn:hover{
    transform:translateY(-3px);
}

.payment-notice-section{
    padding:120px 0;
}

.payment-notice{
    background:#0c0c0c;
    border:1px solid rgba(201,168,97,.15);
    border-radius:30px;
    padding:60px;
}

.payment-notice-content p{
    color:#bdbdbd;
    margin-top:20px;
}

.payment-notice-content a{
    color:var(--gold);
}
.application-support{
    padding:120px 0;
}

.application-support-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.support-card{
    background:#0c0c0c;
    border:1px solid rgba(201,168,97,.15);
    border-radius:20px;
    padding:35px;
}

.support-card h3{
    margin:20px 0;
}

.support-card p{
    color:#bdbdbd;
}

.support-card a{
    display:inline-block;
    margin-top:20px;
    color:var(--gold);
    text-decoration:none;
    font-weight:600;
}

.payment-notice-icon{
    margin-bottom:25px;
}

.payment-notice-icon img{
    width:80px;
    height:80px;
    object-fit:contain;
}


@media(max-width:992px){

    .payment-program-grid{
        grid-template-columns:1fr;
    }

    .enrollment-grid{
        grid-template-columns:1fr 1fr;
    }

    .application-support-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .enrollment-grid{
        grid-template-columns:1fr;
    }

    .payment-notice{
        padding:35px;
    }

    .apply-hero{
        padding:120px 0 80px;
    }

}


/* ===================================
   REGISTRATION PAGE
=================================== */

.registration-section{
    padding:120px 0;
}

.registration-wrapper{
    display:grid;
    grid-template-columns:1.35fr .9fr;
    gap:40px;
    align-items:start;
}

.registration-card,
.registration-summary{
    background:#0c0c0c;
    border:1px solid rgba(201,168,97,.15);
    border-radius:24px;
    padding:45px;
}

.registration-card h2,
.registration-summary h2{
    margin:18px 0 35px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#f4f1ea;
}

.form-group input{
    width:100%;
    height:58px;
    padding:0 18px;
    background:#141414;
    border:1px solid rgba(201,168,97,.18);
    border-radius:14px;
    color:#fff;
    font-size:1rem;
    transition:.25s;
    outline:none;
    font-family:inherit;
    box-sizing:border-box;
}

.form-group input:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 3px rgba(201,168,97,.15);
}

.summary-box{
    margin:35px 0;
    background:#141414;
    border:1px solid rgba(201,168,97,.15);
    border-radius:18px;
    padding:25px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.summary-row:last-child{
    border-bottom:none;
}

.summary-row span{
    color:#bdbdbd;
}

.summary-row strong{
    color:var(--gold);
    font-size:1.05rem;
}

.secure-box{
    margin:25px 0;
    background:rgba(201,168,97,.08);
    border:1px solid rgba(201,168,97,.18);
    border-radius:14px;
    padding:18px;
    text-align:center;
    color:var(--gold);
    font-weight:700;
    letter-spacing:.5px;
}

.confirmation-box{
    margin:30px 0;
}

.checkbox{
    display:flex;
    align-items:flex-start;
    gap:12px;
    cursor:pointer;
    color:#d0d0d0;
    line-height:1.6;
}

.checkbox input{
    width:18px;
    height:18px;
    margin-top:3px;
    accent-color:#c9a861;
}

#continuePayment{
    width:100%;
    border:none;
    cursor:pointer;
    font-size:1rem;
}

#continuePayment:disabled{
    opacity:.55;
    cursor:not-allowed;
}

@media(max-width:992px){

    .registration-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .registration-card,
    .registration-summary{
        padding:30px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

}


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

@media(max-width:992px){

    .program-grid{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .career-grid{
        grid-template-columns:1fr;
    }

    
}

@media(max-width:768px){

    .page-hero{
        padding:130px 0 90px;
    }

    h1{
        font-size:2.8rem;
    }

}
