/* Body styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Section styling */
section {
    padding: 40px 0;
}

/* Navbar styling */
.navbar {
    margin-bottom: 30px;
}

.navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00 !important;
}

/* Card hover effect */
.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
}

footer i {
    font-size: 1.5em;
    margin: 0 10px;
}

footer i:hover {
    color: #ffcc00;
    transition: color 0.3s;
}

/* Hover animation */
img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

