/* assets/css/styles.css */
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E0E0E0;
    color: #222;
    line-height: 1.6;
}

/* Header */
/* Header Styling */
.navbar {
    background: linear-gradient(90deg, #FF7E5F, #FEB47B);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #4A5568;
}

/* Logo Styling */
.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px; /* Space between navigation links */
    align-items: center;
}

/* Hamburger Menu for Mobile */
.mobile-menu {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: linear-gradient(90deg, #FF7E5F, #FEB47B);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 1rem;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        max-height: 300px;
    }

    .nav-links a {
        padding: 0.5rem 0;
        text-align: center;
        width: 100%;
    }
}

/* Hamburger Menu for Mobile */
.mobile-menu {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: linear-gradient(90deg, #FF7E5F, #FEB47B);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 1rem;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-links.active {
        display: flex;
        max-height: 300px;
    }
    .nav-links a {
        padding: 0.5rem 0;
        text-align: center;
        width: 100%;
    }
}

/* Hero Section */
.hero {
    background-image: url('https://img.freepik.com/premium-photo/orange-semi-truck-isolated-white-background-3d-rendering_14117-157410.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #fff;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.service-card {
    background: #F0F0F0;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #FF7E5F, #FEB47B);
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

.footer a {
    transition: color 0.3s ease;
    color: white;
}

.footer a:hover {
    color: white;
}