
html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;
    background: black;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}


header {
    background: #1b1b1b;
    height: 120px;
    width: 100%;
}

.site-navbar {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.logo img {
    width: 200px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 35px;
    font-size: 18px;
}

.nav-links a:hover {
    color: #d6ff1e;
}

.quote a {
    background: #d6ff1e;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}


.hero {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 20px;
    box-sizing: border-box;
}

.hero-left {
    width: 48%;
}

.hero-right {
    width: 48%;
    text-align: right;
}

.hero-right img {
    width: 500px;
    max-width: 100%;
    border-radius: 20px;
    transition: 0.4s;
}

.hero-right img:hover {
    transform: scale(1.03);
}

.badge {
    display: inline-block;
    background: #222;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 72px;
    line-height: 80px;
    color: white;
}

.hero h1 span {
    color: #d6ff1e;
}

.hero p {
    color: #bdbdbd;
    font-size: 22px;
    line-height: 40px;
    margin-top: 30px;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    background: black;
}


.header {
    text-align: center;
    padding: 40px;
    border-bottom: 3px solid #d6ff1e;
}

.header h1 {
    color: #d6ff1e;
    font-size: 42px;
}

.header h3 {
    color: white;
}


.section {
    padding: 40px;
}

.section h2 {
    color: #d6ff1e;
    border-bottom: 2px solid #d6ff1e;
    padding-bottom: 10px;
}

.section h3 {
    color: #d6ff1e;
}

.section p {
    line-height: 1.8;
}

.section ul {
    line-height: 2;
}


.menu {
    text-align: center;
    margin: 30px;
}

.menu span {
    padding: 15px 30px;
    background: #d6ff1e;
    margin: 10px;
    display: inline-block;
    font-weight: bold;
    border-radius: 8px;
}

.banner {
    background: #8d8f94;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.banner a {
    text-decoration: none;
    color: white;
    background: #d6ff1e;
    padding: 15px 25px;
    display: inline-block;
    margin: 10px;
    font-weight: bold;
}


.services {
    width: 100%;
    border-spacing: 20px;
}

.services td {
    background: #434549;
    padding: 20px;
    vertical-align: top;
    border-left: 5px solid #d6ff1e;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.spares-images {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

.spares-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.spares-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.spares-image img:hover {
    transform: scale(1.03);
}




.service-box {
    background: #434549;
    padding: 25px;
    border-left: 5px solid #d6ff1e;
    border-radius: 0 12px 12px 0;
    box-sizing: border-box;
}

.service-box p {
    margin-top: 0;
    line-height: 1.8;
}

.service-box ul {
    margin-bottom: 0;
    line-height: 2;
}


.service-images {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.service-image img:hover {
    transform: scale(1.03);
}

.stats {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.stats td {
    background: #434549;
    padding: 25px;
}

.stats h2 {
    border: none;
    color: #d6ff1e;
    font-size: 36px;
}

.contact-box {
    background: #434549;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    height: 100%;
    box-sizing: border-box;
}

.contact-box h3 {
    color: #d6ff1e;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-box a {
    display: block;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.contact-link:hover {
    color: #d6ff1e;
    text-decoration: underline;
}

.contact-text {
    color: white;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.contact-item {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.button {
    display: inline-block;
    margin-top: 30px;
    background: #d6ff1e;
    color: white;
    padding: 16px 30px;
    text-decoration: none;
    border-radius: 8px;
    margin-right: 15px;
}

.button2 {
    display: inline-block;
    margin-top: 30px;
    border: 2px solid #d6ff1e;
    color: white;
    padding: 16px 30px;
    text-decoration: none;
    border-radius: 8px;
}

.footer {
    background: #434549;
    width: 100%;
    margin-top: 70px;
    padding: 70px 0 30px 0;
    color: white;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.footer-row {
    align-items: flex-start;
}

.footer-company {
    padding-right: 50px;
}

.footer-company img {
    width: 230px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.footer-company p {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0;
}

.footer-links h2,
.footer-contact h2 {
    color: #d6ff1e;
    font-size: 22px;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #d6ff1e;
}


.footer-links {
    padding-left: 20px;
}

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d6ff1e;
}

.footer-contact {
    padding-left: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-item > span {
    width: 25px;
    flex-shrink: 0;
    font-size: 18px;
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-item a,
.footer-contact-item div span {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
}

.footer-contact-item a:hover {
    color: #d6ff1e;
}

.footer hr {
    width: 100%;
    margin: 50px 0 25px 0;
    border: none;
    border-top: 1px solid #2b2b2b;
}

.copyright {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9a9a9a;
    font-size: 14px;
}

@media (max-width: 767px) {

    .spares-images {
    flex-direction: column;
    gap: 15px;
}

.spares-image img {
    height: 220px;
}


.service-images {
    flex-direction: column;
    gap: 15px;
}

.service-image img {
    height: 220px;
}

    header {
        height: auto;
    }

    .site-navbar {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 20px;
    }

    .logo {
        width: auto;
        height: auto;
        padding: 0;
        margin: auto;
    }

    .logo img {
        width: 200px;
        height: auto;
    }

    .nav-links {
        margin-top: 20px;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        display: inline-block;
        margin: 5px 8px;
        font-size: 16px;
    }


    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        text-align: center;
        margin-top: 40px;
    }

    .hero-right img {
        width: 100%;
        max-width: 500px;
    }

    .hero h1 {
        font-size: 45px;
        line-height: 1.1;
    }

    .hero p {
        font-size: 18px;
        line-height: 1.6;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }


    .section {
        padding: 25px 20px;
    }


    .header {
        padding: 25px 20px;
    }

    .header h1 {
        font-size: 32px;
    }


    .button,
    .button2 {
        display: block;
        text-align: center;
        margin-right: 0;
        margin-bottom: 10px;
    }



    .services {
        width: 100%;
        border-spacing: 0;
    }

    .services td {
        padding: 20px;
    }



    .contact-box {
        padding: 25px 20px;
    }



    .footer {
        padding: 50px 0 25px 0;
    }

    .footer-container {
        width: 100%;
        padding: 0 20px;
    }

    .footer-company {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .footer-company img {
        width: 200px;
        margin: 0 auto 20px auto;
    }

    .footer-company p {
        text-align: center;
    }

    .footer-links {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .footer-contact {
        padding-left: 0;
    }

    .footer-links h2,
    .footer-contact h2 {
        text-align: center;
    }

    .footer-links a {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        line-height: 1.5;
    }

}



