.btn-custom {
    background-color: #32c41b;
    color: #fff;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: #28a013;
    color: #fff;
}

.admission-hero {
    background: url('https://images.unsplash.com/photo-1588075592446-265fd1e6e76e') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.admission-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.process-step {
    background-color: #32c41b;
    color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
}

footer {
    background-color: #030f27;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

/* Dropdown */
/* CSS - add to your stylesheet */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

/* core select styling */
.custom-select {
    box-sizing: border-box;
    /* important so padding is counted inside width */
    width: 100%;
    padding: 12px 44px 12px 20px;
    /* left padding + space for custom arrow on right */
    min-height: 48px;
    /* prevents vertical clipping */
    line-height: 1.4;
    /* makes text fit vertically */
    border: 2px solid #32c41b;
    border-radius: 30px;
    background-color: #fff;
    color: #6b6f76;
    /* placeholder color by default */
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all .25s ease;
}

/* arrow on right */
.custom-select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #32c41b;
    font-size: 13px;
    pointer-events: none;
}

/* focus/hover */
.custom-select:focus,
.custom-select:hover {
    outline: none;
    border-color: #030f27;
    box-shadow: 0 4px 18px rgba(50, 196, 27, 0.16);
    color: #030f27;
    /* ensure visible when focused */
}

/* when a real option is chosen, make text darker (we toggle class via JS below) */
.custom-select.has-value {
    color: #030f27;
}

/* option styling (best-effort — many browsers ignore fancy styles on <option>) */
.custom-select option {
    padding: 8px 12px;
    line-height: 1.4;
    color: #030f27;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .custom-select {
        font-size: 15px;
        padding: 10px 40px 10px 16px;
        min-height: 44px;
    }

    .custom-select-wrapper::after {
        right: 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .custom-select {
        font-size: 14px;
        padding: 8px 36px 8px 14px;
        min-height: 42px;
        border-radius: 24px;
    }

    .custom-select-wrapper::after {
        right: 10px;
    }
}

/* Wrapper */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

/* Remove browser default arrow */
.custom-select {
    border: 2px solid #32c41b;
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #fff;
    color: #030f27;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    /* important: removes black arrow */
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

/* Custom arrow */
.custom-select-wrapper::after {
    content: "▼";
    font-size: 14px;
    color: #32c41b;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Hover & focus */
.custom-select:hover,
.custom-select:focus {
    border-color: #030f27;
    box-shadow: 0px 0px 10px rgba(50, 196, 27, 0.3);
    outline: none;
}