header{ 
    background: #9CECFB;  
    background: -webkit-linear-gradient(to bottom, #0052D4, #65C7F7, #9CECFB);
    background: linear-gradient(to bottom, #0052D4, #65C7F7, #9CECFB);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.topbar{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 5rem 10px 5rem;
    background: transparent;
}

.topLinks{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 8px;
    width: 100%;
    padding: 8px;
}

.topLinks .topLinks-box,
.topLinks .topLinks-box a{
    color: var(--white-color);
    text-decoration: none;
    font-size: 15px;
}

.topLinks .topLinks-box:nth-child(1) a:hover{color: var(--dark-color);}
.topLinks .topLinks-box:nth-child(2) {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-content: center;
    justify-content: center;
}


.topLinks .topLinks-box:nth-child(2) a:nth-child(1):hover{ color: #1877F2;}
.topLinks .topLinks-box:nth-child(2) a:nth-child(2):hover{ color: #FF0000;}
.topLinks .topLinks-box:nth-child(2) a:nth-child(3):hover{ color: #FF0000;}
.topLinks .topLinks-box:nth-child(2) a:nth-child(4):hover{ color: #1DA1F2;}

.bannar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 100px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.information{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.college-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.info-title{ 
    font-size: 32px;
    color: #f7f9f9; 
    font-family: 'Poppins', sans-serif;
}

.info-subtitle{
    font-size: 1.2rem;
    color: #353637;
    font-weight: 500;
}

.naac {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 50% 40%, white 30%, transparent 31%);
}

.naac img{
    width: 100%;
    height: 100%;
}

.other-things{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.otherLink{ color: #353637; }
.otherLink a{
    text-decoration: none;
    font-weight: 550;
    color: var(--white-color);
}

.otherLink a:hover{ color: var(--dark-color);}



/* Responsive */
@media (max-width: 1215px){
    .topbar{
        padding: 5px 2rem 10px 2rem;
    }
}

@media (max-width: 1090px){
    .logo{
        width: 80px;
        height: 70px;
    }

    .information{
        justify-content: center;
        gap: 2rem;
    }

    .naac{ 
        width: 70px;
        height: 70px;
    }

    .info-title{ font-size: 1.5rem; }
    .info-subtitle{ font-size: 1rem; }
    .otherLink{ font-size: 0.8rem; }
}

@media (max-width: 975px){ 
    .topbar{ padding: 5px 10px;}
    .info-title{ font-size: 1.25rem; }    
    .info-subtitle{ font-size: 0.95rem; }   
    .otherLink{ font-size: 0.7rem;}
}

@media (max-width: 850px){ .topbar{ padding: 5px 10px;} }
@media (max-width: 805px){ .otherLink{font-size: 1vw;} }

@media (max-width: 795px){
    .logo{
        width: 100px;
        height: 80px;
    }

    .information{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .college-info{ width: 100%; }
    .info-title{ 
        text-align: center;
        font-size: 1.12rem; 
    }

    .info-subtitle{
        text-align: center;
        font-size: 0.8rem;
    }

    .naac{
        width: 5rem;
        height: 5rem;
    }
    .other-things{ flex-direction: row-reverse; }
    .otherLink{ font-size: 0.6rem; }
    .otherLink, .otherLink a{ color: #353637; } 
}

@media (max-width: 500px){
    .bannar{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .topLinks .topLinks-box,
    .topLinks .topLinks-box a{
        font-size: 10px;
    }
}

@media (max-width: 430px){
    .logo{
        width: 15.5vw;
        height: 14.5vw;
    }

    .information{ width: auto; }
    .info-title{ font-size: 4.5vw; }
    .info-subtitle{ font-size: 3vw; }
}


@media (max-width: 380px){
    .logo{ margin-bottom: 5px; }
    .information{ gap: 5px; }
    .info-title,
    .info-subtitle{ text-align: center; }
    .topLinks{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
}