/* Custom styles for Who We Are page */

/* CTA Fullwidth Section */
.cta-fullwidth {
    position: relative;
    overflow: hidden;
    background-color: #213360;
    z-index: 1;
}

.cta-fullwidth .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-fullwidth .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.cta-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(33, 51, 96, 0.95) 0%, rgba(33, 205, 192, 0.85) 100%);
    z-index: -1;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.cta-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.cta__img {
    max-width: 80px;
    filter: brightness(0) invert(1);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cta-content {
    padding: 0 20px;
}

.cta__title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.cta__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #21cdc0;
}

.cta__desc {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

.cta-action {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.btn__hover3 {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn__hover3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn__hover3:hover::before {
    transform: translateX(0);
}

/* Full width section styling */
.full-width-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.full-width-section .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.full-width-section .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay.bg-overlay-secondary {
    position: relative;
    overflow: hidden;
}

.bg-overlay.bg-overlay-secondary:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #213360;
    opacity: 0.85;
    z-index: -1;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about__Text {
    padding: 40px 30px;
}

.full-width-section .about__Text {
  background-color: #21cdc0 !important;
  border-radius: 10px;
    backdrop-filter: blur(5px);
    margin: 20px 0;
}

.about__Text .heading__title {
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.full-width-section .about__Text p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
}

.video-banner {
    position: relative;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.video-banner img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.video-banner:hover img {
    transform: scale(1.03);
}

/* Enhanced feature items */
.feature-item {
    transition: all 0.4s ease;
    padding: 40px 30px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-item:hover {
    box-shadow: 0px 10px 30px 0px rgba(9, 29, 62, 0.15);
}

.feature-item .feature__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

.feature-item .feature__icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #213360;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0px 5px 20px 0px rgba(40, 40, 40, 0.12);
}

.feature-item .feature__icon i {
    font-size: 36px;
    color: #ffffff;
}

.feature-item .feature__overlay-icon {
    position: absolute;
    opacity: 0;
    transition: all 0.4s ease;
    color: #ffffff;
}




.feature-item:hover .feature__overlay-icon {
    opacity: 1;
}

.feature-item .feature__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-item .feature__desc {
    margin-bottom: 20px;
}

.feature-item .btn__link {
    position: relative;
    display: inline-block;
    margin-top: auto;
    align-self: flex-end;
    transition: all 0.3s ease;
}

.feature-item .btn__link .icon-outlined {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    background-color: #213360;
    transition: all 0.3s ease;
}

.feature-item .btn__link:hover .icon-outlined {
    background-color: #21cdc0;
}

/* Enhanced service items */
.service-item {
    transition: all 0.4s ease;
    padding: 40px 30px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background-color: #21cdc0;
    transition: transform 0.4s linear;
    transform: scaleX(0);
}

.service-item:hover {
    box-shadow: 0px 10px 30px 0px rgba(9, 29, 62, 0.15);
}

.service-item:hover:before {
    transform: scaleX(1);
}

.service-item .service__icon {
    position: relative;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background-color: #213360;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0px 5px 20px 0px rgba(40, 40, 40, 0.12);
}

.service-item .service__icon i {
    font-size: 42px;
    color: #ffffff;
}

.service-item .service__icon i:nth-of-type(2) {
    position: absolute;
    opacity: 0;
    transition: all 0.4s ease;
}


.service-item .service__content {
    flex-grow: 1;
    padding: 0 10px;
}

.service-item .service__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-item .service__desc {
    margin-bottom: 20px;
}



/* Page Our Network */



.clinic-card {
    border: 1px solid #e7ebef;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.clinic-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.clinic-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0e204d;
}

.clinic-card .contact-info {
    margin-bottom: 15px;
}

.clinic-card .contact-info i {
    color: #3b5d8f;
    margin-right: 8px;
    width: 16px;
}

.clinic-card .btn {
    margin-top: 15px;
}