/* ===== Programs Grid ===== */
.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
}

/* ===== Programs Count ===== */
.programs-section-count span {
    color: #00293D;
    font-size: 24px;
    font-weight: 800;
    line-height: 64px;
}

/* ===== Hero Section ===== */
.programs-section {
    background-image: url('../images/programsBg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 817px;
    position: relative;
    overflow: hidden;
}

.header-uni {
    background: rgba(255, 255, 255, 0.40) !important;
    backdrop-filter: blur(15px);
}

/* ===== Container Layout ===== */
.programs-section-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
    padding: 0 100px;
}

/* ===== Text Content Area ===== */
.programs-section-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    align-self: center;
    max-width: 607px;
    z-index: 2;
}

.programs-section-content-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Title */
.programs-section-title {
    color: #00293D;
    text-align: right;
    font-size: 48px;
    line-height: 120%;
    max-width: 350px;
}

.title-light {
    font-weight: 400;
}

.title-bold {
    font-weight: 800;
}

/* Description */
.programs-section-desc {
    color: #535965;
    text-align: right;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
    max-width: 607px;
}

/* ===== Search Bar (Pill Shape) ===== */
.search-programs-wrapper {
    position: relative;
    width: 100%;
    max-width: 607px;
}

.search-programs-icon {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00529A;
}

.search-programs-input {
    width: 100%;
    height: 64px;
    border-radius: 100px;
    border: 6px solid rgba(0, 166, 157, 0.04);
    padding: 0 24px 0 60px;
    background: #FFFFFF;
    color: #00293D;
    font-size: 14px;
    font-weight: 400;
}

.search-programs-input:focus {
    border-color: rgba(0, 166, 157, 0.04);
    outline: none;
    box-shadow: none;
}

.search-programs-input::placeholder {
    color: #8F96A3;
    font-size: 14px;
    font-weight: 400;
}

/* ===== Image Columns ===== */
.programs-image-columns {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
}

.programs-col {
    position: absolute;
    width: 290px;
    height: 100%;
    overflow: hidden;
    opacity: 0.4;
}

.programs-col-left {
    left: 65px;
    top: 0;
}

.programs-col-right {
    left: 380px;
    top: 0;
}

.programs-col-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.programs-col-left .programs-col-track {
    animation: scrollUp 20s linear infinite;
}

.programs-col-right .programs-col-track {
    animation: scrollUp 20s linear infinite;
    animation-delay: -5s;
}

.programs-col-track img {
    width: 290px;
    height: 372px;
    object-fit: cover;
    border-radius: 24px;
    flex-shrink: 0;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-50% - 12px));
    }
}

/* ===== Bottom Gradient Overlay ===== */
.programs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 266px;
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    z-index: 1;
}

/* ===== Features Section ===== */
.features-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.features-container {
    background: #00A8AB;
    border-radius: 24px;
    width: 100%;
    max-width: 1360px;
    height: 573px;
    padding: 60px 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.features-title {
    font-size: 40px;
    line-height: 52px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    max-width: 399px;
}

.features-title .fw-400 {
    font-weight: 400;
}

.features-title .fw-800 {
    font-weight: 800;
}

.features-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #FFFFFF;
    text-align: center;
    max-width: 580px;
    margin: 0;
}

/* Cards Row */
.features-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
    margin-top: auto;
    transform: translateY(60px);
}

.feature-card {
    background: #FFFFFF;
    border-radius: 24px;
    width: 387px;
    padding: 48px 22px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.feature-card-raised {
    transform: translateY(-50px);
}

/* Icon */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(186, 242, 181, 0.2), rgba(38, 170, 212, 0.2));
    backdrop-filter: blur(7.5px);
}

/* Card Text */
.feature-card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 342px;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
    color: #00293D;
    text-align: center;
    margin: 0;
}

.feature-card-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
    color: #535965;
    text-align: center;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.cta-container {
    background: linear-gradient(90deg, #00A8AB -24.26%, #00529A 100%);

    border-radius: 24px;
    width: 100%;
    max-width: 1360px;
    height: 391px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-vector-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 1;
    max-width: 607px;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.cta-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    margin: 0;
    max-width: 350px;
}

.cta-subtitle {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
    text-align: center;
    margin: 0;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 246px;
    height: 56px;
    background: #00A8AB;
    border-radius: 100px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #009496;
    color: #FFFFFF;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .programs-section {
        height: auto;
        padding-bottom: 40px;
    }

    .programs-section-container {
        padding: 0 20px;
    }

    .programs-image-columns {
        display: none;
    }

    .features-container {
        padding: 40px 20px 0;
    }

    .features-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 387px;
    }

    .feature-card-raised {
        margin-bottom: 0;
    }

    .cta-container {
        height: auto;
        padding: 60px 20px;
        margin: 0 16px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-btn {
        width: 100%;
        max-width: 246px;
    }
}