﻿body {
    font-family: poppins, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black !important;
    width: calc(100vw - 1rem);
    color: white;
    width: 100vw;
    overflow-x: hidden;
}

.backgrounds {
    position: absolute;
    width: 100%;
    height: 300%;
     overflow: hidden; 
    z-index: -1;
}

.top-background {
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    /* adjust height of the background strip */
    z-index: -1;
    /* gradient background */
    background: url("/assets/Group\ 1000003904.png");
    background-repeat: repeat-x;
    /* repeat only along x-axis */
    background-size: 50% auto;
}

.services-projects-background {
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    /* adjust height of the background strip */
    z-index: -1;
    top: -75%;
    /* gradient background */
    background: url("/assets/Group\ 1000003904.png");
    background-repeat: repeat-x;
    /* repeat only along x-axis */
    background-size: 100% auto;
    opacity: 1;
}

.services-projects-background img {
    position: absolute;
    right: 0;
}


.why-choose-us-background {
    position: relative;
    top: 100%;
    left: 0;
    width: 100%;
    height: 122.5%;
    /* adjust height of the background strip */
    z-index: -1;
    /* gradient background */
    background: url("/assets/Group\ 1000003904.png");
    background-repeat: repeat-x;
    /* repeat only along x-axis */
    background-size: 100% auto;
    opacity: 1;
}

.why-choose-us-background .background {
    position: absolute;
    right: 0;
}

.why-choose-us-background .ellipse_1 {
    position: absolute;
    top: 75%;
    width: 96px;
    height: 96px;
    right: 2.5%;
    z-index: -1;
}

.why-choose-us-background .ellipse_2 {
    position: absolute;
    top: 45%;
    width: 75px;
    height: 75px;
    right: 15%;
    z-index: -1;
}


.main-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 5rem);
    /* Adjust height based on header height */
    text-align: center;
    padding: 0 2rem;
    margin: 2rem 0;
    overflow: hidden;
}

.main-content {
    max-width: 900px;
    position: relative;
}

    .main-content .img-top-center {
        position: absolute;
        top: 0%;
        right: 50%;
        width: 96px;
        /* Adjust size as needed */
        height: 96px;
        z-index: -1;
        /* Ensure it stays behind text */
        transform: translate(50%, -100%);
    }

.main-heading {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.main-description {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #ccc;
    position: relative;
}

    .main-description .img-bottom-left {
        position: absolute;
        top: 100%;
        left: 0;
        width: 130px;
        /* Adjust size as needed */
        height: 130px;
        z-index: -1;
        /* Ensure it stays behind text */
        transform: translateY(-50%);
    }

    .main-description .img-top-right {
        position: absolute;
        Top: 0%;
        right: 0%;
        width: 96px;
        /* Adjust size as needed */
        height: 96px;
        z-index: -1;
        /* Ensure it stays behind text */
        transform: translate(50%, -25%);
    }

.main-get-started .btn {
    background: linear-gradient(92.51deg, #088FA0 0.48%, #1A4547 100%);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.services-section {
    width: 100%;
    color: white;
    padding: 0 2rem;
}

.scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 900px;
    /* adjust */
    margin: 4rem auto;
}

.scroll-container {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
}

    .scroll-container::-webkit-scrollbar {
        display: none;
        /* Chrome */
    }

.scroll-btn {
    background: transparent;
    color: white;
    border: none;
    font-size: 1rem;
    padding: 5px 12px;
    cursor: pointer;
    z-index: 2;
    font-weight: bold;
}


.services-section .service-category {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    font-size: 1.25rem;
}

    .services-section .service-category li {
        cursor: pointer;
        padding: 10px 25px;
        border-radius: 5px;
        transition: background-color 0.3s;
        background-color: #18181c;
        font-size: 1rem;
        text-wrap-mode: nowrap;
    }

        .services-section .service-category li:hover {
            background: linear-gradient(92.51deg, #088FA0 0.48%, #1A4547 100%);
        }

.services-section .services-heading {
    color: rgba(4, 163, 183, 1);
}

.services-section .services-title .last-word {
    color: rgba(4, 163, 183, 1);
}

.services-section .services-details ul {
    list-style: none;
    padding: 0;
}

    .services-section .services-details ul li {
        margin-bottom: 10px;
        line-height: 1.5;
        position: relative;
        padding-left: 25px; /* space for the custom bullet */
    }

        .services-section .services-details ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 1rem; /* bullet size */
            height: 1rem;
            background: url('/assets/emojione-monotone_ballot-box-with-check.png') no-repeat center center;
            background-size: contain;
            transform: translateY(-50%);
        }

.services-section .services-details button {
    width: 100%;
    max-width: 200px;
    background: linear-gradient(92.51deg, #088FA0 0.48%, #1A4547 100%);
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 5px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0;
}

    .services-section .services-details button img {
        width: 20px;
        margin-left: 8px;
    }
