/* Hero Section Styles */
.hero {
    background: #115d98;
    margin-bottom: 4em;
    position: relative;
    color: #fff;
    padding-top: 4em;
    overflow: hidden;
    z-index: 0;
}

.hero .curve {
    position: relative;
    display: block;
    height: 100px;
    bottom: -100px;
    overflow: hidden;
    z-index: 2;
}

.hero h1,
.hero h3 {
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Animated Geometric Background */
.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.geometric-bg span {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 18s linear infinite;
}

.geometric-bg span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.geometric-bg span:nth-child(2) {
    top: 60%;
    left: 25%;
    animation-duration: 22s;
    border-radius: 50%;
}

.geometric-bg span:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-duration: 18s;
    transform: rotate(45deg);
}

.geometric-bg span:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-duration: 26s;
}

.geometric-bg span:nth-child(5) {
    top: 10%;
    left: 80%;
    animation-duration: 24s;
    border-radius: 50%;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-60px) rotate(180deg);
        opacity: 0.3;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.6;
    }
}

/* Team Member Styles */
.team-member {
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #f8f9fa;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Divider Styles */
.divider {
    margin: 3rem 0;
    position: relative;
}

.divider-gradient {
    height: 3px;
    background: linear-gradient(to right, transparent, #0d6efd, transparent);
}

/* Slider Three Styles */
.slider-three {
    background-color: #f8f9fa;
    /* light background */
    padding-top: 112px;
    padding-bottom: 130px;
}

.slider-three .section-title .title {
    font-size: 44px;
    line-height: 55px;
    font-weight: 600;
    color: #000;
}

@media (max-width: 767px) {
    .slider-three .section-title .title {
        font-size: 28px;
        line-height: 32px;
    }
}

.slider-three .section-title .text {
    color: #6c757d;
    margin-top: 24px;
}

.slider-three .slider-items-wrapper {
    position: relative;
}

.slider-three .slider-items-wrapper .tns-nav {
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slider-three .slider-items-wrapper .tns-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: #0d6efd;
    opacity: 0.5;
    border: 0;
    margin: 0 5px;
    transition: all 0.4s ease-out 0s;
}

.slider-three .slider-items-wrapper .tns-nav button.tns-nav-active {
    width: 20px;
    opacity: 1;
    border-radius: 5px;
}

.slider-three .single-items-one {
    margin-top: 40px;
}

.slider-three .single-items-one img {
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}