/* Indian College Page Styles - Migrated from Legacy ASPX */

#pagetitle {
    background-color: #4e59ad;
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

#pagetitle h1 {
    color: white !important;
}


#nav {
    background-color: #343a40;
    display: flex;
    justify-content: center;
    padding: 10px;
    line-height: 1.6;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#nav a {
    color: #f8f9fa;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    line-height: 1.6;
}

#nav a:hover {
    background-color: #495057;
    color: #fff;
    border-radius: 4px;
    transform: scale(1.1);

}




#basic-info {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#courses-table {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#costs {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#durations {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#course-types {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#conclusion {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#location {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#university-info {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#overview {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#fees {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#sat-score {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#branches {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

#race-distribution {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

h2 {
    color: #4e59ad;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.6;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    line-height: 1.6;
}

th,
td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    font-size: 16px;

}

th {
    background-color: #4e59ad;
    color: white !important;
}

td {
    background-color: #f8f9fa;
}

tr:hover {
    background-color: #e9ecef;
    transform: scale(1.02);
    transition: transform 0.2s;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 20px;
    line-height: 1.6;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}






@media screen and (max-width: 768px) {


    #nav {
        flex-direction: column;
    }

    section {
        padding: 15px;
    }

    table,
    th,
    td {
        font-size: 14px;
    }

    button {
        padding: 8px 16px;
        font-size: 16px;
    }

    #table-scroller {
        overflow-x: auto;
    }

    #table-scroller1 {
        overflow-x: auto;
    }

    #table-scroller2 {
        overflow-x: auto;
    }

    #table-scroller3 {
        overflow-x: auto;
    }
}


html {
    scroll-behavior: smooth;
}


img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

section,
#nav {
    animation: fadeIn 0.7s ease-in;
}


.card {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #fff;
    margin: 20px 0;
}

.card h3 {
    margin-bottom: 10px;
    color: #007bff;
}

.card p {
    color: #555;
}

.table-responsive {
    overflow-x: hidden !important;
}
