@import url("https://fonts.cdnfonts.com/css/ica-rubrik-black");
@import url("https://fonts.cdnfonts.com/css/poppins");

.banner {
    width: 100%;
    height: auto;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.banner .slider {
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    z-index: 2;
}

.banner .slider .item {
    margin: 0;
    width: 100%;
    height: auto;
    position: relative;
}

.banner .slider .item .face {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.banner .slider .item .front {
    transform: none;
}

.banner .slider .item .front img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.banner .slider .item .back {
    background: linear-gradient(to bottom, #dbdbdb2d, #cecece5d, #cfcfcf47);
    transform: rotateY(180deg) translateZ(2.5px);
}
.banner .slider .item .left {
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #dbdbdb2d, #cecece5d, #cfcfcf47);
    transform: rotateY(-90deg) translateZ(0px) translateX(-2.5px);
}
.banner .slider .item .right {
    width: 5px;
    height: 100%;
    background: #777;
    transform: rotateY(90deg) translateZ(100%) translateX(-2.5px);
}
.banner .slider .item .top {
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #dbdbdb2d, #cecece5d, #cfcfcf47);
    transform: rotateX(270deg) translateZ(125px);
}
.banner .slider .item .bottom {
    width: 100%;
    height: 5px;
    background: #444;
    transform: rotateX(-90deg) translateZ(125px);
}

.banner .slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#intro-text {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 20px 30px;
    min-height: 300px;
    display: flex;
    /* align-items: center;
  justify-content: center;
  text-align: center; */
    transition: opacity 0.3s ease;
    color: #333;
}

@media screen and (max-width: 1023px) {
    .banner {
        width: 100%;
        height: auto;
    }
    .banner .slider {
        width: 100%;
        height: auto;
    }
    #intro-text {
        min-height: 250px;
        font-size: 1.1rem;
        padding: 15px 20px;
    }
}

@media screen and (max-width: 767px) {
    .row.align-items-center {
        flex-direction: column;
    }
    #intro-text {
        min-height: auto;
        margin-bottom: 20px;
        font-size: 1rem;
        padding: 10px 15px;
    }
    .banner {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .banner .slider {
        width: 100%;
        height: auto;
    }
    .service-item {
        padding: 10px;
    }
    .service-icon {
        margin-bottom: 10px;
    }
    .service-content h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .service-button .btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .banner .slider {
        width: 100%;
        height: auto;
    }
    #intro-text {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    .service-content h4 {
        font-size: 1rem;
    }
    .service-content p {
        font-size: 0.85rem;
    }
    .service-button .btn {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}
#carousel {
    cursor: grab;
}
.slide-box-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), -4px 0 8px rgba(0, 0, 0, 0.2),
        0 -4px 8px rgba(0, 0, 0, 0.2);
}
