        /* ===== 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(4, 99, 250, 0.25);
            transition: all 0.4s ease;
        }

        .profile-card:hover {
            border-style: solid;
            border-color: var(--bs-primary);
            box-shadow: 0 20px 60px rgba(4, 99, 250, 0.15);
        }

        .profile-card-header {
            background: linear-gradient(135deg, var(--bs-primary), #4d8cfd);
            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(4, 99, 250, 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(4, 99, 250, 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(4, 99, 250, 0.08);
            border: 2px dashed rgba(4, 99, 250, 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(4, 99, 250, 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(4, 99, 250, 0.12);
        }

        .qual-card .qual-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(4, 99, 250, 0.15), rgba(4, 99, 250, 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), #4d8cfd);
        }

        .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(4, 99, 250, 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), #4d8cfd, 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(4, 99, 250, 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), #4d8cfd);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            box-shadow: 0 8px 25px rgba(4, 99, 250, 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(4, 99, 250, 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(4, 99, 250, 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;
            }
        }