/* ========================================================= */
/*                      GENERAL STYLES                       */
/* ========================================================= */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* ========================================================= */
/*                      HEADER STYLES                        */
/* ========================================================= */

header {
    /*background: url('../images/mechanical-bg.jpg') no-repeat center center/cover;*/
    background-color: black;
    color: white;
    padding: 5px 0;
    text-align: center;
}

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img {
    max-height: 70px;
    width: auto;
}

/* ========================================================= */
/*                     MENU STYLES                           */
/* ========================================================= */

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Desktop Menu */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

/* ========================================================= */
/*                     HAMBURGER MENU                        */
/* ========================================================= */

/* Hamburger Icon (Hidden by Default) */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 10px;
    user-select: none;
}

/* Background & Hover Effect */
.menu ul {
    
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.menu ul li {
    display: inline-block;
    margin: 0 15px;
}

.menu ul li a {
   
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.menu ul li a:hover {
    background: white;
    color: #333;
    border-radius: 5px;
    padding: 10px 15px;
}


@media (max-width: 768px) {
    .hamburger {
        display: block; /* ✅ Show hamburger menu on mobile */
        position: absolute;
        right: 20px;
        top: 15px;
        font-size: 28px;
        cursor: pointer;
        color: white;
        padding: 10px;
        user-select: none;
        z-index: 1001;
    }

    .menu {
        top: -80px;
        right: 25px;
    }

    .nav-links {
        display: none; /* ✅ Hide menu initially on mobile */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #333;
        width: 200px;
        border-radius: 5px;
        padding: 10px 0;
        text-align: center;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex; /* ✅ Ensure menu shows when active */
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        color: white;
        font-size: 18px;
        display: block;
        padding: 10px;
    }

    .nav-links li a:hover {
        background: white;
        color: #333;
        border-radius: 5px;
    }
}
/* ========================================================= */
/*                      FOOTER STYLES                        */
/* ========================================================= */

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* ========================================================= */
/*                      MAIN CONTENT                         */
/* ========================================================= */

main {
    padding: 20px;
}

/* ========================================================= */
/*                      HERO SECTION                         */
/* ========================================================= */

.hero {
    text-align: center;
    padding: 60px 20px;
    color: rgb(111, 105, 105);
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background: #a90f06;
    color: #fffcfc;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

/* ========================================================= */
/*                      ABOUT SECTION                        */
/* ========================================================= */

.about {
    text-align: center;
    padding: 40px 20px;
    background: #f4f4f4;
}

.about h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    font-size: 18px;
    margin: 10px 0;
}

/* ========================================================= */
/*                      RESPONSIVE STYLES                    */
/* ========================================================= */

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .features-image {
        width: 100%;
        max-width: 90%;
    }

    .features-image img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    .features-content {
        width: 100%;
        max-width: 90%;
        padding: 20px;
    }

    .features-content h2 {
        font-size: 22px;
    }

    .features-content p {
        font-size: 14px;
    }

    .features-content ul {
        padding: 0;
    }

    .features-content ul li {
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .features-content ul li::before {
        content: "✔";
        color: #0056b3;
        font-size: 16px;
        margin-right: 8px;
    }
}
