body {
    font-family: Arial, sans-serif;
}
.header {
    background-color: #6c9452;
    padding: 20px 0;
    text-align: center;
}
.header img {
    height: 60px;
}
.header .company-name {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}
.navbar {
    background-color: #ca0000;
    font-size: 20px;
}
.navbar-nav {
    margin: auto;
}
.navbar-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}
.navbar-nav .nav-link {
    color: #fff;
    margin-right: 15px;
}
.navbar-nav .nav-link:hover {
    color: #d4af37;
}
/* home */
.header-content {
    text-align: center;
    padding: 20px;
    
}

.header-content img {
    width: 95rem;
    height: 10rem;
}

.header-content h2 {
    font-size: 28px;
    margin: 20px 0 10px;
}

.header-content p {
    font-size: 16px;
    color: #666;
}
.order-now img {
    max-width: 100%;
    height: auto;
}

/* video banner */
.video-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 90vh;
}
.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.video-banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}
.video-banner .content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.video-banner .content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.video-banner .content a {
    font-size: 1.25rem;
    color: #fff;
    background-color: RGB(116, 125, 102) ;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
}.video-banner .content a:hover{
    background-color: RGB(223, 1, 0);
    color: #fff;
}

 /* gravel and sand */
 .section-content {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light gray background */
}

.section-content .container {
    max-width: 1140px; /* Max width for the container */
    margin: 0 auto; /* Center align the container */
    padding: 0 15px; /* Padding on left and right */
}

.section-content h3 {
    font-size: 2em; /* Font size for the title */
    color: #333; /* Dark gray color for the title */
    margin-bottom: 20px; /* Space below the title */
    text-align: center; /* Center align the title */
}

.section-content p {
    font-size: 1.1em; /* Font size for the paragraph */
    color: #666; /* Medium gray color for the paragraph */
    line-height: 1.6; /* Line height for better readability */
    text-align: justify; /* Center align the paragraph */
}
.table-container {
    padding: 40px 15px; /* Padding around the table */
    background-color: #fff; /* White background for the table container */
    max-width: 1870px; /* Max width for the container */
    margin: 0 auto; /* Center align the container */
}

.styled-table {
    width: 100%; /* Full width */
    border-collapse: collapse; /* Collapse borders */
    margin: 25px 0; /* Margin around the table */
    font-size: 1em; /* Font size */
    text-align: left; /* Left align text */
}

.styled-table th, .styled-table td {
    padding: 12px 15px; /* Padding inside table cells */
    border: 1px solid #ddd; /* Border for table cells */
}

.styled-table th {
    background-color: #f4f4f4; /* Light gray background for table header */
    color: #333; /* Dark gray color for table header text */
    text-align: center; /* Center align table header text */
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9; /* Alternate row color */
}

.styled-table tbody tr:hover {
    background-color: #f1f1f1; /* Hover effect */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-content {
        padding: 40px 0; /* Adjust padding for smaller screens */
    }

    .section-content h3 {
        font-size: 1.5em; /* Adjust title size for smaller screens */
    }

    .section-content p {
        font-size: 1em; /* Adjust paragraph size for smaller screens */
    }

    .styled-table th, .styled-table td {
        font-size: 0.9em; /* Adjust font size for table on smaller screens */
    }
}

 /* header */
 /* Custom Navbar */
.navbar-custom {
    background-color: #f8f9fa; /* Light background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Centering company name */
.navbar-brand {
    display: flex;
    align-items: center;
    width: 100px;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    flex: 1;
}

/* Custom styling for navbar links */
.navbar-nav .nav-link {
    color: #333; /* Dark color for links */
    font-size: 1.1rem; /* Slightly larger font size */
    margin-right: 20px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #007bff; /* Change to primary color on hover */
}

/* "Get in Touch" button styling */
.btn-get-in-touch:hover {
    background-color:  RGB(116, 125, 102) ; /* Darker shade on hover */
    color: black;
    border-radius: 50px;
}

/* Navbar text (email and Facebook) styling */
.navbar-text {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
}

.navbar-text a {
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-text a:hover {
    color: #007bff; /* Primary color on hover */
}

/* footer */
.footer {
    padding: 20px 0;
    background-color: RGB(116, 125, 102); /* Dark background */
    color: #ffffff; /* White text */
}

.footer h5 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer .social-icons a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #007bff; /* Blue color on hover */
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 40px;
    height: 40px;
    background-color: RGB(116, 125, 102);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    justify-content: center;
    align-items: center;
}

.back-to-top i {
    font-size: 18px;
}

.back-to-top:hover {
    background-color: RGB(116, 125, 102); /* Darker blue on hover */
}