.student-admission-section {
    position: relative;
    width: 100%;
    background-color: var(--bg);
    padding: 80px 0;
    overflow: hidden;
}

.student-admission-v-shapes{
    width: 100%;
    max-width: 1240px;
    height: 850px;
    left: -40px;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
    opacity: 0.8;
}


.student-description {
    display: flex;
    flex-direction: column;
    max-width: 840px;
    /* width: 90%; */
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
    justify-content: center;
    position: relative;
    z-index: 1;
    gap: 20px;
}

.student-description h2{
    font-family: 'Archivo Expanded', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0%;
    color: var(--primary);
}

.description-details{
    width: 100%;
    text-align: left;
}

.description-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
    letter-spacing: -1.1%;       
    color: var(--text-sub);          
    margin-bottom: 12px;       
}

.student-admission-section{
    padding: 60px 0;
    width: 100%;
    margin: 0;        
}

.admission-form-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    height: auto;
    margin: 60px auto;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
}

.admission-form-content {
    flex: 1;
    padding: 20px;
    background: var(--white);
}

.admission-form-content h3 {
    font-family: 'Archivo Expanded', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0%;
    color: var(--text);
    margin-top: 10px;
}

.admission-form-content hr {
    border: 0;
    border-top: 1px solid #eee;
    margin-top:20px;
}

form{
    margin-top: 28px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    gap: 10px;
    flex: 1;
    margin-bottom: 15px;
}

label 
{
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.6%;
    margin-bottom: 5px;
    color: var(--text);
}

.phone
{
    color: var(--primary);
}

.option{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    color: var(--text-sub);
}

.custom-select-wrapper {
    position: relative;
    width: 100%; 
}

.custom-select-box {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.6%;
    color: var(--text-soft);
    background-color: var(--white);
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23868C98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.custom-select-box:hover{
    background-color: #E4E5E73D;
}

.custom-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; 
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 99;
    box-sizing: border-box;
}
        

.custom-dropdown-list li {
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.6%;
    color: var(--text);
    cursor: pointer;
}

.custom-dropdown-list li:hover {
    background-color: #E4E5E73D;
}


input,
select {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #E2E4E9;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    color: var(--text-soft);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

input:hover,
select:hover {
    background-color: #E4E5E73D;
}

.btn-admit {
    display: inline-block;
    width: 100% !important;
    height: 40px;
    padding: 8px 0;
    background-color:var(--primary); 
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.6%;
    border-radius: 120px; 
    transition: background-color 0.3s ease;
    margin-top: 10px;
    cursor: pointer;
}

.btn-admit:hover {
    background-color: #565f70;
    color: var(--white);
}

/*----------- Large Desktop(1281px to 1920px) ------------*/
@media screen and (min-width: 1281px) and (max-width: 1920px) {

    .student-admission-section {
        position: relative;
        width: 100%;
        background-color: var(--bg);
        padding: 80px 0;
        overflow: hidden;
    }

    .student-admission-v-shapes{
        width: 100%;
        max-width: 1240px;
        height: 850px;
        left: -40px;
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        overflow: visible;
        opacity: 0.4;
    }

    .admission-form-container {
        position: relative;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        max-width: 1200px;
        height: 500px;
        margin: 60px auto;
        background-color: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .custom-select-wrapper {
        position: relative;
        width: 100%; 
    }

    .custom-select-box {
        width: 100%;
        height: 40px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: var(--text-soft);
        background-color: var(--white);
        cursor: pointer;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23868C98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
    }

    .custom-dropdown-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%; 
        background: var(--white);
        border: 1px solid #ddd;
        border-radius: 10px;
        margin-top: 5px;
        list-style: none;
        padding: 0;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 99;
        box-sizing: border-box;
    }

    .custom-dropdown-list li {
        padding: 10px;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: var(--text);
        cursor: pointer;
    }

    .custom-dropdown-list li:hover {
        background-color: #E4E5E73D;
    }
}


/*------------- Mobile Screen (320px to 768px) ------------*/
@media screen and (min-width: 320px) and (max-width: 768px) {

    .student-admission-section {
        position: relative;
        width: 100%;
        background-color: var(--bg);
        padding: 60px 0;
        min-height: 760px;
        overflow: hidden;
    }

    .student-admission-v-shapes {
        position: absolute;
        top: 0;
        bottom: 30%;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }

    .admission-bg-img{
        bottom: 22%;
        position: absolute;
        width: auto;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .student-description {
        width: 100%;
        max-width: 600px;
        padding: 0 30px; 
        margin: 0 auto;
        box-sizing: border-box;
    }
	
    .student-description p {
        margin-top: 20px;
    }

    .student-admission-section {
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .admission-form-container {
        width: 89%;
        height: auto;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        padding: 10px;
    }

    .admission-form-content {
        padding: 20px;
    }

    .nf-form-content .one-half,
    .nf-form-content .first.one-half {
        width: 100% !important;
        float: none !important;
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .btn-admit {
        width: 100%; 
        height: 45px; 
    }


}


/*------------- Tablet Screen (768px to 1280px) ------------*/
@media screen and (min-width: 768px) and (max-width: 1280px) {

    .student-admission-section{
        padding: 60px 0;
        min-height: auto;
    }

    .student-admission-v-shapes {
        width: 100%;
        overflow: hidden;
    }

    .hero-img {
        position: absolute;
        width: auto;
        height: 100%;
        object-fit: cover;
        display: block; 
    }

    .student-description {
         max-width: 760px;
        padding: 0 30px;
    }

    .student-description p {
        margin-bottom: 14px;
    }

    .admission-form-container {
        height: auto; 
        flex-direction: row; 
        flex-wrap: nowrap;
        max-width: 90%;
    }

    .admission-form-content {
        flex: 1;
        padding: 30px;
    }

    .form-row {
        display: flex;
        gap: 15px;
    }

    .btn-admit {
        width: 100%;
        margin-top: 20px;
        height: 45px;
        line-height: 28px;
    }
}