/* =========================================
   HOMEPAGE — homepage.css
========================================= */

/* =========================================
   SECTION 1 — HERO
========================================= */

.homepage .hero-section {
    width: 100%;
    padding: 130px 30px 70px;
    background: #F6F8FE;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* hero top row */
.homepage .hero-top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.homepage .hero-title-block {
    flex: 1;
    max-width: 700px;
    display: flex;
    flex-direction: column;
}

.homepage .hero-subtitle {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
}

.homepage .hero-title {
    color: #082F56;
    font-size: 70px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

/* hero bottom row */
.homepage .hero-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.homepage .hero-content-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.homepage .hero-description {
    max-width: 350px;
    color: #212529;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.homepage .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.homepage .hero-image-block {
    flex: 1;
    max-width: 700px;
}

.homepage .hero-image-block img {
    width: 100%;
    height: 701px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

/* =========================================
   BUTTONS (shared)
========================================= */
.homepage .btn-primary-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 22px;
    background: #082F56;
    border-radius: 45px;
    border: 1px solid #082F56;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.homepage .btn-primary-dark:hover {
    background: transparent;
    color: #082F56;
}

.homepage .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 22px;
    background: transparent;
    border-radius: 45px;
    border: 1px solid #082F56;
    color: #082F56;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.homepage .btn-outline-dark:hover {
    background: #082F56;
    color: #ffffff;
}

.homepage .btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 22px;
    background: transparent;
    border-radius: 45px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.homepage .btn-outline-white:hover {
    background: #ffffff;
    color: #082F56;
}
/* =========================================
   STATS CARD
========================================= */

.homepage .stats-card {
    background: #082F56;
    border-radius: 25px;
    padding: 50px 30px 50px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 60px;
}

.homepage .stats-card-text {
    flex: 1;
    max-width: 450px;
    color: #F6F8FE;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.homepage .stats-numbers {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.homepage .stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.homepage .stat-number {
    color: #F6F8FE;
    font-size: 70px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.homepage .stat-label {
    color: #F6F8FE;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.55;
    margin: 0;
}

/* =========================================
   SECTION 2 — LEADERSHIP
========================================= */

.homepage .leadership-section {
    width: 100%;
    padding: 100px 30px;
    background: #F6F8FE;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.homepage .leadership-top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.homepage .leadership-title {
    flex: 1;
    max-width: 700px;
    color: #082F56;
    font-size: 70px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.homepage .leadership-spacer {
    flex: 1;
    max-width: 700px;
}

.homepage .leadership-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.homepage .leadership-image {
    width: 701px;
    height: 701px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    flex-shrink: 0;
}

.homepage .leadership-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.homepage .leadership-description {
    max-width: 500px;
    color: #212529;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   DIVIDER
========================================= */

.homepage .section-divider {
    width: 100%;
    height: 1px;
    background: #000000;
    margin: 0 auto !important;
}

/* =========================================
   SECTION 3 — VISION 2030
========================================= */

.homepage .vision-section {
    width: 100%;
    padding: 100px 30px;
    background: #F6F8FE;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.homepage .vision-top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.homepage .vision-title {
    flex: 1;
    max-width: 700px;
    color: #082F56;
    font-size: 70px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.homepage .vision-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.homepage .vision-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.homepage .vision-description {
    max-width: 500px;
    color: #212529;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.homepage .vision-image {
    width: 701px;
    height: 701px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    flex-shrink: 0;
}

/* =========================================
   PARTNERS ROW
========================================= */

.homepage .partners-row {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin: 0 30px;
}

.homepage .partners-card {
    flex: 1;
    background: #082F56;
    border-radius: 25px;
    padding: 50px 30px 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.homepage .partners-card-title {
    color: #ffffff;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.homepage .partners-divider {
    width: 100%;
    height: 1px;
    background: #ffffff;
}

.homepage .partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.homepage .partners-logos img {
    width: 190px;   /* same width */
    height: 90px;  /* same height */
    object-fit: contain;
}
/* =========================================
   SECTION 4 — OUR PROGRAMS
========================================= */

.homepage .programs-section {
    width: 100%;
    padding: 100px 30px 150px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center; /* center content */
    gap: 60px;
}

.homepage .programs-heading {
    color: #082F56;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    max-width: 500px;
    margin: 0 auto;
    text-align: center; /* center text */
}

.homepage .programs-carousel {
    display: flex;
    align-items: center;
    justify-content: center; /* center cards */
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    width: 100%;
}

.homepage .programs-carousel::-webkit-scrollbar {
    display: none;
}

/* each program card = image + overlay + text card side by side */
.homepage .program-card-group {
    display: flex;
    flex-shrink: 0;
    scroll-snap-align: start;
    gap: 0;
    position: relative;
    width: 464px;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
}

.homepage .program-card-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}

.homepage .program-card-overlay {
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(315deg, rgba(8,47,86,0) 36%, rgba(8,47,86,0.90) 100%);
}

.homepage .program-card-content {
    position: absolute;
    inset: 0;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.homepage .program-card-title {
    color: #ffffff;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    max-width: 300px;
    margin: 0;
}


/* =========================================
   LARGE SCREENS — 1400px+
========================================= */

@media (min-width: 1400px) {

    .homepage .hero-section,
    .homepage .leadership-section,
    .homepage .vision-section,
    .homepage .programs-section {
        padding-left: 80px;
        padding-right: 80px;
    }

    .homepage .partners-row {
        margin: 0 80px;
    }

    .homepage .section-divider {
        margin: 0 80px;
    }
}

/* =========================================
   EXTRA LARGE SCREENS — 1920px+
========================================= */

@media (min-width: 1920px) {

    .homepage .hero-section,
    .homepage .leadership-section,
    .homepage .vision-section,
    .homepage .programs-section {
        padding-left: 160px;
        padding-right: 160px;
    }

    .homepage .partners-row {
        margin: 0 160px;
    }

    .homepage .section-divider {
        margin: 0 160px;
    }

    .homepage .hero-title,
    .homepage .leadership-title,
    .homepage .vision-title {
        font-size: 80px;
    }

    .homepage .stat-number {
        font-size: 80px;
    }
    
}

/* =========================================
   ULTRA WIDE — 2560px+
========================================= */

@media (min-width: 2560px) {

    .homepage .hero-section,
    .homepage .leadership-section,
    .homepage .vision-section,
    .homepage .programs-section {
        padding-left: 260px;
        padding-right: 260px;
    }

    .homepage .partners-row {
        margin: 0 260px;
    }

    .homepage .section-divider {
        margin: 0 260px;
    }
}
/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .homepage .hero-section,
    .homepage .leadership-section,
    .homepage .vision-section,
    .homepage .programs-section {
        padding: 40px 20px;
        gap: 60px;
    }

    .homepage .hero-top,
    .homepage .hero-bottom,
    .homepage .leadership-top,
    .homepage .leadership-bottom,
    .homepage .vision-top,
    .homepage .vision-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .homepage .hero-title,
    .homepage .leadership-title,
    .homepage .vision-title {
        font-size: 42px;
    }

    .homepage .stat-number {
        font-size: 48px;
    }

    .homepage .stats-card {
        flex-direction: column;
        gap: 40px;
    }

    .homepage .stats-numbers {
        flex-direction: column;
        gap: 30px;
    }

    .homepage .leadership-image,
    .homepage .vision-image,
    .homepage .hero-image-block img {
        width: 100%;
        height: 350px;
    }

    .homepage .partners-row {
        flex-direction: column;
        margin: 0 20px;
    }

    .homepage .programs-heading {
        font-size: 36px;
    }

  .homepage .programs-carousel {
        display: flex;
        flex-direction: column;
        overflow: visible;
        gap: 25px;
    }

    .homepage .program-card-group {
        width: 100%;
        max-width: 100%;
        height: 320px;
    }

    .homepage .leadership-spacer {
        display: none;
    }
}

@media (max-width: 576px) {

    .homepage .hero-title,
    .homepage .leadership-title,
    .homepage .vision-title {
        font-size: 32px;
    }

    .homepage .hero-subtitle,
    .homepage .hero-description,
    .homepage .leadership-description,
    .homepage .vision-description {
        font-size: 15px;
    }

    .homepage .stat-number {
        font-size: 36px;
    }

    .homepage .stats-card-text {
        font-size: 18px;
    }
}