html{background-color: antiquewhite
    
    ;}   


    body { font-size: larger;}
    *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
   background: whitesmoke;
}

/* HEADER */

header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height: 105px;

    padding: 0 40px ;
    
    background: white;  

    position: fixed;

    z-index: 50;
    
}




/* LEFT MENU */

.left-menu{

    display:flex;

    gap:30px;

}

/* HAMBURGER BUTTON (hidden on desktop) */

.hamburger{
    display:none;
    background:none;
    border:none;
    color:black;
    font-size:24px;
    cursor:pointer;
}

.left-menu a{

    color:black;

    text-decoration:none;

    font-size: 17px; 

    transition:.3s;

}

.left-menu a:hover{

    color:#d5b46a;

}

/* ABOUT DROPDOWN (Meet Our Team) */

.dropdown{
    position:relative;
    display:flex;
    align-items:center;
    gap:4px;
}

.dropdown-toggle{
    background:none;
    border:none;
    color:black;
    font-size:11px;
    cursor:pointer;
    padding:4px;
    line-height:1;
    transition:.3s;
}

.dropdown.open .dropdown-toggle,
.dropdown:hover .dropdown-toggle{
    color:#d5b46a;
    transform:rotate(180deg);
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:calc(100% + 14px);
    left:0;
    min-width:180px;
    background:white;
    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    padding:8px 0;
    z-index:50;
}

.dropdown-menu a{
    display:block;
    padding:10px 18px;
    white-space:nowrap;
    font-size:15px;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu{
    display:block;
}

/* LOGO */

.logo img{
    height: 97px;
    width: 140;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 10;

}

/* RIGHT */

.right-menu{

    display:flex;

    align-items:center;

    gap:22px;

}

.right-menu a{

    color:white;

    text-decoration:none;

    font-size:22px;

}

.right-menu i{

    width:45px;

    height:45px;

    border-radius:50%;

    background:white;

    color:#555;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.right-menu i:hover{

    background:#d5b46a;

    color:white;

}

/* MOBILE FOOTER (hidden on desktop, shown via media query) */

.mobile-footer{
    display:none;
}

/* HERO */

.hero{

    width:95%;

    margin:50px auto;

}

.hero h1{

    color:white;

    font-size:60px;
    

    margin-bottom:30px;

    font-weight:300;
}




.hero img{

    max-width:  1200px;
    width: 100%;

    border-radius:5px;

}
.donate-btn{
    background:#2f997d;
    color: whitesmoke;
    text-decoration:none;
    padding:4px 13px;
    border-radius:20px;
    font-weight:bold;
    font-size:16px;
}

.donate-btn:hover{
    background:#2f997d98;
}

.pavilions{
    display:flex;
    justify-content:center;
    gap:40px;
    margin:70px auto;
    width:90%;
    flex-wrap:wrap;
    
}

.card{
    width: 100%;
    max-width: 320px;
    height: 480px;
    background: #fff;;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
}

.card img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 25px;
}

.card h2{
       font-size: 30px;
       margin-bottom: 15px;
}


.card p{
    font-size: 18px;
        color: #555;
    margin-bottom: 25px;
}

.enter-btn{
    display:inline-block;
    width: 220px;
    padding: 15px; 
    border-radius: 35px;
            color:#ffffff;
        text-decoration:none;
    font-size: 20px;
    font-weight: bold;
}
/* korean language - orange*/ 
.koreanlanguage-btn{
    background: rgba(32, 38, 111, 0.8);
    scroll-behavior: smooth;
    
}

/* English - green*/
.english-btn{
    background: rgba(32, 38, 111, 0.8);
}
/* junior - blue*/
.junior-btn {
    background: rgba(32, 38, 111, 0.8);
}



/* =========================
   WHO WE HELP SECTION
========================= */

.who-we-help {
    width: 100%;
    padding: 90px 7%;
    background: #eeeded;
}

.who-help-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

/* Left Content */

.who-help-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #172b4d;
    margin: 0 0 25px;
    font-weight: 700;
}

.who-help-content h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #2f80ed;
    margin-top: 20px;
    border-radius: 5px;
}

.who-help-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
}

.who-help-content ul {
    margin: 25px 0 0;
    padding-left: 22px;
}

.who-help-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

/* Right Image */

.who-help-image {
    width: 100%;
}

.who-help-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;

    border-radius: 20px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .who-we-help {
        padding: 70px 5%;
    }

    .who-help-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-help-image {
        order: -1;
    }

    .who-help-image img {
        height: 350px;
    }

    .who-help-content h2 {
        font-size: 36px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .who-we-help {
        padding: 55px 20px;
    }

    .who-help-container {
        gap: 30px;
    }

    .who-help-content h2 {
        font-size: 32px;
    }

    .who-help-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .who-help-content li {
        font-size: 15px;
    }

    .who-help-image img {
        height: 280px;
        border-radius: 15px;
    }
}

/* =========================
   OUR TEAM
========================= */

.team-section {
    width: 100%;
    padding: 90px 6%;
    background: #f8faf9;
}

.team-header {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.team-header h2 {
    margin: 0 0 18px;
    font-size: 42px;
    color: #172b4d;
    font-weight: 700;
}

.team-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 18px auto 0;
    background: #2e8b57;
    border-radius: 5px;
}

.team-header p {
    margin: 20px 0 0;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}


/* TEAM GRID */

.team-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}


/* CARD */

.team-card {
    display: flex;
    flex-direction: column;

    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}


/* PHOTO */

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;

    background: #e4e9e7;
}

.team-photo img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: top center;

    transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}


/* INFORMATION */

.team-info {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 20px;
}

.team-info h3 {
    margin: 0 0 7px;

    font-size: 20px;
    font-weight: 600;
    color: #26384f;
}

.team-info span {
    display: block;

    font-size: 14px;
    line-height: 1.5;
    color: #2e8b57;
    font-weight: 500;
}


/* BIO BUTTON */

.bio-btn {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 16px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    border: 1.5px solid #2e8b57;
    background: transparent;
    border-radius: 30px;

    padding: 8px 16px;
    margin-top: 16px;

    font-size: 13px;
    font-weight: 600;

    color: #2e8b57;

    cursor: pointer;
    transition: 0.3s ease;
}

.bio-btn:hover {
    background: #2e8b57;
    color: #ffffff;
}


/* MEET OUR TEAM BUTTON */

.team-button {
    text-align: center;
    margin-top: 50px;
}

.meet-team-btn {
    display: inline-block;

    padding: 13px 28px;

    background: #2e8b57;
    color: #ffffff;

    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    border-radius: 6px;

    transition: 0.3s ease;
}

.meet-team-btn:hover {
    background: #246b45;
    transform: translateY(-2px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .team-section {
        padding: 65px 20px;
    }

    .team-header h2 {
        font-size: 32px;
    }

    .team-header p {
        font-size: 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-photo {
        aspect-ratio: 4 / 3;
    }

}

/* =========================================================
   HOMEPAGE LEADERSHIP SECTION
   IMPORTANT: Homepage only
   Does NOT affect team.html
========================================================= */

.homepage-leadership {
    width: 100%;
    padding: 90px 6%;
    background: #f8faf9;
}


/* HEADER */

.homepage-leadership-header {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

.homepage-leadership-header h2 {
    margin: 0 0 18px;
    font-size: 42px;
    color: #172b4d;
    font-weight: 700;
}

.homepage-leadership-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 18px auto 0;
    background: #2e8b57;
    border-radius: 5px;
}

.homepage-leadership-header p {
    margin: 20px 0 0;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   THREE-COLUMN LAYOUT
========================================================= */

.homepage-leadership-content {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 260px 1fr 260px;

    align-items: center;

    gap: 60px;
}


/* =========================================================
   LEADER
========================================================= */

.homepage-leader {
    text-align: center;
}

.homepage-leader-photo {
    width: 210px;
    height: 210px;

    margin: 0 auto 20px;

    border-radius: 50%;

    overflow: hidden;

    background: #e4e9e7;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    border: 5px solid white;
}

.homepage-leader-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: top center;

    transition: transform 0.4s ease;
}

.homepage-leader:hover .homepage-leader-photo img {
    transform: scale(1.05);
}


.homepage-leader h3 {
    margin: 0 0 7px;

    font-size: 20px;

    color: #26384f;

    font-weight: 600;
}

.homepage-leader span {
    color: #2e8b57;

    font-size: 14px;

    font-weight: 500;
}


/* =========================================================
   CENTER QUOTES
========================================================= */

.homepage-leader-messages {
    text-align: center;

    padding: 10px;
}

.leader-quote {
    max-width: 500px;
    margin: 0 auto;
}

.quote-mark {
    font-family: Georgia, serif;

    font-size: 55px;

    line-height: 0.7;

    color: #2e8b57;

    margin-bottom: 18px;
}

.leader-quote p {
    margin: 0 auto 18px;

    font-size: 18px;

    line-height: 1.8;

    color: #444;

    font-style: italic;
}

.leader-quote strong {
    display: block;

    color: #172b4d;

    font-size: 15px;

    font-weight: 600;
}

.leader-quote small {
    display: block;

    margin-top: 5px;

    color: #2e8b57;

    font-size: 13px;
}

.quote-divider {
    width: 55px;
    height: 2px;

    background: #2e8b57;

    margin: 35px auto;
}


/* ==============================
   NOVA CORE PRINCIPLES
   ============================== */

.nova-principles {
    width: 100%;
    padding: 90px 6%;
    background: #ffffff;
    box-sizing: border-box;
}

/* Header */

.principles-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #176b5b;
    margin-bottom: 10px;
}

.principles-header h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    color: #172b4d;
}

.header-line {
    width: 55px;
    height: 3px;
    background: #176b5b;
    margin: 15px auto 20px;
    border-radius: 5px;
}

.principles-header p {
    margin: 0 auto;
    max-width: 700px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}


/* Cards container */

.principles-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* Individual card */

.principle-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 42px 30px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


/* Colored top border */

.card-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
}

.mission-card .card-top-line {
    background: #1769d1;
}

.vision-card .card-top-line {
    background: #d8a62b;
}

.approach-card .card-top-line {
    background: #45a965;
}


/* Icons */

.principle-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.mission-card .principle-icon {
    color: #1769d1;
    background: #edf5ff;
}

.vision-card .principle-icon {
    color: #c29320;
    background: #fff8df;
}

.approach-card .principle-icon {
    color: #45a965;
    background: #edf9f0;
}


/* Card title */

.principle-card h3 {
    margin: 0 0 18px;
    font-size: 25px;
    color: #172b4d;
}


/* Card paragraph */

.principle-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #555;
}


/* Bottom tag */

.card-tag {
    display: inline-block;
    margin-top: 25px;
    font-size: 12px;
    font-weight: 600;
}

.mission-card .card-tag {
    color: #1769d1;
}

.vision-card .card-tag {
    color: #c29320;
}

.approach-card .card-tag {
    color: #45a965;
}


/* ==============================
   TABLET
   ============================== */

@media (max-width: 900px) {

    .principles-container {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .principles-header h2 {
        font-size: 36px;
    }

}


/* ==============================
   MOBILE
   ============================== */

@media (max-width: 600px) {

    .nova-principles {
        padding: 65px 20px;
    }

    .principles-header {
        margin-bottom: 40px;
    }

    .principles-header h2 {
        font-size: 30px;
    }

    .principles-header p {
        font-size: 14px;
    }

    .principles-container {
        gap: 22px;
    }

    .principle-card {
        padding: 38px 23px 25px;
    }

    .principle-card h3 {
        font-size: 22px;
    }

    .principle-card p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* =========================================================
   MEET OUR TEAM BUTTON
========================================================= */

.homepage-team-button {
    max-width: 1200px;

    margin: 50px auto 0;

    text-align: left;
}

.homepage-team-button a {
    display: inline-block;

    padding: 13px 28px;

    background: #1b2e6c;

    color: rgb(255, 255, 255);

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    border-radius: 6px;

    transition: 0.3s ease;
}

.homepage-team-button a:hover {
    background: #5b198e;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .homepage-leadership-content {
        grid-template-columns: 190px 1fr 190px;

        gap: 25px;
    }

    .homepage-leader-photo {
        width: 170px;
        height: 170px;
    }

    .leader-quote p {
        font-size: 16px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .homepage-leadership {
        padding: 65px 20px;
    }

    .homepage-leadership-header h2 {
        font-size: 32px;
    }

    .homepage-leadership-header p {
        font-size: 15px;
    }


    .homepage-leadership-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    /* Syd */

    .homepage-leader-left {
        order: 1;
    }


    /* Messages */

    .homepage-leader-messages {
        order: 2;
    }


    /* Horia */

    .homepage-leader-right {
        order: 3;
    }


    .homepage-leader-photo {
        width: 190px;
        height: 190px;
    }


    .leader-quote p {
        font-size: 16px;

        line-height: 1.7;
    }


    .homepage-team-button {
        text-align: center;

        margin-top: 45px;
    }

}


/* ========================================
   PROFESSORS & INSTRUCTORS SECTION
======================================== */

.professors-section {
    padding: 90px 7%;
    background: #f8faf9;
    text-align: center;
}


/* Section Heading */

.section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-heading span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0b7a5c;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 40px;
    margin: 0 0 15px;
    color: #102a2a;
}

.section-heading p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}


/* ========================================
   PROFESSOR CARDS CONTAINER
======================================== */

.professors-container {
    max-width: 1000px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    column-gap: 40px;
    row-gap: 30px;
}


/* ========================================
   INDIVIDUAL CARD
======================================== */

.professor-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}


/* Move the second card slightly right */

.professor-card:nth-child(2) {
    position: relative;
    left: 20px;
}


/* Hover Effect */

.professor-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}


/* ========================================
   PHOTO
======================================== */

.professor-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.professor-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: transform 0.4s ease;
}


/* Image hover */

.professor-card:hover .professor-photo img {
    transform: scale(1.05);
}


/* ========================================
   PROFESSOR INFORMATION
======================================== */

.professor-info {
    padding: 25px;
}

.professor-info h3 {
    margin: 0 0 6px;

    font-size: 22px;
    color: #102a2a;
}

.professor-role {
    display: block;

    font-size: 14px;
    font-weight: 600;

    color: #0b7a5c;

    margin-bottom: 15px;
}

.professor-info p {
    color: #666;

    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 20px;
}


/* ========================================
   VIEW BIOGRAPHY BUTTON
======================================== */

.biography-btn {
    border: none;

    background: #0b7a5c;
    color: white;

    padding: 11px 20px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: background 0.3s ease;
}

.biography-btn:hover {
    background: #075c46;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .professors-container {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 25px;
    }

    .professor-card:nth-child(2) {
        left: 10px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .professors-section {
        padding: 65px 20px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .professors-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Don't move the second card on mobile */

    .professor-card:nth-child(2) {
        left: 0;
    }

    .professor-photo {
        height: 300px;
    }

}

/* ================================
   BIOGRAPHY POPUP Cards
================================ */

.biography-box {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.biography-content {
    position: relative;
    width: 90%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    animation: biographyOpen 0.25s ease;
}

@keyframes biographyOpen {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.biography-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #555;
    cursor: pointer;
}

.biography-close:hover {
    color: #000;
}

.biography-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding-right: 35px;
}

.biography-photo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.biography-person h2 {
    margin: 0 0 5px;
    font-size: 22px;
    color: #1f2937;
}

.biography-person span {
    color: #168b72;
    font-size: 14px;
    font-weight: 600;
}

.biography-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.biography-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #0a66c2;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: 0.2s ease;
}

.biography-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 600px) {

    .biography-content {
        width: 92%;
        padding: 22px;
    }

    .biography-header {
        gap: 12px;
    }

    .biography-photo {
        width: 60px;
        height: 60px;
    }

    .biography-person h2 {
        font-size: 19px;
    }

    .biography-text {
        font-size: 14px;
    }
}

/* ========================================
   DONATE SECTION
======================================== */

.donate-section {
    padding: 90px 7%;
    background: #2f997d;
    text-align: center;
}

.donate-content {
    max-width: 750px;
    margin: 0 auto;
}


/* Small heading */

.donate-label {
    display: block;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #ffffff;

    margin-bottom: 12px;
}


/* Main heading */

.donate-content h2 {
    margin: 0 0 15px;

    font-size: 42px;
    line-height: 1.2;

    color: #ffffff;
}


/* Paragraph */

.donate-content p {
    max-width: 650px;
    margin: 0 auto 35px;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.9);
}


/* ========================================
   DONATION AMOUNTS
======================================== */

.donation-amounts {
    display: flex;
    justify-content: center;
    gap: 15px;

    margin-bottom: 30px;
}


/* Amount boxes */

.amount-box {
    width: 110px;
    height: 60px;

    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;

    background: transparent;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* Hover */

.amount-box:hover {
    background: #ffffff;
    color: #0b7a5c;
}


/* Selected amount */

.amount-box.selected {
    background: #ffffff;
    color: #0b7a5c;
}


/* ========================================
   DONATE NOW BUTTON
======================================== */

.donate-now-btn {
    display: inline-block;

    padding: 14px 32px;

    background: #ffffff;
    color: #0b7a5c;

    border-radius: 8px;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.donate-now-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .donate-section {
        padding: 65px 20px;
    }

    .donate-content h2 {
        font-size: 32px;
    }

    .donate-content p {
        font-size: 15px;
    }

    .donation-amounts {
        gap: 10px;
    }

    .amount-box {
        width: 90px;
        height: 55px;
        font-size: 18px;
    }

}

/* ========================================
   DONATE POPUP
======================================== */

.donate-popup {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.6);

    z-index: 9999;
}

.donate-popup.active {
    display: flex;
}

.donate-popup-card {
    position: relative;

    width: 100%;
    max-width: 500px;

    padding: 45px 35px;

    background: #2f997d;

    border-radius: 25px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.donate-popup-card h2 {
    margin: 15px 0;

    color: #ffffff;

    font-size: 30px;
}

.donate-popup-card p {
    color: rgba(255, 255, 255, 0.92);

    font-size: 16px;
    line-height: 1.7;

    margin-bottom: 20px;
}

.donate-popup-close {
    position: absolute;

    top: 12px;
    right: 18px;

    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 32px;

    cursor: pointer;
}

.donate-email {
    display: inline-block;

    margin-top: 5px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;

    text-decoration: underline;
}


/* Mobile */

@media (max-width: 600px) {

    .donate-popup-card {
        padding: 40px 22px;
    }

    .donate-popup-card h2 {
        font-size: 25px;
    }

    .donate-popup-card p {
        font-size: 15px;
    }
}
/* ===========================
   ABOUT BANNER
=========================== */

.about-banner{
    background:#9e8473;
    color:white;
    text-align:center;
    padding:60px 20px;
}

.about-banner h1{
    font-size:48px;
    margin-bottom:15px;
    
}

.about-banner p{
    font-size:20px;
    color:white;
}

/* ===========================
   ABOUT SECTION
=========================== */

.about-section{
    width:90%;
    max-width:1200px;
    margin:70px auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}


.quick-card{
    animation: zoomIn 3s ease forwards;
}

.quick-card:nth-child(1){ animation-delay:0.1s; }
.quick-card:nth-child(2){ animation-delay:0.3s; }
.quick-card:nth-child(3){ animation-delay:0.5s; }
.quick-card:nth-child(4){ animation-delay:0.7s; }
.quick-card:nth-child(5){ animation-delay:0.9s; }
.quick-card:nth-child(6){ animation-delay:1.1s; }

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(0.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}
.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:20px;
}

.about-content{
    flex:1;
}

.about-content h2{
    font-size:40px;
    color:#fd0dd1;
    margin-bottom:20px;
}

.about-content p{
    font-size:18px;
    color: antiquewhite;
    line-height:1.8;
    margin-bottom:20px;
}


.quick-menu{
    padding:80px 10%;
    background: #ffffffee;
    text-align:center;
}

.quick-menu h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.quick-menu h2 span{
    color:#000000;
}

.quick-menu p{
    color:#666;
    margin-bottom:45px;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.quick-card{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}


.card-link{
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.card-link:link,
.card-link:visited,
.card-link:hover,
.card-link:active{
    color: inherit;
    text-decoration: none;
}

.card-link h3{
    color: #000;
}
.quick-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    object-position: center;
}

.quick-card .overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.4);
    display:flex;
    justify-content:center;
    align-items:center;
}

.quick-card i{
    color:#9d672d;
    font-size:60px;
}

.quick-card h3{
    margin-top:18px;
    font-size:28px;
    color:black;
}

.quick-card:hover{
    transform:translateY(-8px);
}


/* ===========================
   MOBILE FIXES
=========================== */

html, body{
    overflow-x: hidden;
    max-width: 100%;
}

@media (max-width: 768px){

    header{
        flex-wrap:wrap;
    }

    .hamburger{
        display:block;
        order:1;
    }

    .logo{
        order:2;
    }

    .right-menu{
        order:3;
        gap:10px;
    }

    .right-menu a:not(.donate-btn){
        display:none;
    }

    .mobile-footer{
        display:flex;
        justify-content:center;
        gap:22px;
        padding:25px;
        background:rgba(0,0,0,.35);
    }

    .mobile-footer i{
        width:40px;
        height:40px;
        border-radius:50%;
        background:white;
        color:#555;
        display:flex;
        justify-content:center;
        align-items:center;
        font-size:18px;
    }

    .donate-btn{
        padding:6px 12px;
        font-size:13px;
    }

    .left-menu{
        order:4;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        flex-direction:column;
        background:#1d2b36;
        gap:0;
        display:none;
        z-index:10;
    }

    .left-menu.open{
        display:flex;
    }

    .left-menu a{
        padding:15px 40px;
    }

    .about-section{
        flex-direction:column;
        gap:30px;
    }

    .quick-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:36px;
    }
}

@media (max-width: 400px){
    .right-menu{
        gap:6px;
    }

    .right-menu i{
        width:28px;
        height:28px;
        font-size:14px;
    }

    .donate-btn{
        padding:5px 10px;
        font-size:12px;
    }
}

/* Contact Emails and box */

.offices-section {
  width: 100%;
  padding: 70px 0 90px;
  overflow: hidden;
  background: #fff;
}

.offices-container {
  display: flex;
  gap: 70px;
  justify-content: center;
  padding: 0 5%;
}

.office-card {
  width: 420px;
  flex: 0 0 420px;
  text-align: center;
}

.office-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 25px;
  display: block;
  margin-bottom: 50px;
}

.office-card h2 {
  margin: 0 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  color: #252525;
}

.office-card h2 em {
  font-style: italic;
}

.office-address {
  margin: 0 0 28px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: #444;
}

.office-contact {
  margin: 0 0 30px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #e07c1d;
}

.office-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.office-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 58px;
  padding: 0 30px;
  border: 1px solid #999;
  border-radius: 35px;
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.office-btn:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}


/* Mobile */
@media (max-width: 768px) {

  .offices-section {
    padding: 45px 20px 60px;
  }

  .offices-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;

    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .office-card {
    width: 100%;
    max-width: 420px;
    flex: none;
  }

  .office-card img {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .office-card h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .office-address,
  .office-contact {
    font-size: 16px;
  }

  .office-btn {
    height: 52px;
    font-size: 15px;
  }
}

/* ===========================
   CONTACT FORM
=========================== */

.contact-form{
    background:#fff;
    max-width:520px;
    margin:60px auto;
    padding:35px 40px;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
}

.contact-form h2{
    font-size:30px;
    margin-bottom:25px;
    text-align:center;
    color:#000;
}

.contact-form .form-row{
    display:flex;
    gap:16px;
}

.contact-form .form-group{
    flex:1;
    margin-bottom:20px;
}

.contact-form label{
    display:block;
    font-size:15px;
    font-weight:bold;
    margin-bottom:8px;
    color:#333;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:12px 14px;
    font-size:16px;
    font-family:Arial, Helvetica, sans-serif;
    border:1px solid #ccc;
    border-radius:8px;
    background:antiquewhite;
    color:#000;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:#d5b46a;
    background:#fff;
    box-shadow:0 0 0 3px rgba(213,180,106,.25);
}

.contact-form textarea{
    resize:vertical;
    min-height:120px;
}

.contact-form button{
    width:100%;
    padding:14px;
    font-size:17px;
    font-weight:bold;
    color:whitesmoke;
    background:black;
    border:none;
    border-radius:20px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#b89028;
}

@media (max-width:600px){
    .contact-form{
        margin:40px 20px;
        padding:25px 22px;
    }
    .contact-form .form-row{
        flex-direction:column;
        gap:0;
    }
}

/* =========================================================
   NOVA SHARED RESPONSIVE HEADER / HAMBURGER FIX
========================================================= */

header{
    position:relative;
}

@media (max-width:768px){

    header{
        position:relative;
        display:flex;
        flex-wrap:wrap;
        align-items:center;
        justify-content:space-between;
        padding:0 20px;
        height:70px;
        z-index:100;
    }

    .hamburger{
        display:block;
        order:1;
        background:none;
        border:none;
        color:black;
        font-size:24px;
        line-height:1;
        cursor:pointer;
        padding:8px;
        z-index:1001;
    }

    .logo{
        order:2;
    }

    .logo img{
        height:55px;
        width:auto;
        object-fit:contain;
        position:relative;
        z-index:10;
    }

    .right-menu{
        order:3;
        display:flex;
        align-items:center;
        gap:10px;
    }

    .right-menu a:not(.donate-btn){
        display:none;
    }

    .donate-btn{
        padding:6px 12px;
        font-size:13px;
    }

    .left-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        display:none;
        flex-direction:column;
        gap:0;
        background:#1d2b36;
        z-index:1000;
        box-shadow:0 8px 15px rgba(0,0,0,.25);
    }

    .left-menu.open{
        display:flex;
    }

    .left-menu a{
        display:block;
        width:100%;
        padding:16px 25px;
        color:white;
        text-decoration:none;
        font-size:17px;
        border-bottom:1px solid rgba(255,255,255,.10);
    }

    .left-menu a:hover{
        background:rgba(255,255,255,.08);
        color:#d5b46a;
    }
}

@media (max-width:400px){

    header{
        padding:0 14px;
        height:60px;
    }

    .hamburger{
        font-size:22px;
        padding:7px;
    }

    .logo img{
        height:55px;
        width:auto;
        position:relative;
        z-index:10;
    }

    .right-menu{
        gap:6px;
    }

    .donate-btn{
        padding:5px 10px;
        font-size:12px;
    }
}


/* =========================================================
   FINAL MOBILE HAMBURGER FIX
========================================================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (max-width: 768px) {

    header {
        position: relative;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .left-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        z-index: 1000;
    }

    .left-menu.open {
        display: flex;
    }
}

/* ABOUT DROPDOWN — MOBILE (accordion style) */
@media (max-width:768px){

    .dropdown{
        flex-direction:column;
        align-items:stretch;
        gap:0;
        width:100%;
    }

    .dropdown > a{
        flex:1;
    }

    .dropdown-toggle{
        position:absolute;
        top:6px;
        right:20px;
        color:white;
        font-size:16px;
        padding:10px;
    }

    .dropdown-menu{
        position:static;
        display:none;
        width:100%;
        background:rgba(0,0,0,.2);
        border-radius:0;
        box-shadow:none;
        padding:0;
    }

    .dropdown.open .dropdown-menu{
        display:block;
    }

    .dropdown-menu a{
        padding:14px 55px;
        color:#ddd;
        font-size:15px;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .dropdown-menu a:hover{
        color:#d5b46a;
        background:rgba(255,255,255,.06);
    }

    .dropdown:hover .dropdown-menu{
        display:none;
    }
}
/* ===========================
   CAREER PAGE HERO
=========================== */
.career-hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 8%;
}
/* DARK OVERLAY */
.career-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
/* CONTENT */
.career-hero-content {
    position: relative;
    max-width: 600px;
    color: white;
}
/* HEADING */
.career-hero-content h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 25px;
}
.career-hero-content h1 span {
    color:  #d9b412  ;
}
/* PARAGRAPH */
.career-hero-content p {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* BUTTON */
.career-hero-btn {
    display: inline-block;
    background: #d9b412;
    scroll-behavior: smooth;
    color: white;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}
.career-hero-btn:hover {
   
    transform: translateY(-2px);
}
/* MOBILE */
@media (max-width: 768px) {
    .career-hero {
        justify-content: center;
        text-align: center;
        padding: 40px 25px;
    }
    .career-hero-content {
        max-width: 100%;
    }
    .career-hero-content h1 {
        font-size: 42px;
    }
    .career-hero-content p {
        font-size: 16px;
    }
    .career-hero-btn {
        padding: 14px 25px;
        font-size: 16px;
    }
}

/* =========================
   OPEN ROLES SECTION
========================= */
.open-roles {
    padding: 90px 8%;
    background: #ffffff;
}
/* HEADER */
.roles-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}
.roles-header span {
    display: block;
    color: #b08a52;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.roles-header h2 {
    color: #263b52;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 12px;
}
.roles-header p {
    color: #667085;
    font-size: 17px;
    line-height: 1.5;
    max-width: 700px;
    margin: auto;
}
/* ROLE CARD */
.role-card {
    max-width: 1100px;
    margin: 0 auto 18px;
    padding: 25px 30px;
    border: 1px solid #dfe5eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: 0.3s;
    background: #ffffff;
}
/* HOVER */
.role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
/* ICON */
.role-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    flex-shrink: 0;
}
/* ROLE INFORMATION */
.role-info {
    flex: 1;
}
.role-info h3 {
    color: #263b52;
    font-size: 19px;
    margin-bottom: 8px;
}
/* META INFORMATION */
.role-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 12px;
}
.role-meta strong {
    color: #263b52;
    font-size: 11px;
    letter-spacing: 1px;
}
.role-meta span {
    color: #718096;
}
.role-meta span:last-child {
    color: #43836b;
}
/* DESCRIPTION */
.role-info p {
    color: #607080;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
/* LEARN MORE BUTTON */
.learn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 130px;
    padding: 12px 18px;
    border: 1px solid #64788b;
    border-radius: 9px;
    color: #263b52;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}
.learn-more span {
    font-size: 24px;
    line-height: 0;
}
.learn-more:hover {
    background: #263b52;
    color: white;
}

/* RESPONSIVE - OPEN ROLES */
@media (max-width: 768px) {
    .open-roles {
        padding: 60px 20px;
    }
    .roles-header h2 {
        font-size: 32px;
    }
    .roles-header p {
        font-size: 15px;
    }
    .role-card {
        padding: 22px;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .role-icon {
        width: 40px;
    }
    .role-info {
        width: calc(100% - 65px);
    }
    .role-info h3 {
        font-size: 18px;
    }
    .role-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    .role-info p {
        font-size: 14px;
    }
    .learn-more {
        width: 100%;
        margin-top: 10px;
    }
}
/* =========================
   SITE FOOTER (desktop + responsive)
========================= */
.site-footer {
    background: #1d2b36;
    color: #cbd5e1;
    padding: 70px 8% 0;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

/* BRAND COLUMN */
.footer-brand {
    flex: 1.4;
}

.footer-logo {
    width: 300px;
    height: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    color: #9fb0c0;
    margin-bottom: 22px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: 0.3s;
}

.footer-socials a i:hover {
    background: #d5b46a;
    color: #1d2b36;
}

/* LINK COLUMNS */
.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9fb0c0;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #d5b46a;
}

.footer-contact-list li {
    color: #9fb0c0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BOTTOM BAR */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #7c8ea0;
}

/* RESPONSIVE - SITE FOOTER */
@media (max-width: 768px) {
    .site-footer {
        padding: 50px 25px 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }
}
/* =========================
   HOME PAGE HERO (full-bleed background)
========================= */
.home-hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 8%;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 45, 0.55);
}

.home-hero-content {
    position: relative;
    max-width: 850px;
    color: white;
}

.home-hero-content h1 {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
}

.home-hero-content p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #f0ece6;
}

.home-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.home-hero-btn {
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.home-hero-btn.primary {
    background: #f5a900;
    color: white;
}

.home-hero-btn.primary:hover {
    background: #d99100;
    transform: translateY(-2px);
}

.home-hero-btn.secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.home-hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

/* RESPONSIVE - HOME HERO */
@media (max-width: 768px) {
    .home-hero-content h1 {
        font-size: 38px;
    }
    .home-hero-content p {
        font-size: 15px;
    }
    .home-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .home-hero-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}



/* =========================
   HOME PAGE Team-message 
========================= */
.team-message {
    padding: 90px 20px;
    background: #ffffffaf;
}

.team-message-container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

/* Image */

.team-message-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;

    border-radius: 12px;
}

/* Text */

.team-message-content h2 {
    margin: 0 0 18px;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;

    color: #172554;
}

/* Small line */

.team-message-line {
    width: 65px;
    height: 4px;

    background: #0876d1;

    margin-bottom: 28px;
}

/* Paragraphs */

.team-message-content p {
    margin: 0 0 20px;

    font-size: 17px;
    line-height: 1.8;

    color: #444;
}

/* Signature */

.team-message-content .team-signature {
    margin-top: 30px;

    font-size: 16px;
    line-height: 1.5;

    color: #172554;
}

/* Responsive for team-message */

@media (max-width: 768px) {

    .team-message {
        padding: 60px 20px;
    }

    .team-message-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-message-image img {
        height: 350px;
    }

    .team-message-content h2 {
        font-size: 32px;
    }

    .team-message-content p {
        font-size: 16px;
    }
}


/* =========================================================
   PROGRAMS SECTION (Programs page — photo cards + Apply CTA)
========================================================= */
.programs-section {
    padding: 90px 8%;
    background: #ffffff66;
}

.programs-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.programs-header span {
    display: block;
    color: #b08a52;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.programs-header h2 {
    color: #263b52;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.programs-header p {
    color: #667085;
    font-size: 17px;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

.programs-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.program-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .3s;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .15);
}

/* PHOTO — replace the empty src with your program photo, e.g. img/program-mentorship.jpg */
.program-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f3ede6;
    overflow: hidden;
}

.program-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b0a99f;
    font-size: 13px;
    text-align: center;
    pointer-events: none;
}

.photo-placeholder i {
    font-size: 30px;
}

.program-tag {
    position: absolute;
    left: 18px;
    bottom: -14px;
    background: #d5b46a;
    color: #1d2b36;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 7px 16px;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(213, 180, 106, .4);
}

.program-card.alt .program-tag {
    background: #2da158;
    color: #fff;
    box-shadow: 0 6px 14px rgba(45, 161, 88, .35);
}

.program-body {
    padding: 34px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-body h3 {
    color: #263b52;
    font-size: 22px;
    margin-bottom: 12px;
}

.program-body p {
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    margin-bottom: 26px;
    display: grid;
    gap: 10px;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #263b52;
}

.program-features li i {
    color: #2da158;
    margin-top: 3px;
    font-size: 14px;
}

.program-card.alt .program-features li i {
    color: #d5b46a;
}

.btn-apply {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #263b52;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: .3s;
}

.btn-apply:hover {
    background: #d5b46a;
    color: #1d2b36;
}

/* RESPONSIVE - PROGRAMS SECTION */
@media (max-width: 768px) {
    .programs-section {
        padding: 60px 20px;
    }
    .programs-header h2 {
        font-size: 32px;
    }
    .programs-header p {
        font-size: 15px;
    }
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .program-body {
        padding: 28px 22px 22px;
    }
}

@media (max-width: 400px) {
    .btn-apply {
        width: 100%;
    }
}