body {
    background-color: #f8f9fa; /* Set the body background color */
    color: #343a40; /* Set the text color */
}

header {
    background-color: white; /* Set the header background color */
    font-weight: bold;
    height: 105px;
}

.navbar {
    padding: 20px 0; /* Add padding to the navbar */
}

.navbar-brand img {
    height: 100px;
    width: 200px;
}

.navbar-toggler {
    border: none;
}

.navbar-nav .nav-link {
    font-size: 18px; /* Set the font size for nav links */
    margin-right: 15px; /* Adjust the spacing between nav items */
}

.navbar-nav .nav-link:hover {
    color: #fff; /* Change the hover color */
}

.navbar-nav .nav-item {
    margin-right: 0; /* Remove default margin for nav items */
}

.navbar-nav .dropdown-menu {
    background-color: #343a40; /* Set the dropdown background color */
}

.navbar-nav .dropdown-item {
    color: #fff; /* Set the dropdown item text color */
}

.navbar-nav .dropdown-item:hover {
    background-color: #007bff; /* Set the hover color for dropdown items */
}
.OilColours1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.oil {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oil li {
    margin-bottom: 10px;
}

.OilColours img {
        max-width: 100%; /* Make sure images don't exceed their container */
        height: auto; /* Maintain the aspect ratio */
        margin: 0 auto; /* Center images horizontally */
        display: block; /* Remove extra space below images */
    }

    /* Additional styles for section boxes shadow */
    .OilColours {
        width:800px;
        margin:auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow to the section */
        background-color: #0A2449;
        color: white;
        border-radius: 30px; /* Optional: Add border-radius for a rounded look */
        overflow: hidden; /* Ensure content doesn't overflow the rounded corners */
        margin-bottom: 20px; /* Optional: Add margin for separation between sections */
        
    }
    
    /* Add your existing styles here */

