/* About Page Specific Styles */

.fs-body {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--text-dark);
}

.text-center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ═══════════════════════════════════════════ */
/* ANIMATION KEYFRAMES                        */
/* ═══════════════════════════════════════════ */
@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(2, 132, 199, 0); }
    100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6));
    height: 75vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 var(--section-px);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hospital_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    animation: heroZoom 10s ease-out forwards;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--bg));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 800;
    text-shadow: 0 20px 40px rgba(0,0,0,0.4);
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(90deg, #60efff, #00ff87, #60efff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 10px;
    animation: textShimmer 3s linear infinite;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    opacity: 0.9;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
    animation: revealText 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes revealText {
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Mission Vision Grid */
.mv-section {
    padding: 0 var(--section-px);
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(2, 132, 199, 0.12);
    border-color: var(--secondary-glow);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-glow);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--secondary);
    font-size: 2.5rem;
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    background: var(--secondary);
    color: white;
    transform: rotate(360deg) scale(1.1);
}

.mv-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Story Section */
.story-section {
    padding: 100px var(--section-px);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 30px;
}

.story-content p {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-image-wrap {
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.premium-badge-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.insurance-badge {
    background: var(--bg);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.insurance-badge i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.insurance-badge:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-glow);
}

.image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 25px 35px;
    border-radius: 24px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.3);
    z-index: 2;
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.image-badge span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.image-badge strong {
    font-size: 1.4rem;
    display: block;
}

/* Excellence Grid */
.excellence-section {
    padding: 100px var(--section-px);
    background: var(--white);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.excellence-card {
    padding: 45px;
    border-radius: 32px;
    background: var(--bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.excellence-card:hover {
    background: var(--white);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 50px 100px rgba(0, 168, 168, 0.12);
    border-color: var(--secondary);
}

.excellence-card i {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
    display: block;
}

.excellence-card h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.excellence-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Journey / Timeline */
.journey-section {
    padding: 100px var(--section-px);
    background: var(--bg-alt);
}

.timeline {
    position: relative;
    padding-left: 50px;
    border-left: 3px solid var(--secondary-glow);
    margin: 40px 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -63px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border: 5px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 10px var(--secondary-glow);
    transition: var(--transition);
}

.timeline-item:hover::before {
    background: var(--secondary);
    transform: scale(1.5);
    box-shadow: 0 0 20px var(--secondary);
}

.timeline-item h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.timeline-item:hover h4 {
    color: var(--secondary);
    transform: translateX(10px);
}

.timeline-item p {
    color: var(--text-light);
    max-width: 500px;
}

/* Why Choose Us Card */
.why-card {
    background: var(--dark-grad);
    padding: 60px;
    border-radius: 40px;
    color: white;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-list {
    list-style: none;
}

.why-item {
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
}

.why-item i {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.why-item h5 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.why-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Leadership Section */
.leadership-section {
    padding: 100px var(--section-px);
    background: var(--white);
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.leader-card {
    background: var(--white);
    padding: 50px;
    border-radius: 35px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.leader-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 60px 120px rgba(10, 42, 102, 0.12);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.9);
}

.leader-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    border: 5px solid var(--bg-alt);
    transition: var(--transition);
}

.leader-card:hover .leader-img {
    border-color: var(--secondary-glow);
    transform: scale(1.05);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h4 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.leader-card .designation {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.leader-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Stats Strip */
.stats-strip {
    background: var(--dark-grad);
    padding: 100px var(--section-px);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(2, 132, 199, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 168, 168, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--dark-grad);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: var(--secondary);
    border: 1px solid rgba(2, 132, 199, 0.3);
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--secondary);
    color: var(--white);
    border-color: var(--white);
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1;
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    font-size: 0.85rem;
    margin: 0;
}

/* Technology Section */
.tech-section {
    padding: 100px var(--section-px);
    background: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.tech-list {
    list-style: none;
    margin-top: 40px;
}

.tech-item {
    margin-bottom: 25px;
    padding: 30px;
    background: var(--bg);
    border-radius: 20px;
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateX(15px) scale(1.02);
    background: var(--white);
    box-shadow: 0 20px 50px rgba(0, 168, 168, 0.1);
    border-left-width: 8px;
}

.tech-item h5 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-item h5 i {
    color: var(--secondary);
}

.tech-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .story-section, .tech-grid {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-section, .tech-grid, .leader-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .story-section, .journey-section, .leadership-section, .tech-section {
        padding: 60px var(--section-px);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .journey-section .grid-2 {
        grid-template-columns: 1fr;
    }
    .about-hero {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .mission-vision-grid, .excellence-grid {
        grid-template-columns: 1fr;
    }
    .stat-item h2 {
        font-size: 2.8rem;
    }
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    .mv-section {
        margin-top: -60px;
    }
    .story-image-wrap {
        margin-bottom: 40px;
    }
    .image-badge {
        right: 10px;
        bottom: -20px;
        padding: 15px 25px;
    }
    .image-badge strong {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 50vh;
        min-height: 400px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .why-card {
        padding: 40px 30px;
    }
    .why-item h5 {
        font-size: 1.1rem;
    }
    .stat-item h2 {
        font-size: 2.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .premium-badge-section {
        justify-content: center;
    }
    .insurance-badge {
        width: 100%;
        justify-content: center;
    }
    .leader-card {
        padding: 30px 20px;
    }
    .timeline {
        padding-left: 30px;
    }
    .timeline-item::before {
        left: -43px;
    }
}

/* Final Polish - Decorative Blobs */
.about-hero::after {
    background: linear-gradient(to top, var(--bg), transparent);
}

section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
}

.journey-section::before { top: 10%; right: -100px; }
.excellence-section::before { bottom: 10%; left: -100px; background: radial-gradient(circle, rgba(15, 23, 42, 0.05) 0%, transparent 70%); }
