/* ======================================
   ABOUT US PAGE STYLES - GYANDEEP HOSPITAL
   ====================================== */

/* ===== PAGE HEADER / BREADCRUMB ===== */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27,58,122,0.92), rgba(42,172,226,0.75));
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header-content {
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-cyan);
}

.breadcrumb-item.active {
    color: var(--primary-cyan);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "→";
    color: rgba(255,255,255,0.6);
}


/* ===== ABOUT INTRODUCTION ===== */
.about-intro {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--primary-navy);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(27,58,122,0.35);
    border: 5px solid var(--white);
}

.badge-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.badge-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: var(--primary-cyan);
}

.badge-content p {
    font-size: 0.9rem;
    margin: 5px 0 0;
    color: rgba(255,255,255,0.85);
}

.about-content {
    padding-left: 30px;
}

.section-subtitle-badge {
    display: inline-block;
    background: rgba(42,172,226,0.12);
    color: var(--primary-cyan);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-navy), #1a3f8f);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    margin-top: 25px;
    position: relative;
    border-left: 4px solid var(--primary-cyan);
}

.highlight-box i {
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.highlight-box .highlight-text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    padding-left: 40px;
}


/* ===== MISSION & VISION ===== */
.mission-card, .vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.mission-card:hover, .vision-card:hover {
    border-color: var(--primary-navy);
    transform: translateY(-5px);
}

.mission-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), #1a4faa);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.vision-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyan), #1b8fc4);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-card p, .vision-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
}

.mission-points, .vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li, .vision-points li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.mission-points li:last-child,
.vision-points li:last-child {
    border-bottom: none;
}

.mission-points li i, .vision-points li i {
    color: var(--primary-cyan);
    font-size: 1.1rem;
}


/* ===== CORE VALUES ===== */
.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42,172,226,0.15);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-cyan);
    transform: rotateY(360deg);
}

.value-card h4 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}


/* ===== FEATURE CARDS (Why Choose Us) ===== */
.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-cyan);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    border-color: var(--primary-navy);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(27,58,122,0.1);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(27,58,122,0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-cyan), #1b8fc4);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-navy), #1a4faa);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}


/* ===== STATISTICS COUNTER ===== */
.stats-counter {
    background: linear-gradient(135deg, var(--primary-navy), #1a4faa);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\"><path fill=\"rgba(255,255,255,0.04)\" d=\"M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>') no-repeat bottom;
    opacity: 0.5;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-item .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

.stat-item .counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.stat-item .counter::after {
    content: '+';
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}


/* ===== TEAM CARDS ===== */
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(42,172,226,0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-cyan);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-info .designation {
    display: block;
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.team-info .experience {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}


/* ===== DEPARTMENTS OVERVIEW ===== */
.departments-overview {
    background: var(--light-bg);
}

.dept-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 22px 20px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-cyan);
    transition: all 0.3s ease;
    height: 100%;
}

.dept-card:hover {
    transform: translateY(-4px);
    border-left-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(27,58,122,0.1);
}

.dept-card i {
    font-size: 1.8rem;
    color: var(--primary-cyan);
    flex-shrink: 0;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.dept-card:hover i {
    color: var(--primary-gold);
}

.dept-card h6 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1rem;
}

.dept-card small {
    color: var(--text-light);
    font-size: 0.82rem;
    line-height: 1.6;
    display: block;
}


/* ===== CALL TO ACTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy), #1a4faa);
    color: var(--white);
}

.cta-wrapper {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
}

.cta-wrapper h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-wrapper p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0;
}

.btn-white-custom {
    background: var(--white);
    color: var(--primary-navy);
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-white-custom:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42,172,226,0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    border: 2px solid var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-2px);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }

    .badge-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 50px;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-item .counter {
        font-size: 2.5rem;
    }

    .cta-wrapper {
        padding: 30px 20px;
        text-align: center;
    }

    .cta-wrapper h2 {
        font-size: 1.5rem;
    }

    .btn-white-custom,
    .btn-outline-white {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .feature-number {
        font-size: 2rem;
    }

    .team-image {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .mission-card, .vision-card {
        padding: 30px 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }

    .dept-card {
        padding: 18px 15px;
    }

    .cta-wrapper h2 {
        font-size: 1.3rem;
    }
}


/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    display: inline-block;
}