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

.hero {
    background: url('/images/header.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
}

/* Added styles for navbar background */
.navbar {
    background-color: #004466 !important;
    /* Use !important to override Bootstrap styles */
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
    color: white !important;
    /* Makes the text white */
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    /* White color for toggler */

}



.btn-primary {
    background: #004466;
    border: none;
}

.btn-primary:hover {
    background: #003355;
}

.section-title {
    margin-bottom: 40px;
    font-weight: bold;
}

.product-box {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: 0.3s ease-in-out;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    background: #004466;
    color: white;
    padding: 20px;
    text-align: center;
}