.logo,
header h1 {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff
}

.about,
.slider-container {
    overflow: hidden;
    position: relative
}

*,
.service-item .btn,
.slider>li {
    box-sizing: border-box
}

.about,
.contact,
.hero,
.slider,
.slider-container {
    position: relative
}

footer,
header {
    padding: 20px 0
}

* {
    margin: 0;
    padding: 0
}

body {
    font-family: Poppins, sans-serif;
    color: #333;
    background-color: #f7f7f7
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px
}

header {
    background-color: #1e1e1e;
    position: sticky;
    top: 0;
    z-index: 1000
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

header h1 {
    font-size: 2.5rem
}

header h1 a {
    color: inherit;
    text-decoration: none
}

.logo {
    font-size: 1.2rem
}

.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: 0 0;
    border: none;
    padding: 10px
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 100%;
    transition: .3s
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px;
    transition: color .3s
}

footer ul.social-media li a:hover,
nav ul li a:hover {
    color: #f60
}

.hero {
    background: url('assets/hero-image.webp') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px
}

.contact::before,
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1
}

.contact .btn,
.hero .btn,
.service-item .btn {
    background-color: #f60;
    transition: background-color .3s;
    font-weight: 700;
    color: #fff;
    text-decoration: none
}

.contact>*,
.hero>* {
    position: relative;
    z-index: 2
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px
}

.services h2,
.services p {
    margin-bottom: 40px;
    text-align: center
}

.contact .btn,
.hero .btn {
    padding: 15px 30px;
    border-radius: 5px
}

.contact .btn:hover,
.hero .btn:hover,
.service-item .btn:hover {
    background-color: #e65a00
}

.faq,
.services {
    padding: 60px 0;
    background-color: #fff
}

.services h2 {
    font-size: 2rem
}

.services p {
    font-size: 1.2rem;
    color: #555
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px
}

.service-item {
    background-color: #fff;
    border: 1px solid #eaeaea;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    transition: box-shadow .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.faq-item:hover,
.service-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1)
}

.service-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px
}

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

.service-item p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #666
}

.about h2,
.about p {
    margin-bottom: 20px;
    text-align: center
}

.service-item .btn {
    padding: 10px;
    border-radius: 5px;
    display: block;
    margin-top: auto;
    width: 100%
}

.fade-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out
}

.fade-element.visible {
    opacity: 1;
    transform: translateY(0)
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

.about {
    padding: 60px 0 0;
    background-color: #f7f7f7
}

.slider,
footer ul.social-media {
    list-style: none;
    display: flex;
    padding: 0
}

.about h2 {
    font-size: 2rem
}

.about p {
    font-size: 1.2rem;
    color: #555
}

.slider-container {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.slider {
    transition: transform .5s ease-in-out;
    margin: 0;
    width: 100%
}

.slider>li {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

.slider>li>img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333
}

.faq-item h3,
footer p {
    margin-bottom: 10px
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: box-shadow .3s
}

.faq-item h3 {
    font-size: 1.5rem;
    color: #333
}

.faq-item p {
    font-size: 1.2rem;
    color: #555
}

.contact p a,
.faq-item a {
    color: #f60;
    text-decoration: none;
    font-weight: 700;
    transition: color .3s
}

.contact p a:hover,
.faq-item a:hover {
    color: #e65a00
}

.contact {
    padding: 60px 0;
    background: url('assets/hero-image.webp') center center/cover no-repeat;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #fff
}

.contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px
}

.contact p {
    font-size: 1.2rem
}

.contact p.email {
    font-size: 1rem;
    color: #333;
    margin-top: 10px
}

footer {
    background-color: #343a40;
    color: #fff;
    text-align: center
}

footer ul.social-media {
    justify-content: center;
    gap: 30px;
    margin-top: 20px
}

footer ul.social-media li a {
    color: #fff;
    text-decoration: none;
    transition: color .3s;
    font-size: 2rem
}

footer ul.social-media li a img {
    width: 70px;
    height: 70px
}

@media (max-width:768px) {
    header {
        position: sticky
    }

    nav ul {
        flex-direction: column;
        background-color: #1e1e1e;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height .3s;
        z-index: 999
    }

    nav ul.open {
        height: auto
    }

    nav ul li {
        margin: 10px 0
    }

    nav ul li a {
        font-size: 1.5rem;
        color: #fff;
        text-decoration: none
    }

    nav ul li a:hover {
        color: #f60
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        background: 0 0;
        border: none;
        z-index: 1100
    }
}