* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling for body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

/* Navbar container */
.navbar {
    background-color: #333;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo styling */
.navbar .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

/* Navigation links */
.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #00c9a7;
}

/* Mobile styling */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    /* Hide menu by default on mobile */
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px 0;
        border-top: 1px solid #444;
    }

    /* Show the mobile menu when active */
    .navbar ul.active {
        display: flex;
    }

    /* Mobile toggle button */
    .menu-toggle {
        display: block;
    }

    /* Adjust menu items for mobile */
    .navbar ul li {
        margin: 10px 0;
        text-align: center;
    }
}



/* Hero Section */
/* Hero Section */
#hero {
    background-image: url('images/office-recycling-banner.jpg'); /* Update this path to your image file's location */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #030303fa;
    padding: 100px 50px;
    text-align: center;
}

#hero .hero-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

#hero .hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

#hero .btn {
    background-color: #ffcd39;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

#hero .btn:hover {
    background-color: #e6b835;
}
/* Services Section */
#services {
    padding: 50px 20px;
    text-align: center;
}

#services h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.services-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #555;
}

.footer {
    background-color: #f9ffff;
    color: #000000;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-links,
.footer-contact,


.footer h3 {
    margin: 10px 0;
    font-size: 20px;
    text-transform: uppercase;
}

.footer p {
    margin: 5px 0;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: #00bfff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00ffff; /* Light cyan on hover */
}

.newsletter {
    display: flex;
    margin-top: 10px;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter button {
    padding: 10px;
    background-color: #00bfff;
    border: none;
    border-radius: 0 5px 5px 0;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #00ffff; /* Light cyan on hover */
}

.footer-social {
    text-align: center; /* Center align the social icons */
    margin: 20px 0; /* Add some margin above and below */
}

.footer-social h3 {
    margin-bottom: 10px; /* Space between title and icons */
}

.social-icon {
    display: inline-block; /* Make the links inline-block */
    width: 40px; /* Set a fixed width */
    height: 40px; /* Set a fixed height */
    line-height: 40px; /* Center text vertically */
    border-radius: 50%; /* Make the icon circular */
    text-align: center; /* Center text horizontally */
    color: white; /* Icon color */
    background-color: #007bff; /* Default background color (blue) */
    margin: 0 10px; /* Space between icons */
    text-decoration: none; /* Remove underline from links */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
}

.social-icon:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

/* Specific styles for each icon */
.social-icon:nth-child(1) {
    background-color: #3b5998; /* Facebook color */
}

.social-icon:nth-child(2) {
    background-color: #1da1f2; /* Twitter color */
}

.social-icon:nth-child(3) {
    background-color: #e1306c; /* Instagram color */
}

.social-icon:nth-child(4) {
    background-color: #0077b5; /* LinkedIn color */
}


.footer-contact .newsletter {
    display: flex;
    margin-top: 10px;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}
/* General Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Heading Styles */
h2 {
    font-size: 2em;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Product List Grid Layout */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Product Item Card Style */
.product-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-icon {
    width: 100px;
    height: auto;
    margin: 0 auto 15px;
    border-radius: 5px;
}

/* Product Title Link Style */
.product-item a {
    font-size: 1.2em;
    font-weight: bold;
    color: #007BFF;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.product-item a:hover {
    color: #0056b3;
}

/* Rate and Description Text */
.product-item p {
    font-size: 1em;
    color: #666;
    margin: 10px 0;
}

/* Call Button Style */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #ffd000;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #218838;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h2 {
        font-size: 1.5em;
    }

    .product-icon {
        width: 80px;
    }

    .product-item a {
        font-size: 1em;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}


.services {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.content {
    display: flex;
    align-items: center;
}

.service-image {
    width: 300px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Space between image and text */
    border-radius: 5px; /* Rounded corners for the image */
}

p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}



.faq {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: auto;
}

h2 {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s;
}

.faq-item:hover {
    background-color: #f0f8ff; /* Light blue on hover */
}

.question {
    cursor: pointer;
    color: #007bff;
    font-size: 18px;
    padding: 15px;
    background-color: #e7f1ff; /* Light blue background */
    transition: background-color 0.3s;
}

.question:hover {
    background-color: #d4e6ff; /* Darker blue on hover */
}

.answer {
    display: none; /* Hidden by default */
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    padding: 10px 15px;
    background-color: #fafafa; /* Light grey background */
    border-top: 1px solid #ddd;
}

#customers {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin: auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow-x: auto; /* Enable horizontal scrolling for small screens */
}
th, td {
    padding: 12px;
    text-align: center;
    border: 1px solid #dee2e6;
}
th {
    background-color: #007bff;
    color: white;
}
td {
    background-color: #f8f9fa;
}
tr:hover {
    background-color: #e2e6ea;
}
@media (max-width: 600px) {
    #customers {
        display: block; /* Make the table a block element */
        overflow-x: auto; /* Allow horizontal scrolling */
        white-space: nowrap; /* Prevent table cells from wrapping */
    }
    th, td {
        display: inline-block; /* Stack table cells */
        width: auto; /* Allow cells to adjust width */
    }
}