﻿.about-bg {
    position: relative;
   /* background: url('/Images/GWGBackgrounds-04.png') no-repeat center center;*/
   background-position:center;
   background-repeat:no-repeat;
    background-size: cover;
    overflow: hidden;
}

    .about-bg .container {
        position: relative;
        z-index: 2;
    }
.tp-clip-anim .mask{
    border-radius:80px!important;
}

.imageservicess {
    width: 100%;
    object-fit: cover;
}
/*
@media only screen and (min-width:1100px) and (max-width:1399px) {
    .imageservicess {
        height: 550px !important;
    }
}*/

.image-title-overlay {
    position: absolute;
    top: 50%; /* change to top:20px if you want top */
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    z-index: 2;
    line-height: normal;
}

/* optional dark overlay for better readability */
.tp-breadcrumb-s2-bg::after{
    background:none!important;
}
/* Pro Showcase Container */
.team-showcase-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    position: relative;
    background-image: url('/Images/gwgBackgrounds-18.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}



.showcase-container {
    position: relative;
    z-index: 2;
}

/* --- LEFT SIDE: Roster Menu --- */
.roster-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.roster-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

    .roster-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(10px);
    }

    /* Active State for Roster Item */
    .roster-item.active {
        background: rgba(0, 188, 212, 0.1);
        border-color: #00bcd4;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

        .roster-item.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #71b6c6;
            box-shadow: 0 0 10px #71b6c6;
        }

.roster-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.roster-item.active .roster-img {
    border-color: #71b6c6;
}

.roster-info h4 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.roster-item.active .roster-info h4 {
    color: #71b6c6;
}

.roster-info span {
    color: #89a4b2;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- RIGHT SIDE: Biography Panel --- */
.bio-panel-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 15px 50px 50px 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.bio-panel {
    display: none; /* Hidden by default, toggled via JS */
}

/* The first panel should be visible initially */
#bio-jennifer {
    display: block;
}

.bio-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

    .bio-header h2 {
        color: white;
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .bio-header h5 {
        color: white;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 1rem;
    }

.bio-content p {
    color: white;
    line-height: 1.8;
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Smooth Fade In Animation */
.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media screen and (max-width: 1400px) {
    .roster-info h4 {
        font-size: 1rem !important;
    }
    .sa-about-content p{
        font-size:14px!important;
    }

}
    /* --- MOBILE RESPONSIVENESS --- */
    @media screen and (max-width: 991px) {
        .roster-menu {
            flex-direction: row;
            overflow-x: auto;
            padding-bottom: 15px;
            margin-bottom: 30px;
            scroll-snap-type: x mandatory;
        }

     
        .roster-item {
            flex: 0 0 85%;
            scroll-snap-align: center;
        }

            .roster-item:hover {
                transform: none; /* Disable horizontal slide on mobile */
            }

        .bio-panel-wrapper {
            padding: 30px 20px;
        }

        .sa-work-item {
            margin-bottom: 0!important;
        }
        .image-title-overlay{
            font-size:20px!important;
        }
    }

.tp-footer-9-top-wrap{
    margin-top:0!important;
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px); /* Gently floats up as it disappears */
    }
}

.sa-testimonial-ptb3 {
    position: relative;
    /*background: url('/Images/gwgBackgrounds-18.png') no-repeat center center;*/
    background-position:center;
    background-repeat:no-repeat;
    background-size: cover;
    overflow: hidden;
}
    .sa-testimonial-ptb3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(19, 40, 45, 0.6);
        z-index: 1;
    }

    /* 2. The Content/Description (sits above the overlay) */
    .sa-testimonial-ptb3 > * {
        position: relative;
        z-index: 2;
    }

.saitem33 h3 {
    color: white !important;
    font-size: 20px;
    margin-bottom: 20px;
}

.saitem33 h5 {
    color: white !important;
    font-size: 15px !important;
    margin-bottom: 30px;
}

.saitem33 p {
    color: white !important;
    font-size: 14px !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .saitem3 {
        padding: 20px 10px 20px 10px !important;
    }

    .saitem33 {
        margin-bottom: 0 !important;
    }
    .saitem33 p {
        font-size:12px!important;
    }
}



.saitem3 {
    padding: 30px 10px 30px 10px !important;
}

.sa-testimonial-item-trust img {
    height: 120px;
    object-fit: cover;
}



.sa-testimonial-slider-wrapper .sa-testimonial-slider-active .swiper-slide-active .saitem3 {
    background: rgba(255, 255, 255, 0.03) !important;
}

.sa-testimonial-slider-wrapper {
    padding-right: 10px !important;
    padding-left: 10px;
}

.sa-testimonial-item{
    border-radius:20px;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background-color: white; /* Adjust to match your theme */
    color: #01656b;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight:bold;
    transition: background-color 0.3s ease;
}

    .read-more-btn:hover {
        background-color: #01656b; /* Lighter shade for hover */
        color: #ffffff;
    }
.sa-testimonial-item-content{
    margin-bottom:0!important;
}

.sa-testimonial-slider-active .swiper-slide {
    height: auto;
}

.sa-testimonial-item.saitem3 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sa-testimonial-item-content.saitem33 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .sa-testimonial-item-content.saitem33 .read-more-btn {
        align-self: center; 
    }

@media only screen and (max-width: 500px) {
    h2{
        font-size:23px!important;
    }
}