body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Header */
header {
    background: linear-gradient(to right, #002147, #0056b3);
    color: white;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: yellow;
    transform: scale(1.1);
}

/* Hero with University Image */
.hero {
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644') no-repeat center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.hero h1, .hero p, .hero button {
    position: relative;
    z-index: 1;
    animation: fadeIn 2s ease-in;
}

.hero h1 {
    font-size: 45px;
}

/* Sections */
section {
    padding: 50px;
    text-align: center;
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    width: 230px;
    box-shadow: 0px 0px 15px #ccc;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px #888;
}

/* Button */
button {
    padding: 12px 25px;
    background: orange;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

button:hover {
    background: red;
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #002147;
    color: white;
    text-align: center;
    padding: 15px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}