
.programs-section-count span {
    color: #23567D;
    font-size: 24px;
    font-weight: 800;
    line-height: 64px;
}

/* ===== Programs Hero Section ===== */
.programs-hero {
    position: relative;
    background: #224E7E;
    min-height: 653px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.programs-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    max-width: 777px;
    width: 100%;
    padding: 0 24px;
    gap: 40px;
    margin-top: 40px;
}

.programs-hero-title {
    font-family: 'Rubik', 'Cairo', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 48px;
    margin: 0;
}

.programs-hero-title span {
    font-weight: 700;
}

.programs-hero-desc {
    font-family: 'Rubik', 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 24px;
    margin: 0;
    max-width: 660px;
}

.programs-hero-search {
    position: relative;
    width: 100%;
    max-width: 777px;
}

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

.programs-hero-search-input {
    width: 100%;
    height: 64px;
    border-radius: 16px;
    border: 6px solid rgba(255, 255, 255, 0.12);
    background: #fff;
    padding: 0 24px;
    padding-left: 60px;
    color: #23567D;
    font-family: 'Rubik', 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    direction: rtl;
}

.programs-hero-search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .programs-hero {
        min-height: 500px;
    }

    .programs-hero-content {
        gap: 24px;
        padding: 0 20px;
        margin-top: 20px;
    }

    .programs-hero-title {
        font-size: 28px;
        line-height: 38px;
    }

    .programs-hero-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .programs-hero-search-input {
        height: 52px;
        font-size: 13px;
        border-radius: 12px;
        border-width: 4px;
    }
}

@media (max-width: 480px) {
    .programs-hero {
        min-height: 420px;
    }

    .programs-hero-title {
        font-size: 24px;
        line-height: 34px;
    }

    .programs-hero-desc {
        font-size: 13px;
    }

    .programs-hero-search-input {
        height: 48px;
        padding-left: 48px;
    }

    .programs-hero-search-icon {
        left: 16px;
    }
}
