/* =========================================================
   HOME PAGE — MODERN DESIGN SYSTEM
   ========================================================= */

:root {
    --home-primary: #8b0000;
    --home-primary-dark: #5f0000;
    --home-primary-light: #b91c1c;
    --home-accent: #d4a017;
    --home-dark: #111827;
    --home-dark-2: #1f2937;
    --home-text: #334155;
    --home-muted: #64748b;
    --home-border: rgba(15, 23, 42, .08);
    --home-bg: #f8fafc;
    --home-white: #ffffff;
    --home-shadow: 0 15px 45px rgba(15, 23, 42, .08);
    --home-shadow-hover: 0 28px 70px rgba(15, 23, 42, .14);
    --home-radius: 24px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--home-bg);
    color: var(--home-text);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

.text-justify {
    text-align: justify;
}


/* =========================================================
   GLOBAL SECTION TITLE
   ========================================================= */

.section-title {
    position: relative;
    display: inline-block;
    margin: 0;
    color: var(--home-dark);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
}

    .section-title span {
        background: linear-gradient( 135deg, var(--home-primary), var(--home-dark) );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


/* =========================================================
   BUTTON
   ========================================================= */

.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border: 0;
    border-radius: 50px;
    color: #fff !important;
    background: linear-gradient( 135deg, var(--home-primary), #1a1a1a );
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(139, 0, 0, .22);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .btn-gradient:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 38px rgba(139, 0, 0, .3);
    }


/* =========================================================
   HERO
   ========================================================= */

.hero-split {
    position: relative;
    min-height: 88vh;
    padding: 90px 0 !important;
    overflow: hidden;
    background: radial-gradient( circle at 85% 20%, rgba(255,255,255,.10), transparent 25% ), radial-gradient( circle at 10% 90%, rgba(139,0,0,.35), transparent 30% ), linear-gradient( 120deg, #450000 0%, #8b0000 45%, #111827 100% );
}

    .hero-split::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(0,0,0,.12), transparent );
        pointer-events: none;
    }

    .hero-split h5 {
        position: relative;
        font-size: clamp(2rem, 4vw, 3.4rem) !important;
        line-height: 1.15;
        letter-spacing: -.8px;
        text-shadow: 0 5px 20px rgba(0,0,0,.25);
    }

    .hero-split p {
        max-width: 650px;
        font-size: 1.05rem;
        line-height: 1.85;
        color: rgba(255,255,255,.88);
    }


/* =========================================================
   VIDEO
   ========================================================= */

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 24px !important;
    background: #000;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
    transition: transform .4s ease, box-shadow .4s ease;
}

    .video-container:hover {
        transform: translateY(-7px);
        box-shadow: 0 40px 90px rgba(0,0,0,.45);
    }

    .video-container iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( 180deg, rgba(0,0,0,.05), rgba(0,0,0,.25) );
}


/* =========================================================
   LEADERSHIP
   ========================================================= */

.leadership-messages {
    position: relative;
    padding: 100px 0 !important;
    background: linear-gradient( 180deg, #ffffff, #f8fafc );
}

.leadership-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
    transition: transform .4s ease, box-shadow .4s ease;
}

    .leadership-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--home-shadow-hover);
    }

.leader-image-wrapper {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient( circle, rgba(139,0,0,.10), transparent 60% );
}

.leader-image-bg {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--home-primary), #111827 );
    opacity: .95;
}

.leader-image {
    position: relative;
    z-index: 2;
    width: 275px;
    height: 275px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 20px 45px rgba(0,0,0,.18);
    transition: transform .4s ease;
}

.leadership-card:hover .leader-image {
    transform: scale(1.04);
}

.leader-role-badge {
    position: absolute;
    z-index: 3;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 22px;
    white-space: nowrap;
    color: var(--home-primary);
    background: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.leader-content {
    padding: 60px;
}

.leader-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--home-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.leader-title {
    margin: 0 0 15px;
    color: darkred;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
}

.title-line {
    width: 60px;
    height: 4px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: linear-gradient( 90deg, var(--home-primary), var(--home-accent) );
}

.quote-icon {
    margin-bottom: 10px;
    color: rgba(139,0,0,.16);
    font-size: 30px;
}

.leader-description {
    margin-bottom: 30px;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.9;
}

.leader-signature {
    padding-left: 16px;
    border-left: 3px solid var(--home-primary);
}

    .leader-signature h5 {
        margin: 0 0 4px;
        color: var(--home-dark);
        font-size: 17px;
        font-weight: 700;
    }

    .leader-signature span {
        color: #94a3b8;
        font-size: 13px;
    }


/* =========================================================
   DOCTORS
   ========================================================= */

/* =========================================================
   DOCTORS SECTION
========================================================= */

.doctors-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: radial-gradient( circle at 8% 15%, rgba(13, 148, 136, 0.10), transparent 30% ), radial-gradient( circle at 92% 85%, rgba(37, 99, 235, 0.10), transparent 30% ), linear-gradient( 135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100% );
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.doctors-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.5;
}

.doctors-bg-glow-1 {
    width: 300px;
    height: 300px;
    top: -130px;
    left: -120px;
    background: rgba(20, 184, 166, 0.18);
}

.doctors-bg-glow-2 {
    width: 350px;
    height: 350px;
    right: -150px;
    bottom: -170px;
    background: rgba(59, 130, 246, 0.16);
}


/* Decorative circles */

.doctors-bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(15, 118, 110, 0.08);
    pointer-events: none;
}

.doctors-bg-circle-1 {
    width: 220px;
    height: 220px;
    left: -100px;
    top: 40%;
}

.doctors-bg-circle-2 {
    width: 300px;
    height: 300px;
    right: -150px;
    top: 10%;
}


/* =========================================================
   CONTAINER
========================================================= */

.doctors-container {
    z-index: 2;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.doctors-header {
    max-width: 760px;
    margin: 0 auto 55px;
}


/* Badge */

.doctors-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    margin-bottom: 16px;
    border-radius: 50px;
    color: #0f766e;
    background: rgba(13, 148, 136, 0.09);
    border: 1px solid rgba(13, 148, 136, 0.10);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .doctors-badge i {
        font-size: 14px;
    }


/* Title */

.doctors-title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 800;
    letter-spacing: -1.8px;
    line-height: 1.15;
}

    .doctors-title span {
        background: linear-gradient( 135deg, #d00000, #111111 );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }


/* Subtitle */

.doctors-subtitle {
    max-width: 650px;
    margin: 18px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   MARQUEE WRAPPER
========================================================= */

.doctors-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 45px;
}


/* =========================================================
   MARQUEE TRACK
========================================================= */

.doctors-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: max-content;
    gap: 25px;
    /*
       The track contains two identical sets.

       Moving -50% means the second set
       takes the exact position of the first.
    */

    animation: doctorsMoveLeft 32s linear infinite;
    will-change: transform;
}


/* Pause when hovering */

.doctors-marquee-wrapper:hover .doctors-track {
    animation-play-state: paused;
}


/* =========================================================
   RIGHT → LEFT ANIMATION
========================================================= */

@keyframes doctorsMoveLeft {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12.5px));
    }
}


/* =========================================================
   DOCTOR ITEM
========================================================= */

.doctor-item {
    flex: 0 0 250px;
    width: 250px;
    display: flex;
}


/* =========================================================
   DOCTOR CARD
========================================================= */

.doctor-card {
    position: relative;
    width: 100%;
    min-height: 365px;
    padding: 30px 22px 25px;
    text-align: center;
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.78) );
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}


/* Top colored line */

.doctor-card-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient( 90deg, #0d9488, #2563eb, #d00000 );
    opacity: 0.9;
}


/* Hover */

.doctor-card:hover {
    transform: translateY(-12px);
    border-color: rgba(13, 148, 136, 0.20);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14), 0 5px 25px rgba(13, 148, 136, 0.08);
}


/* =========================================================
   DOCTOR PHOTO
========================================================= */

.doctor-photo-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 5px auto 25px;
}


/* Outer ring */

.doctor-photo-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient( #0d9488, #2563eb, #d00000, #0d9488 );
    opacity: 0.14;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.doctor-card:hover .doctor-photo-ring {
    transform: rotate(35deg) scale(1.05);
    opacity: 0.28;
}


/* Doctor image */

.doctor-photo {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    background: #e2e8f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-photo {
    transform: scale(1.04);
}


/* =========================================================
   AVAILABILITY
========================================================= */

.doctor-availability {
    position: absolute;
    z-index: 4;
    right: -10px;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 50px;
    background: #ffffff;
    color: #15803d;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
    white-space: nowrap;
}


/* Green dot */

.availability-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
    animation: availabilityPulse 2s infinite;
}


/* Pulse */

@keyframes availabilityPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}


/* =========================================================
   DOCTOR DETAILS
========================================================= */

.doctor-details {
    position: relative;
    z-index: 2;
}


/* Doctor Name */

.doctor-name {
    margin: 0 0 9px;
    color: #0f172a;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}


/* Specialization */

.doctor-specialization {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 22px;
    color: #0d9488;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

    .doctor-specialization i {
        flex-shrink: 0;
        font-size: 12px;
    }


/* Divider */

.doctor-line {
    width: 48px;
    height: 2px;
    margin: 18px auto;
    border-radius: 10px;
    background: linear-gradient( 90deg, #0d9488, #2563eb );
    opacity: 0.55;
}


/* Designation */

.doctor-designation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
}

    .doctor-designation i {
        color: #2563eb;
        font-size: 12px;
    }


/* =========================================================
   FADE EDGES
========================================================= */

.doctors-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 110px;
    z-index: 10;
    pointer-events: none;
}


/* Left */

.doctors-fade-left {
    left: 0;
    background: linear-gradient( to right, #f8fafc 0%, rgba(248, 250, 252, 0.85) 30%, rgba(248, 250, 252, 0) 100% );
}


/* Right */

.doctors-fade-right {
    right: 0;
    background: linear-gradient( to left, #f1f5f9 0%, rgba(241, 245, 249, 0.85) 30%, rgba(241, 245, 249, 0) 100% );
}


/* =========================================================
   EMPTY STATE
========================================================= */

.doctors-empty {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(15px);
}


.doctors-empty-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.08);
    color: #0d9488;
    font-size: 28px;
}


.doctors-empty h4 {
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 700;
}


.doctors-empty p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .doctors-section {
        padding: 80px 0;
    }

    .doctors-header {
        margin-bottom: 45px;
    }

    .doctor-item {
        flex-basis: 230px;
        width: 230px;
    }

    .doctor-card {
        min-height: 350px;
        padding: 28px 20px 24px;
    }

    .doctor-photo-wrapper,
    .doctor-photo {
        width: 140px;
        height: 140px;
    }

    .doctors-track {
        gap: 20px;
        animation-duration: 28s;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .doctors-section {
        padding: 65px 0;
    }

    .doctors-header {
        padding: 0 15px;
        margin-bottom: 35px;
    }

    .doctors-badge {
        padding: 7px 14px;
        font-size: 10px;
    }

    .doctors-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .doctors-subtitle {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.7;
    }


    /* Mobile cards */

    .doctor-item {
        flex-basis: 190px;
        width: 190px;
    }

    .doctor-card {
        min-height: 315px;
        padding: 23px 13px 20px;
        border-radius: 22px;
    }


    /* Mobile image */

    .doctor-photo-wrapper,
    .doctor-photo {
        width: 110px;
        height: 110px;
    }

    .doctor-photo-wrapper {
        margin-bottom: 22px;
    }


    /* Mobile availability */

    .doctor-availability {
        right: -8px;
        padding: 5px 8px;
        font-size: 8px;
    }

    .availability-dot {
        width: 6px;
        height: 6px;
    }


    /* Mobile text */

    .doctor-name {
        font-size: 16px;
    }

    .doctor-specialization {
        font-size: 11px;
    }

    .doctor-designation {
        font-size: 9px;
    }

    .doctor-line {
        margin: 14px auto;
    }


    /* Faster mobile movement */

    .doctors-track {
        gap: 16px;
        animation-duration: 24s;
    }


    /* Smaller fade */

    .doctors-fade {
        width: 45px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .doctors-track {
        animation: none;
    }

    .doctor-card,
    .doctor-photo,
    .doctor-photo-ring {
        transition: none;
    }

    .availability-dot {
        animation: none;
    }
}



/* =========================================================
   GOALS
   ========================================================= */

.goals-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: radial-gradient( circle at 5% 20%, rgba(139,0,0,.07), transparent 30% ), radial-gradient( circle at 95% 80%, rgba(212,160,23,.07), transparent 30% ), linear-gradient( 135deg, #ffffff, #f8fafc );
}

.goals-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: .35;
}

.goals-glow-1 {
    width: 280px;
    height: 280px;
    top: -120px;
    left: -120px;
    background: rgba(139,0,0,.12);
}

.goals-glow-2 {
    width: 320px;
    height: 320px;
    right: -150px;
    bottom: -150px;
    background: rgba(212,160,23,.10);
}


/* =========================================================
   GOALS HEADER
   ========================================================= */

.goals-header {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.goals-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 17px;
    margin-bottom: 15px;
    color: var(--home-primary);
    background: rgba(139,0,0,.07);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.goals-title {
    margin: 0;
    color: var(--home-dark);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 800;
    letter-spacing: -1.8px;
}

    .goals-title span {
        background: linear-gradient( 135deg, var(--home-primary), #111827 );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.goals-subtitle {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   GOAL CARDS
   ========================================================= */

.goal-card {
    position: relative;
    height: 100%;
    min-height: 355px;
    padding: 32px;
    overflow: hidden;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 26px;
    box-shadow: 0 15px 45px rgba(15,23,42,.07);
    backdrop-filter: blur(15px);
    transition: transform .4s ease, box-shadow .4s ease;
}

    .goal-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 65px rgba(15,23,42,.13);
    }

    .goal-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, var(--home-primary), var(--home-accent) );
    }


/* =========================================================
   GOAL TOP
   ========================================================= */

.goal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.goal-number {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.goal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 19px;
    font-size: 26px;
    transition: transform .4s ease;
}

.goal-card:hover .goal-icon {
    transform: rotate(-5deg) scale(1.08);
}


/* =========================================================
   GOAL ICON COLORS
   ========================================================= */

.vision-card .goal-icon {
    color: var(--home-primary);
    background: rgba(139,0,0,.08);
}

.mission-card .goal-icon {
    color: #374151;
    background: rgba(55,65,81,.08);
}

.values-card .goal-icon {
    color: #b7791f;
    background: rgba(212,160,23,.12);
}


/* =========================================================
   GOAL CONTENT
   ========================================================= */

.goal-label {
    display: block;
    margin-bottom: 7px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.goal-content h3 {
    margin: 0 0 14px;
    color: var(--home-dark);
    font-size: 25px;
    font-weight: 800;
}

.goal-content p {
    margin: 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   GOAL BOTTOM LINE
   ========================================================= */

.goal-line {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 25px;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient( 90deg, var(--home-primary), var(--home-accent) );
    opacity: .15;
    transition: opacity .4s ease;
}

.goal-card:hover .goal-line {
    opacity: .7;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.empty-icon {
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 45px;
}


/* =========================================================
   GENERAL CARD ANIMATION
   ========================================================= */

.fade-in {
    animation: fadeInUp .8s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   OLD MARQUEE ANIMATIONS
   ========================================================= */

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes staffMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   DIRECTOR / PRINCIPAL
   ========================================================= */

.DirectorAndPrincipal-img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 991px) {

    .hero-split {
        min-height: auto;
        padding: 80px 0 !important;
    }

    .leadership-messages,
    .doctor-section,
    .goals-section {
        padding: 75px 0 !important;
    }

    .leader-content {
        padding: 45px 35px;
    }

    .leader-image-wrapper {
        min-height: 400px;
    }

    .staff-marquee {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .doctor-card {
        width: 100%;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hero-split {
        text-align: center;
        padding: 65px 20px !important;
    }

        .hero-split p {
            margin-left: auto;
            margin-right: auto;
            font-size: .95rem;
        }

    .video-container {
        margin-top: 25px;
    }

    .leadership-messages {
        padding: 60px 15px !important;
    }

    .leader-image-wrapper {
        min-height: 330px;
    }

    .leader-image {
        width: 210px;
        height: 210px;
    }

    .leader-image-bg {
        width: 250px;
        height: 250px;
    }

    .leader-content {
        padding: 35px 25px;
    }

    .leader-description {
        font-size: 14px;
        text-align: left;
    }

    .doctor-section,
    .goals-section {
        padding: 65px 15px !important;
    }

    .staff-marquee {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .doctor-card {
        min-height: 325px;
        padding: 23px 12px;
        border-radius: 20px;
    }

    .doctor-image-wrapper,
    .doctor-image {
        width: 110px;
        height: 110px;
    }

    .doctor-name {
        font-size: 15px;
    }

    .doctor-specialization {
        font-size: 10px;
    }

    .doctor-meta {
        font-size: 9px;
    }

    .goal-card {
        min-height: 320px;
        padding: 25px;
        border-radius: 22px;
    }

    .goal-icon {
        width: 58px;
        height: 58px;
        font-size: 23px;
    }

    .goal-content h3 {
        font-size: 22px;
    }

    .goal-content p {
        font-size: 13px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-split h5 {
        font-size: 1.8rem !important;
    }

    .section-title,
    .goals-title {
        font-size: 32px;
    }

    .section-subtitle,
    .goals-subtitle {
        font-size: 13px;
    }

    .staff-marquee {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .doctor-card {
        min-height: 300px;
        padding: 20px 8px;
    }

    .doctor-image-wrapper,
    .doctor-image {
        width: 95px;
        height: 95px;
    }

    .doctor-status {
        right: -8px;
        padding: 5px 7px;
        font-size: 8px;
    }

    .doctor-divider {
        margin: 12px auto;
    }

    .goal-card {
        min-height: 300px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
