﻿body {
    background: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    padding-top: 100px;
}

.section-header {
    margin-bottom: 40px;
}

.interior-icon {
    font-size: 60px;
    color: #ffe1a0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #343a40;
}

.department-card {
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .department-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        background: #f5f8ff;
    }

.department-icon {
    width: 100%;
    height: 200px;
    background-color: #eef1f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-bottom: 15px;
    overflow: hidden;
}

.department-card:hover .department-icon {
    transform: scale(1.02);
}

.department-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.card-body {
    text-align: center;
    padding: 25px 15px;
}
