/* Reset body margins */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* Navbar Styling */
.navbar {
    background-color: #ffca3c;
    /* Primary Color */
    padding: 1rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff;
    /* White text for logo */
    text-decoration: none;
}

.navbar-brand .logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    /* White text for links */
    padding: 0.5rem 1rem;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
}

.nav-link.active {
    background-color: #ffffff;
    /* Highlight active link */
    color: #ffca3c;
    /* Primary color text */
}

.nav-link:hover {
    background-color: #ffc107;
    /* Hover shade */
    color: #ffffff;
    /* White text on hover */
}

/* Responsive Logo */
@media (max-width: 576px) {
    .navbar-brand span {
        font-size: 1.2rem;
    }
}

/* Banner Styling */
.banner {
    position: relative;
    height: 100vh;
    background-color: #ffca3c;
    /* Primary Color */
    overflow: hidden;
    text-align: center;
}

.banner-title {
    font-size: 3rem;
    color: #ffffff;
    /* White text */
    font-weight: bold;
    margin-bottom: 1rem;
    opacity: 0;
    /* Initial hidden state for animation */
}

.banner-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    /* White text */
    margin-bottom: 2rem;
    opacity: 0;
    /* Initial hidden state for animation */
}

.banner-btn {
    color: #ffca3c;
    font-weight: bold;
    border: 2px solid #ffffff;
    transition: all 0.3s;
}

.banner-btn:hover {
    background-color: #ffffff;
    color: #ffca3c;
}

.banner-image {
    position: absolute;
    bottom: 0;
    right: 5%;
    max-width: 400px;
    opacity: 0;
    /* Initial hidden state for animation */
}