/* Custom CSS */
.hero-slider-active {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-section-10__banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

/* Slider Navigation Arrows */
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.hero-slider-prev {
    left: 50px;
}

.hero-slider-next {
    right: 50px;
}

@media (max-width: 768px) {
    .hero-slider-prev {
        left: 20px;
    }

    .hero-slider-next {
        right: 20px;
    }
}

/* All Projects Button */
.all-projects-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.all-projects-btn .text {
    position: relative;
}

.all-projects-btn .count {
    font-size: 14px;
    opacity: 0.7;
}

.all-projects-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.all-projects-btn:hover {
    color: #000;
}

.all-projects-btn:hover i {
    transform: translateX(5px);
}

/* Slider 7 Navigation Arrows */
.slider-7__wrapper {
    position: relative;
}

.slider-7-prev,
.slider-7-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.slider-7-prev:hover,
.slider-7-next:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.slider-7-prev {
    left: 30px;
}

.slider-7-next {
    right: 30px;
}

.slider-7-prev.swiper-button-disabled,
.slider-7-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .slider-7-prev {
        left: 10px;
        width: 40px;
        height: 40px;
    }

    .slider-7-next {
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

.rr-underline {
    height: fit-content !important;
}

/* Team Caption */
.team__box .caption {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
    line-height: 1.6;
}

/* Team Social Icons */
.team__box .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.team__box .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
}

.team__box .social-icons a:hover {
    background-color: #025949;
    color: #fff;
    transform: translateY(-3px);
}

.team__box .social-icons i {
    font-size: 16px;
}

.hero-section-10__title {
    font-size: 100px;
}
