.department-card {
    margin: 20px;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.department-card img {
    width: 250px; /* Increased image size */
    max-width: 100%; /* Ensures responsiveness */
    height: auto;
    border-radius: 8px;
}

.department-info h5 {
    margin-bottom: 5px;
    font-weight: bold;
    color: #ff5e15;
    text-align: center;
}

.department-info p {
    margin: 0;
    color: #333;
    font-size: 15px;
}
.divH1{
    color: #ff5e15;  
    text-align: center;
}



/* Mobile adjustments */
@media (max-width: 767px) {
    .department-card {
        flex-direction: column;
        text-align: center;
    }
    .department-card img {
        width: 80%; /* Bigger image on mobile */
        margin-bottom: 15px;
    }
}

