body {
    margin: 0;
    background: #000;
    font-family: "Noto Serif Georgian", serif;
    color: #FFFF;
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 0;
}

.container {
    max-width: 100%;
    padding-left: 6%;
    padding-right: 6%;
}

a {
    color: #FFFF;
}

i {
    cursor: pointer;
}

section {
    height: 100dvh;
}

.herosection {
    background-image: url(Img/Lumetric.jpeg);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay-top {
    height: 250px;
    z-index: 1;
    align-content: center;
}

.dark-overlay {
    background-color: rgb(100 100 100 / 60%);
    z-index: 0;
}

.overlay-top .container {
    z-index: 2;
    position: relative;
}

h4 {
    font-weight: 400;
    font-size: 22px;
    margin: 0;
}

.social-icons i {
    font-size: 18px;
}

h1 {
    font-size: 52px;
}

p {
    font-size: 16px;
    margin-bottom: 0;
}

.container.mt-auto {
    margin-bottom: 50%;
}

.inner-content {
    padding-left: 6%;
    padding-right: 6%;
}

.inner-content {
    height: 200px;
    align-content: center;
}

.section-header {
    height: 200px;
    align-content: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.service-item {
    background: linear-gradient(to right, #1a1a1a, #888);
    padding: 2% 6%;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 2px solid #000;
    transition: background 0.3s ease;
}

.service-item:hover {
    background: linear-gradient(to right, #333, #aaa);
    cursor: pointer;
}

.contact .section-content .inner-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact .section-content {
    margin-top: 10%;
}


.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: transparent;
    color: rgb(100 100 100 / 60%);
    font-size: 48px;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top-btn.show {
    opacity: 1;
    pointer-events: auto;
}


.scroll-to-top-btn:hover {
    color: rgb(100 100 100 / 60%);
    transform: translateY(-3px);
}

@media (min-width: 576px) {

    .container.mt-auto {
        margin-bottom: 40%;
    }

    .service-item {
        padding: 1% 6%;
    }
}

@media (min-width: 768px) {

    .container.mt-auto {
        margin-bottom: 30%;
    }
}

@media (min-width: 992px) {

    .container.mt-auto {
        margin-bottom: 24%;
    }

    p {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {

    .container.mt-auto {
        margin-bottom: 18%;
    }

    .services-list {
        margin-top: 0;
    }
}

@media (min-width: 1400px) {

    h4 {
        font-size: 40px;
    }

    .social-icons i {
        font-size: 32px;
    }

    h1 {
        font-size: 82px;
    }

    p {
        font-size: 28px;
    }

    .container.mt-auto {
        margin-bottom: 11%;
    }
}