        /* ===== Premium Profile Card with Dotted Border ===== (kept 100% same) */
        .profile-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 2px dashed rgba(191, 148, 86, 0.25);
            transition: all 0.4s ease;
        }

        .profile-card:hover {
            border-style: solid;
            border-color: var(--bs-primary);
            box-shadow: 0 20px 60px rgba(191, 148, 86, 0.15);
        }

        .profile-card-header {
            background: linear-gradient(135deg, var(--bs-primary), #D6B489);
            padding: 2rem;
            text-align: center;
            color: #fff;
        }

        .profile-card-header h3 {
            font-family: "Playfair Display", serif;
            margin-bottom: 0.25rem;
        }

        .profile-card-body {
            padding: 2rem;
        }

        .profile-detail {
            display: flex;
            align-items: flex-start;
            padding: 0.75rem 0;
            border-bottom: 1px dashed rgba(191, 148, 86, 0.2);
        }

        .profile-detail:last-child {
            border-bottom: none;
        }

        .profile-detail i {
            color: var(--bs-primary);
            margin-right: 1rem;
            margin-top: 0.25rem;
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }

        .profile-detail .label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #999;
            margin-bottom: 0;
        }

        .profile-detail .value {
            font-weight: 500;
            color: var(--bs-dark);
            margin-bottom: 0;
        }

        /* ===== Timeline ===== */
        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            padding-bottom: 2rem;
            border-left: 2px dashed rgba(191, 148, 86, 0.3);
        }

        .timeline-item:last-child {
            border-left: 2px dashed transparent;
            padding-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--bs-primary);
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px var(--bs-primary);
        }

        .timeline-item h5 {
            font-family: "Playfair Display", serif;
            font-weight: 500;
            color: var(--bs-dark);
            margin-bottom: 0.25rem;
        }

        .timeline-item .text-primary {
            font-size: 0.85rem;
            font-weight: 600;
        }

        .timeline-item p {
            color: #666;
            font-size: 0.9rem;
        }

        /* ===== Credential Pill ===== */
        .credential-pill {
            display: inline-flex;
            align-items: center;
            background: rgba(191, 148, 86, 0.08);
            border: 2px dashed rgba(191, 148, 86, 0.25);
            border-radius: 50px;
            padding: 0.5rem 1.2rem;
            margin: 0.3rem;
            font-size: 0.85rem;
            color: var(--bs-dark);
            transition: all 0.3s ease;
        }

        .credential-pill:hover {
            background: var(--bs-primary);
            color: #fff;
            border-color: var(--bs-primary);
            border-style: solid;
        }

        .credential-pill i {
            color: var(--bs-primary);
            margin-right: 0.5rem;
        }

        .credential-pill:hover i {
            color: #fff;
        }

        /* ===== Qualification Detail Cards ===== */
        .qual-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.8rem;
            border: 2px dashed rgba(191, 148, 86, 0.2);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .qual-card:hover {
            border-color: var(--bs-primary);
            border-style: solid;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(191, 148, 86, 0.12);
        }

        .qual-card .qual-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(191, 148, 86, 0.15), rgba(191, 148, 86, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .qual-card:hover .qual-icon {
            background: linear-gradient(135deg, var(--bs-primary), #D6B489);
        }

        .qual-card .qual-icon i {
            color: var(--bs-primary);
            font-size: 1.2rem;
            transition: color 0.4s ease;
        }

        .qual-card:hover .qual-icon i {
            color: #fff;
        }

        .qual-card h6 {
            font-family: "Playfair Display", serif;
            color: var(--bs-dark);
            margin-bottom: 0.25rem;
        }

        .qual-card p {
            font-size: 0.82rem;
            color: #777;
            margin-bottom: 0;
            line-height: 1.5;
        }

        /* ===== Info Card Dotted ===== */
        .info-card-dotted {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            border: 2px dashed rgba(191, 148, 86, 0.25);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .info-card-dotted::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--bs-primary), #D6B489, var(--bs-primary));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .info-card-dotted:hover::after {
            transform: scaleX(1);
        }

        .info-card-dotted:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(191, 148, 86, 0.18);
            border-color: var(--bs-primary);
            border-style: solid;
        }

        .info-card-dotted .icon-box {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--bs-primary), #D6B489);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            box-shadow: 0 8px 25px rgba(191, 148, 86, 0.3);
            transition: transform 0.4s ease;
        }

        .info-card-dotted:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
        }

        .info-card-dotted .icon-box i {
            font-size: 1.5rem;
            color: #fff;
        }

        .info-card-dotted h5 {
            font-family: "Playfair Display", serif;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--bs-dark);
        }

        .info-card-dotted p {
            font-size: 0.88rem;
            color: #666;
            margin-bottom: 0;
            line-height: 1.7;
        }

        /* ===== About Image ===== */
        .about-img-responsive {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 12px;
        }

        /* ===== Gallery Images ===== */
        .gallery-img-card {
            border-radius: 14px;
            overflow: hidden;
            border: 2px dashed rgba(191, 148, 86, 0.2);
            transition: all 0.4s ease;
        }

        .gallery-img-card:hover {
            border-style: solid;
            border-color: var(--bs-primary);
            box-shadow: 0 15px 40px rgba(191, 148, 86, 0.15);
            transform: translateY(-5px);
        }

        .gallery-img-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }

        .gallery-img-card:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 575px) {
            .gallery-img-card img {
                height: 180px;
            }
        }
        /* ===== Page Hero Banner ===== */
        .page-hero {
            position: relative;
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('/legacy/img/retina-vitreous-care.webp');
            background-size: cover;
            background-position: center;
        }

        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(20, 18, 16, 0.75), rgba(20, 18, 16, 0.55));
        }

        .page-hero-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 3rem 1rem;
        }

        .page-hero-inner h1 {
            font-family: "Playfair Display", serif;
            color: #fff;
            font-size: clamp(2rem, 5vw, 3.4rem);
            margin-bottom: 0.75rem;
        }

        .page-hero-crumb {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .page-hero-crumb a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
        }

        .page-hero-crumb a:hover { color: var(--bs-primary); }
        .page-hero-crumb .current { color: var(--bs-primary); }

        /* ===== About contact / experience cards ===== */
        .about-contact-card,
        .about-exp-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 1.4rem;
            border-radius: 14px;
        }

        .about-contact-card {
            background: #fff;
            border: 2px dashed rgba(191, 148, 86, 0.25);
        }

        .about-exp-card {
            background: linear-gradient(135deg, var(--bs-primary), #D6B489);
            color: #fff;
        }

        .about-exp-card h5 { color: #fff; font-family: "Playfair Display", serif; }

        .about-exp-card .exp-tag {
            display: inline-block;
            font-size: 0.72rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 0.25rem 0.8rem;
        }

        .acc-icon {
            width: 54px;
            height: 54px;
            min-width: 54px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bs-primary), #D6B489);
            color: #fff;
            font-size: 1.15rem;
        }

        .acc-icon.light {
            background: rgba(255, 255, 255, 0.22);
        }

        .about-contact-card h5 {
            font-family: "Playfair Display", serif;
            color: var(--bs-dark);
        }

        /* ===== Quick profile (At a Glance) ===== */
        .glance-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.4rem;
            text-align: center;
            border: 2px dashed rgba(191, 148, 86, 0.22);
            transition: all 0.4s ease;
        }

        .glance-card:hover {
            border-style: solid;
            border-color: var(--bs-primary);
            transform: translateY(-6px);
            box-shadow: 0 18px 45px rgba(191, 148, 86, 0.14);
        }

        .glance-icon {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            margin: 0 auto 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bs-primary), #D6B489);
            color: #fff;
            font-size: 1.3rem;
            box-shadow: 0 8px 22px rgba(191, 148, 86, 0.28);
        }

        .glance-card h6 {
            font-family: "Playfair Display", serif;
            color: var(--bs-dark);
            margin-bottom: 0.5rem;
        }

        .glance-card p {
            font-size: 0.82rem;
            color: #777;
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* profile detail label/value stacking */
        .profile-detail .label { display: block; }
        .profile-detail .value { display: block; font-weight: 400; color: #555; font-size: 0.9rem; }

/* video gallery */
.reel-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 2px dashed rgba(191, 148, 86, 0.25);
    transition: all 0.4s ease;
    height: 545px;
}

.reel-card:hover {
    border-color: rgba(191, 148, 86, 0.9);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.reel-card iframe {
    position: absolute;
    top: -68px;
    left: 0;
    width: 100%;
    height: calc(100% + 150px);
    display: block;
    border: 0;
    background: #fff;
}

/* Crop the player chrome (header/footer of the source platform) at every
   screen size so only the video itself is visible. */
.reel-card:not(.review-card) iframe {
    top: -122px;
    transform: scale(1.75);
    transform-origin: top center;
}

@media (max-width: 575px) {
    .reel-card { height: 520px; }
    .reel-card iframe {
        top: -68px;
        height: calc(100% + 144px);
    }
    .reel-card:not(.review-card) iframe {
        top: -116px;
    }
}


