/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar{
    background:#0d47a1;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 5%;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.college-name h2{
    font-size:1.2rem;
}

.college-name p{
    font-size:0.9rem;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#ffd54f;
}

.hamburger{
    display:none;
    font-size:30px;
    cursor:pointer;
}
.footer{
    background:#0d47a1;
    color:white;
}

.footer-container{
    max-width:1200px;
    margin:auto;

    padding:60px 5%;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

    align-items:center;
}

.footer-map h2{
    font-size:2.2rem;
    margin-bottom:25px;
    font-weight:300;
}

.footer-map h2 span{
    font-weight:700;
}

.footer-map iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:10px;
}

.footer-info{
    text-align:center;
}

.footer-info img{
    width:170px;
    margin-bottom:20px;
}

.footer-info h3{
    font-size:1.8rem;
    margin-bottom:25px;
    text-transform:uppercase;
}

.footer-info p{
    margin-bottom:15px;
    font-size:1.1rem;
    line-height:1.8;
}

.footer-links{
    margin-top:35px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin:0 12px;
    font-size:1.1rem;
}

.footer-links a:hover{
    text-decoration:underline;
}

.copyright{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,0.2);
}