/* Modern campus styling */
.campus{
    padding: 0;
    line-height: 1.7;
    text-align: justify;
}

.campus_images{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.campus_images img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.campus_images img:hover {
    transform: scale(1.05);
}

/* Modern contact styling */
.contact {
    padding: 0;
}

.contact-section {
    padding: 4rem 0;
}

.contact-section:nth-child(even) {
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact h2{
    margin: 0 0 1.5rem 0;
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-1);
}

.contact h2:after{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-1), var(--theme-2));
    border-radius: 2px;
}

.contact .heads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact .heads p {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--theme-1);
}

.contact .map {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact .map iframe {
    border-radius: 12px;
}

@media screen and (max-width: 768px){
    .campus_images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact .heads {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}



