body {
    font-family: Arial, sans-serif;
}

header {
    color: white;
    padding: 100px 0 50px 0;
    text-align: center;
    position: relative;
}

.banner {
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

header .social-icons {
    margin-top: 20px;
}

header .social-icons a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

header .social-icons a:hover {
    color: #d4d4d4;
}

footer {
    background-color: #08415c;
    color: white;
    padding: 20px 0;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #d4d4d4;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.navbar {
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #08415c;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

.navbar-nav {
    margin: 0 auto;
}

.nav-link {
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
}

.nav-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: -100%;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #d4d4d4;
}

.form-inline {
    display: flex;
    align-items: center;
}

.form-control {
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 2px solid white;
    background: transparent;
    color: white;
    transition: all 0.3s;
}

.form-control:focus {
    box-shadow: none;
    border-color: #d4d4d4;
    background: transparent;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: #08415c;
}

.container.mt-5.pt-5 {
    margin-top: 100px !important;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* Logo styling */
.logo {
    height: 50px;
}

/* Category list styling */
#category-list {
    padding-left: 0;
    list-style: none;
}

#category-list .nav-item {
    margin-bottom: 10px;
}

#category-list .nav-link {
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #08415c;
    transition: background-color 0.3s, color 0.3s;
}

#category-list .nav-link:hover {
    background-color: #05688a;
    color: white;
}
