
 /* Fix it step-by-step
 1. Force full width + remove overflow

Add this at the top of your CSS: */
html, body {
    width: 100%;
    overflow-x: hidden;
}



/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url('../pics/backg1.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;

    /* Zoom out effect */
    /*background-size: 35.1% auto; /* width 150%, height automatic to keep aspect ratio */
    
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgb(55, 84, 255);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}
                            /*
 ******previous code***** 
.logo {
    height: 75px;
    margin-left: -10px;
}
                            */

.logo {
    height: 69px;
    margin-left: 0;
}

/* Motor animation */
#motor-animation {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

/* Navigation */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

nav a:hover {
    color: #f39c12;
}

nav .category {
    font-size: 16px; /* smaller than header links */
}

/* FR/EN button */
.lang-btn {
    background: #f39c12;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(0,0,0,0.7);
    position: relative;
    bottom: 0;
    width: 100%;
    flex-wrap: wrap;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 5px;
}

footer a:hover {
    color: #f39c12;
}

/* Content */
main {
    padding: 60px 20px;
    min-height: 80vh;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo-container {
        margin-bottom: 100px;
    }
}

.content-box {
    background-color: rgba(0, 80, 0, 0.85); /* dark green + transparency */
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
}

.content-box-about {
    background-color: rgba(216, 125, 20, 0.722); /* dark green + transparency */
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
}

.content-box-contact {
    background-color: rgba(51, 85, 235, 0.722); /* dark green + transparency */
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
}


.services-list {
    list-style: none; /* remove default bullets */
    padding-left: 0;
}

.services-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.services-list li::before {
    content: "🔧"; /* icon */
    position: absolute;
    left: 0;
}

.services-list li:nth-child(1)::before { content: "🌬️"; }
.services-list li:nth-child(2)::before { content: "❄️"; }
.services-list li:nth-child(3)::before { content: "🖥️"; }
.services-list li:nth-child(4)::before { content: "🔋"; }
.services-list li:nth-child(5)::before { content: "🛑"; }
.services-list li:nth-child(6)::before { content: "⚡"; }
.services-list li:nth-child(7)::before { content: "🛢️"; }
.services-list li:nth-child(8)::before { content: "🛞"; }
.services-list li:nth-child(9)::before { content: "🚗"; }
.services-list li:nth-child(10)::before { content: "⚙️"; }









