/********** New Team Styles **********/
:root {
    --primary: #371091; /* Primary color */
    --light: #FFF5F3;   /* Light background */
    --dark: #103741;    /* Dark text */
}
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 500;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}
.navigation-bar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navigation-bar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 5px;
    transition: .3s;
}

.navigation-bar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

/*** Team Section ***/
.team-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Rounded corners */
    transition: transform 0.3s ease; /* Smooth scaling */
}

.team-item img {
    width: 100%;
    height: 300px;
    object-fit: cover; /* Cover the area */
    transition: transform 0.3s ease; /* Smooth scaling */
}

.team-item:hover {
    transform: scale(1.05); /* Scale up on hover */
}

.team-item img:hover {
    transform: scale(1.1); /* Scale image on hover */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

/*** Header and Footer ***/
.footer {
    background-color: var(--dark);
    color: #fff;
}

.footer .btn-social {
    background-color: var(--primary);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.footer .btn-social:hover {
    background-color: var(--light);
}

/*** Responsive Styles ***/
@media (max-width: 768px) {
    .team-item img {
        height: 200px; /* Adjust height for smaller screens */
    }
}
