/* Global Styles */
/* * {
        outline: 1px solid rgba(255, 0, 0, 0.5);
    } */

.home {
    background-color: #06261a;
}

/* Hero Section */

.hero-section h1 {
    font-size: 48px;
    font-weight: semibold;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 300;
}

/* Client Section */
.client {
    padding-top: 38px;
    padding-bottom: 70px;
}

.client-logo {
    max-width: 150px;
    height: 64px;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.client-logo:hover {
    filter: grayscale(0%);
}

/* Main Service Section */
.main-service {
    position: relative;
}

.main-service .title-main-service {
    color: #1f2a37;
    position: relative;
}

.image-service {
    width: 100%;
    height: auto;
}

.main-service .card {
    border: 0;
    width: 100%;
    padding: 16px;
}

.main-service .img-icon {
    height: 50px;
    width: 50px;
}

.my-service {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 80%,
        #06261a 80%,
        #06261a 100%
    );
}

/* Reason Section */
#reason .title {
    font-size: 22px;
}
#reason .description {
    font-size: 16px;
}

/* Service Area Section */
#service-area .menu-list {
    display: flex;
    justify-content: space-between;
    margin: 10px auto;
    padding: 10px 0;
    color: white;
    gap: 20px;
}
#service-area .menu-column {
    list-style: none;
    padding: 0;
    margin-right: 10px;
    width: 100%;
}
#service-area .menu-column li {
    padding: 8px 0;
    position: relative;
    font-size: 16px;
    font-weight: 300;
}
#service-area .menu-column li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.3) 5px,
        transparent 5px,
        transparent 10px
    );
}

#service-area .sub-title {
    border-bottom: 2px dashed #1b4a2c;
    font-weight: 300;
    font-size: 14px;
    padding-bottom: 10px;
}

/* Testimonial Section */
.testimonial-card {
    background-color: #1f3b31;
    color: white;
    border-radius: 15px;
    padding: 20px 15px;
    position: relative;
    height: 263px;
}

.user-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-name {
    font-size: 14px;
    font-weight: 400;
}

.star-rating {
    color: #ffd700;
    font-size: 18px;
}

.testimonial-text {
    font-size: 12px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 20px;
}

.quote-marks {
    position: absolute;
    right: 15px;
    top: -10px;
    font-size: 40px;
    color: white;
    font-family: "Arial", sans-serif;
    transform: rotate(180deg);
}
.testimonial-swiper {
    position: relative;
    padding: 20px 0;
}
.navigation-rounded {
    width: 52px;
    height: 52px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navigation-rounded i {
    margin-top: 12px;
    font-size: 28px;
    color: white;
}

.swiper-button-prev {
    position: static !important;
    display: inline-block;
    margin-right: 15px;
}

.swiper-button-next {
    position: static !important;
    display: inline-block;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.num-rounded {
    background-color: #1b4a2c;
    color: white;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Fullscreen Container */
.fullscreen-container {
    padding: 0px 16px;
}

/* Mobile Version */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section .title-background {
        font-size: 14px;
    }

    .hero-section h1 {
        font-size: 34px;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0;
    }

    /* Main Service Section */
    .main-service .img-icon {
        margin-right: 5px;
    }
}

/* Desktop Version */
@media (min-width: 769px) {
    .hero-content .title-background {
        font-size: 18px;
    }
    .fullscreen-container {
        margin: 0;
        padding: 0;
        width: 100vw;
        height: auto;
        position: relative;
        top: 0;
        left: 0;
    }

    .fullscreen-container .row {
        margin-left: 0;
        margin-right: 0;
    }

    .fullscreen-container .col-12.col-md-6 {
        padding-left: 0;
        max-width: 50vw;
    }

    .image-service {
        width: 100%;
        height: auto;
        display: block;
    }

    .main-service .img-icon {
        margin-right: 20px;
    }
    .image-layout {
        margin-top: -100px;
    }
}

.swiper-container {
    width: 100%;
    overflow: hidden;
}
.swiper-wrapper {
    transition-timing-function: linear !important;
}
