/*================ UNIVERSITY COLLEGE TABLE SECTION ================*/


.university_college_list_section {

    width: 100%;
    padding: 80px 8%;
    background: #f7fbff;

}


.university_college_list_container {

    max-width: 1300px;
    margin: auto;

}



/* Heading */

.university_college_heading {

    text-align: center;
    margin-bottom: 45px;

}


.university_college_heading h1 {

    font-size: 38px;
    color: #243b68;
    border-bottom: 4px solid #ff8a00;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 20%;
    padding-bottom: 10px;
    margin-bottom: 12px;
    display: inline-block;

}


.university_college_heading p {

    font-size: 16px;
    color: #666;

}
.university_college_heading .disc{
    font-size: 16px;
    color: #1d8cf8;
}



/* Table Wrapper */

.college_table_wrapper {

    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

}



/* Table */

.university_college_table {

    width: 100%;
    border-collapse: collapse;
    min-width: 900px;

}



.university_college_table thead {

    background: #12327a;
    color: white;

}



.university_college_table th {

    padding: 18px;
    font-size: 16px;
    text-align: left;

}



.university_college_table td {

    padding: 16px;
    border-bottom: 1px solid #e5eaf2;
    color: #444;
    font-size: 15px;

}



.university_college_table tbody tr {

    transition: .3s;

}



.university_college_table tbody tr:hover {

    background: #eef6ff;

}



/* View Button */

.university_college_table td a {

    display: inline-block;
    padding: 8px 18px;
    background: #1d8cf8;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: .3s;

}


.university_college_table td a:hover {

    background: #12327a;

}





/* ================= MOBILE RESPONSIVE ================= */


@media(max-width:768px) {


    .university_college_list_section {

        padding: 60px 5%;

    }



    .university_college_heading h1 {

        font-size: 28px;

    }



    .university_college_heading p {

        font-size: 14px;

    }



    .college_table_wrapper {

        border-radius: 10px;

    }



    .university_college_table th {

        padding: 14px;
        font-size: 14px;

    }



    .university_college_table td {

        padding: 14px;
        font-size: 14px;

    }



    .university_college_table td a {

        padding: 7px 14px;
        font-size: 13px;

    }


}