.page-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('../../hero-section/DSC01711.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 135, 53, 0.8), rgba(14, 154, 163, 0.7));
    backdrop-filter: blur(2px);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.header-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.header-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.section-padding {
    padding: 100px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.col-lg-6 {
    flex: 1;
    min-width: 350px;
}

.about-img-group {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-group:hover .main-img {
    transform: scale(1.02);
}

.floating-exp {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.floating-exp .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.floating-exp .year-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Text Content */
.section-heading {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.mission-vision {
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

.mv-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 135, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mv-item h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.mv-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Premium Stats Bar */
.premium-stats {
    background: var(--gray-900);
    padding: 60px 0;
    margin-top: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    /* Utilizing the accent color gold */
    line-height: 1;
    margin-bottom: 10px;
}

.stat-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Philosophy Section */
.bg-light {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 135, 53, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.section-center-head {
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--primary);
}

.heading-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-head-left {
    text-align: left;
    max-width: 800px;
    margin-bottom: 3rem;
}

.section-head-left .heading-separator {
    margin: 20px 0 0;
}

.section-head-left .section-label {
    padding-left: 0;
}

.section-head-left .section-label::before {
    display: none;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.philosophy-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.philosophy-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.philosophy-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(45, 135, 53, 0.1);
    border: 1px solid rgba(45, 135, 53, 0.1);
}

.philosophy-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(0) scale(1.1);
    box-shadow: 0 15px 30px rgba(45, 135, 53, 0.3);
}

.philosophy-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.philosophy-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

/* Technology Section */
.tech-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../../interior/DSC01683.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.8) 100%);
    z-index: 1;
}

.tech-section .container {
    position: relative;
    z-index: 2;
}

.text-white-op {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.tech-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tech-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--white);
    border-left: 3px solid var(--accent);
    transition: background 0.3s ease;
}

.tech-list li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tech-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Tech Image Grid */
.tech-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-left: 24px;
}

.tech-img-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    aspect-ratio: 4/3;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tech-img-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.tech-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.88);
    transition: filter 0.35s ease;
}

.tech-img-item:hover img {
    filter: brightness(1);
}

@media (max-width: 992px) {
    .tech-img-grid {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .tech-img-grid {
        grid-template-columns: 1fr;
    }
}

/* Journey Section */
.journey-section {
    position: relative;
    background: linear-gradient(to bottom, var(--white), #f9fbfd);
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 50px;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    min-width: 220px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.step-item:hover .step-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(45, 135, 53, 0.4);
}

.step-item:hover .step-number::before {
    opacity: 0;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(45, 135, 53, 0.2), rgba(45, 135, 53, 0.5), rgba(45, 135, 53, 0.2));
    margin-top: 35px;
    display: none;
}

@media (min-width: 992px) {
    .step-connector {
        display: block;
    }

    .journey-steps {
        flex-wrap: nowrap;
    }
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    padding: 0 15px;
}

/* Team Group Photo Section */
.team-photo-section {
    padding: 80px 0;
    background: var(--white);
}

.team-photo-wrap {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: center;
}

.team-photo-label {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.team-photo-label .section-heading {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.team-photo-label p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin: 0;
}

.team-photo-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0,0,0,0.12);
    position: relative;
}

.team-photo-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.25);
    z-index: 1;
    pointer-events: none;
}

.team-group-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 900px) {
    .team-photo-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .team-photo-label {
        text-align: center;
        align-items: center;
    }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #adb5bd;
    transition: all 0.5s ease;
}

.team-card:hover .img-placeholder {
    background: #dee2e6;
    color: #6c757d;
}

.team-info {
    padding: 25px 20px;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.team-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
   Mission & Vision Split Cards
   ========================================= */
.mv-split {
    display: flex;
    min-height: 420px;
}

.mv-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-size: 40px 40px;
    background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
}

.mv-mission {
    background: linear-gradient(135deg, #1e6b25, #2d8735);
    color: white;
}

.mv-vision {
    background: linear-gradient(135deg, #0a6b73, #0E9AA3);
    color: white;
}

.mv-card-inner {
    position: relative;
    z-index: 1;
    max-width: 500px;
    text-align: center;
}

.mv-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.mv-card:hover .mv-card-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.mv-card-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
}

.mv-card-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 20px;
}

.mv-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .mv-split {
        flex-direction: column;
        min-height: auto;
    }

    .mv-card {
        padding: 60px 30px;
    }
}

/* =========================================
   Doctor Biography Section
   ========================================= */
.bio-section {
    background: var(--white);
}

.bio-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Sidebar */
.bio-sidebar {
    position: sticky;
    top: 100px;
}

.bio-photo-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    margin-bottom: 28px;
}

.bio-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bio-photo-wrap:hover .bio-photo {
    transform: scale(1.03);
}

.bio-credentials-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 28px;
    border-left: 4px solid var(--primary);
}

.bio-credentials-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cred-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.cred-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--gray-700);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: 1.5;
}

.cred-list li:last-child {
    border-bottom: none;
}

.cred-list li i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.cred-awards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.award-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, rgba(45,135,53,0.08), rgba(14,154,163,0.06));
    border-radius: 10px;
    padding: 14px;
}

.award-badge i {
    color: #b8962e;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.award-badge strong {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 3px;
}

.award-badge span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* Biography Body */
.bio-body {
    color: var(--gray-700);
    line-height: 1.85;
}

.bio-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.bio-body p {
    margin-bottom: 20px;
    font-size: 0.97rem;
}

.bio-quote {
    background: linear-gradient(135deg, rgba(45,135,53,0.06), rgba(14,154,163,0.04));
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 32px 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray-800);
    line-height: 1.6;
}

.bio-sub-heading {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gray-900);
    margin: 36px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(45,135,53,0.15);
}

/* Biography Timeline */
.bio-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
    border-left: 2px solid rgba(45,135,53,0.2);
    padding-left: 0;
}

.bio-tl-item {
    display: flex;
    gap: 0;
    position: relative;
    padding-left: 28px;
    padding-bottom: 22px;
}

.bio-tl-dot {
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
    flex-shrink: 0;
}

.bio-tl-content {
    flex: 1;
}

.bio-tl-place {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bio-tl-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .bio-layout {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .bio-layout {
        grid-template-columns: 1fr;
    }

    .bio-sidebar {
        position: static;
    }

    .bio-photo {
        height: 320px;
    }
}