/* =========================================================
   ADMISSION HERO SECTION
========================================================= */

.admission-hero{
    position: relative;
    min-height: 100vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url('../images/bg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 120px 60px 60px;
}

/* =========================================================
   CONTAINER
========================================================= */

.hero-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.hero-left{
    width: 50%;
    color: white;
}

.hero-tagline{
    font-size: 28px;
    font-style: italic;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero-left h1{
    font-size: 70px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 30px;
    max-width: 700px;
}

/* =========================================================
   ADMISSION BOX
========================================================= */

.admission-open-box{
    background: #09c441;

    color: white;

    width: fit-content;

    padding: 18px 40px;

    font-size: 38px;
    font-weight: 700;

    border-radius: 12px 12px 0 0;
}

/* =========================================================
   PROGRAM BOX
========================================================= */

.program-box{
    background: rgba(0,0,0,0.6);

    border: 1px solid rgba(255,255,255,0.25);

    padding: 30px;

    border-radius: 0 0 18px 18px;

    width: 550px;

    backdrop-filter: blur(6px);
}

.program-box h2{
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.program-box p{
    font-size: 24px;
    color: #e9e9e9;
    margin: 0;
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.hero-right{
    width: 38%;
    display: flex;
    justify-content: flex-end;
}

/* =========================================================
   FORM CARD
========================================================= */

.form-card{
    width: 100%;
    max-width: 520px;

    background: rgba(255,255,255,0.96);

    padding: 30px;

    border-radius: 20px;

    box-shadow: 0 25px 60px rgba(0,0,0,0.35);

    backdrop-filter: blur(8px);
}

/* =========================================================
   TABS
========================================================= */

.tab-buttons{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-buttons .btn{
    border-radius: 50px;
    padding: 10px 28px;

    font-weight: 700;

    border: 2px solid #09c441;

    color: #09c441;

    background: transparent;

    transition: 0.3s ease;
}

.tab-buttons .btn.active{
    background: #09c441;
    color: white;
}

/* =========================================================
   FORM GRID
========================================================= */

.form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* =========================================================
   FORM CONTROLS
========================================================= */

.form-card label{
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #222;
}

.form-control,
.form-select{
    width: 100%;
    height: 50px;

    border-radius: 10px;

    border: 1px solid #dcdcdc;

    padding: 0 16px;

    font-size: 15px;

    background: white;
}

.form-control:focus,
.form-select:focus{
    border-color: #09c441;
    box-shadow: 0 0 0 0.2rem rgba(9,196,65,0.2);
}

/* =========================================================
   TERMS
========================================================= */

.terms{
    font-size: 14px;
    color: #555;

    text-align: center;

    margin-top: 25px;
    line-height: 1.7;
}

/* =========================================================
   REGISTER BUTTON
========================================================= */

.register-btn{
    width: 100%;

    border: none;

    background: #09c441;

    color: white;

    font-size: 18px;
    font-weight: 700;

    height: 55px;

    border-radius: 10px;

    margin-top: 20px;

    transition: 0.3s ease;
}

.register-btn:hover{
    background: #079734;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .hero-left h1{
        font-size: 54px;
    }

    .program-box{
        width: 100%;
    }
}

@media(max-width:992px){

    .admission-hero{
        padding: 140px 25px 80px;
    }

    .hero-container{
        flex-direction: column;
    }

    .hero-left,
    .hero-right{
        width: 100%;
    }

    .hero-left{
        text-align: center;
    }

    .admission-open-box{
        margin: auto;
    }

    .program-box{
        margin: auto;
    }

    .hero-left h1{
        font-size: 48px;
    }

    .hero-right{
        justify-content: center;
    }
}

@media(max-width:768px){

    .hero-left h1{
        font-size: 38px;
    }

    .hero-tagline{
        font-size: 22px;
    }

    .admission-open-box{
        font-size: 24px;
        padding: 15px 25px;
    }

    .program-box h2{
        font-size: 30px;
    }

    .program-box p{
        font-size: 18px;
    }

    .form-grid{
        grid-template-columns: 1fr;
    }

    .program-box{
        width: 100%;
    }
}