* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
}

.navbar {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon {
    display: flex;
    align-items: center;
}

.contact-info {
    font-size: 0.9em;
    color: #ccc;
}

.logo-img {
    height: 100px;
    margin-right: 10px;
}

.logo1-img{
    height:50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 2em;
    color: white;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-left: 20px;
}

.menu li a {
    color: #fff;
    text-decoration: none;
}

.hero-section {
    background-image: url('truck.jpg'); /* Replace with actual path */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: right;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #1900ff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Highlight Box */
/* Container for the service highlights */
.service-highlights {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between each box */
    padding: 20px;
    margin-top: 30px;
}

/* Each individual box */
.highlight-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 150px; /* Adjust width as necessary */
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon inside the box */
.highlight-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

/* Title inside the box */
.highlight-box h3 {
    font-size: 1em;
    color: #333;
    font-weight: normal;
    margin: 10px 0 0;
}

/* Hover effect */
.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


/* Carrier Success Section */
.carrier-success-section {
    background-color: #f8f9fa; /* Light grey background color */
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.carrier-content {
    max-width: 700px;
    color: #333; /* Dark grey text color */
}

.carrier-content h4 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #444; /* Slightly darker grey for emphasis */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.carrier-content h2 {
    font-size: 40px;
    font-weight: bold;
    color: #1c1c1e; /* Darker color for the main heading */
    margin-bottom: 10px;
}

.carrier-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #555; /* Medium grey color for readability */
    margin-bottom: 15px;
}

/* Services-Section */
.services-section {
    padding: 50px 20px;
}

.services-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.service-content p{
    font-size: 20px;
}

.service-content h3{
    font-size: 2em;
}

.service-content li{
    font-size: 20px;
}

.service-content {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
}

.service-icon {
    width: 600px;
    margin-right: 20px;
}

.service-item {
    flex: 1;
    text-align: center;
}

.detail-container {
    background-color: #ffffff;
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
}

#privacy-policy {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

#privacy-policy h2 {
    font-size: 60px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: left;
}

#privacy-policy h3 {
    font-size: 40px;
    margin-top: 20px;
    color: #444;
    text-align: left;
}

#privacy-policy p {
    margin-bottom: 0.2px;
    font-size: 20px;
    text-align: left;
}

#privacy-policy ul {
    /*margin-left: 10px;*/
    list-style-type: disc;
    text-align: left;
}

#privacy-policy ul li {
    margin-bottom: 5px;
    font-size: 20;
    text-align: left;
}

/* Inquiry Form Section */
.inquiry-form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.inquiry-form-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.inquiry-form-section label {
    display: block;
    margin: 10px 0 5px;
    font-size: 16px;
    color: #333;
}

.inquiry-form-section input, 
.inquiry-form-section textarea, 
.inquiry-form-section button {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.inquiry-form-section textarea {
    resize: vertical; /* Allows the user to resize the textarea vertically */
    height: 100px; /* Adjust the initial height */
    max-height: 200px;
}

.inquiry-form-section button {
    background-color: #ff6600;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}


/* Careers Section */
.careers-section {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.careers-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.careers-section p {
    font-size: 1em;
    margin-bottom: 30px;
}

.careers-section form input[type="file"] {
    padding: 5px;
    border: none;
}

.careers-section form button {
    background-color: #ff6600;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
}

.careers-section form button:hover {
    background-color: #ff5500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
    }

    .service-highlights {
        flex-direction: column;
        gap: 20px;
    }

    .service-content {
        flex-direction: column;
    }

    .contact-info {
        display: none;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

/* Footer Logo and Social Icons */
.footer-logo-section {
    text-align: center;
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 5px;
}

.social-icons img {
    width: 25px;
    height: 25px;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links ul {
    list-style-type: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

/* Back to Top */
.back-to-top {
    text-align: right;
}

.back-to-top a {
    color: #00cccc;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
}

.back-to-top a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .back-to-top {
        text-align: center;
        margin-top: 20px;
    }
}