/* Phase 5 — unified reviews & alumni carousel (CONT-03) */
/* Extracted from course-page-shell.css — same visual rules */

/* --- STUDENT REVIEWS SECTION - PREMIUM REDESIGN V2 --- */

.reviews-section {
            background: linear-gradient(135deg, #0a0a0f 0%, #12121a 50%, #0d1117 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

.reviews-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 20% 0%, color-mix(in srgb, var(--primary-red) 12%, transparent) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--primary-red) 3%, transparent) 0%, transparent 70%);
            pointer-events: none;
        }

/* Animated floating particles */

.reviews-section::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                radial-gradient(2px 2px at 100px 100px, rgba(255,255,255,0.1), transparent),
                radial-gradient(2px 2px at 400px 200px, rgba(255,255,255,0.08), transparent),
                radial-gradient(1px 1px at 200px 400px, color-mix(in srgb, var(--primary-red) 15%, transparent), transparent),
                radial-gradient(2px 2px at 600px 300px, rgba(255,255,255,0.05), transparent),
                radial-gradient(1px 1px at 800px 150px, color-mix(in srgb, var(--primary-red) 10%, transparent), transparent);
            animation: floatParticles 30s linear infinite;
            pointer-events: none;
        }

@keyframes floatParticles {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-20px) translateX(10px); }
        }

.reviews-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            position: relative;
            z-index: 1;
        }

.reviews-section .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

.reviews-section .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, color-mix(in srgb, var(--primary-red) 15%, transparent) 0%, color-mix(in srgb, var(--primary-red) 5%, transparent) 100%);
            border: 1px solid color-mix(in srgb, var(--primary-red) 25%, transparent);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #ff6b6b;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
        }

.reviews-section .section-badge i {
            font-size: 0.85rem;
            animation: pulse 2s ease-in-out infinite;
        }

@keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

.reviews-section .section-title {
            color: #ffffff;
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #d0d0d0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

.reviews-section .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.15rem;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
        }

/* Trust Badges Row */

.reviews-trust-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

.trust-badge-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 14px 24px;
            border-radius: 60px;
            transition: all 0.4s ease;
        }

.trust-badge-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: color-mix(in srgb, var(--primary-red) 30%, transparent);
            transform: translateY(-3px);
        }

.trust-badge-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

.trust-badge-icon.google {
            background: linear-gradient(135deg, #4285f4, #34a853);
            color: white;
        }

.trust-badge-icon.students {
            background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
            color: white;
        }

.trust-badge-icon.rating {
            background: linear-gradient(135deg, #ffc107, #ff9800);
            color: white;
        }

.trust-badge-content {
            text-align: left;
        }

.trust-badge-value {
            display: block;
            color: #ffffff;
            font-size: 1.4rem;
            font-weight: 800;
            line-height: 1.2;
        }

.trust-badge-label {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

/* Featured Review - Hero Style */

.featured-review {
            background: linear-gradient(145deg, color-mix(in srgb, var(--primary-red) 10%, transparent) 0%, rgba(20, 20, 30, 0.9) 100%);
            border: 1px solid color-mix(in srgb, var(--primary-red) 20%, transparent);
            border-radius: 30px;
            padding: 50px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }

.featured-review::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-red), #ff6b6b, var(--primary-red), transparent);
        }

.featured-review::after {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 40px;
            right: 50px;
            font-size: 5rem;
            color: color-mix(in srgb, var(--primary-red) 10%, transparent);
        }

.featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
            color: white;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
            box-shadow: 0 4px 20px color-mix(in srgb, var(--primary-red) 40%, transparent);
        }

.featured-badge i {
            font-size: 0.75rem;
        }

.featured-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 50px;
            align-items: center;
        }

.featured-text-area h3 {
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

.featured-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

.featured-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.8rem;
            box-shadow: 0 10px 40px color-mix(in srgb, var(--primary-red) 40%, transparent);
            border: 3px solid rgba(255, 255, 255, 0.1);
        }

.featured-author-info h4 {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

.featured-author-info p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

.featured-rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

.featured-rating i {
            color: #ffc107;
            font-size: 1rem;
        }

.featured-video-area {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
            aspect-ratio: 16/10;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

.video-placeholder {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

.video-play-btn {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px color-mix(in srgb, var(--primary-red) 50%, transparent);
        }

.video-play-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 50px color-mix(in srgb, var(--primary-red) 60%, transparent);
        }

.video-play-btn i {
            color: white;
            font-size: 1.8rem;
            margin-left: 5px;
        }

.video-placeholder span {
            font-size: 0.85rem;
            opacity: 0.7;
        }

/* Reviews Grid Layout */

.reviews-grid-wrapper {
            position: relative;
        }

.reviews-carousel-wrapper {
            position: relative;
            overflow: hidden;
            padding: 20px 0 24px;
            width: 100%;
        }

.reviews-carousel {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 25px;
            width: calc(100% * var(--total-slides, 1));
        }

/* Review Card - Premium Design */

.review-card {
            background: linear-gradient(165deg, rgba(30, 30, 45, 0.8) 0%, rgba(20, 20, 30, 0.9) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 35px 30px 30px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            flex: 0 0 calc(33.333% - 17px);
            min-width: calc(33.333% - 17px);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

.review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 50%, var(--primary-red) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

.review-card::after {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            bottom: -15px;
            right: 20px;
            font-size: 6rem;
            color: color-mix(in srgb, var(--primary-red) 5%, transparent);
            transition: all 0.4s ease;
            line-height: 1;
        }

.review-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: color-mix(in srgb, var(--primary-red) 25%, transparent);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px color-mix(in srgb, var(--primary-red) 15%, transparent),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

.review-card:hover::before {
            opacity: 1;
        }

.review-card:hover::after {
            color: color-mix(in srgb, var(--primary-red) 10%, transparent);
            transform: scale(1.05) rotate(-5deg);
        }

/* Review Header */

.review-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

.review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
            box-shadow: 0 8px 25px color-mix(in srgb, var(--primary-red) 35%, transparent);
            transition: all 0.4s ease;
            flex-shrink: 0;
            position: relative;
        }

.review-avatar::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 18px;
            background: linear-gradient(135deg, color-mix(in srgb, var(--primary-red) 50%, transparent), rgba(255, 107, 107, 0.3));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

.review-card:hover .review-avatar {
            transform: scale(1.08) rotate(3deg);
        }

.review-card:hover .review-avatar::after {
            opacity: 1;
        }

.review-info {
            flex: 1;
            min-width: 0;
        }

.review-info h4 {
            color: #ffffff;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

.review-info h4 .verified-badge {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            font-size: 0.6rem;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

.review-info h4 .verified-badge i {
            font-size: 0.5rem;
        }

.review-info p {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.8rem;
            margin: 0;
        }

/* Review Rating */

.review-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 18px;
            background: rgba(255, 193, 7, 0.08);
            padding: 8px 14px;
            border-radius: 30px;
            width: fit-content;
        }

.review-rating i {
            color: #ffc107;
            font-size: 0.9rem;
        }

.review-rating .rating-text {
            color: #ffc107;
            font-weight: 700;
            margin-left: 8px;
            font-size: 0.9rem;
        }

/* Review Text */

.review-text {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.92rem;
            line-height: 1.85;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

/* Review Course Tag */

.review-course-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: color-mix(in srgb, var(--primary-red) 12%, transparent);
            color: #ff8a8a;
            padding: 10px 16px;
            border-radius: 25px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid color-mix(in srgb, var(--primary-red) 15%, transparent);
            transition: all 0.3s ease;
        }

.review-course-tag:hover {
            background: color-mix(in srgb, var(--primary-red) 20%, transparent);
            border-color: color-mix(in srgb, var(--primary-red) 30%, transparent);
        }

.review-course-tag i {
            font-size: 0.7rem;
        }

/* Carousel Navigation — left/right arrows on hover (dots removed) */

.reviews-carousel-wrapper .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
            border: 2px solid rgba(255, 255, 255, 0.85);
            color: white;
            font-size: 1.05rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 28px color-mix(in srgb, var(--primary-red) 40%, transparent);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

.reviews-carousel-wrapper:hover .carousel-nav,
.reviews-carousel-wrapper:focus-within .carousel-nav {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

.reviews-carousel-wrapper .carousel-nav:hover {
            transform: translateY(-50%) scale(1.08);
            box-shadow: 0 12px 36px color-mix(in srgb, var(--primary-red) 50%, transparent);
        }

.reviews-carousel-wrapper .carousel-nav:focus-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            outline: 2px solid #fff;
            outline-offset: 2px;
        }

.reviews-carousel-wrapper .carousel-nav.prev {
            left: 10px;
        }

.reviews-carousel-wrapper .carousel-nav.next {
            right: 10px;
        }

/* Touch devices: always show side nav (no hover) */
@media (hover: none) {
            .reviews-carousel-wrapper .carousel-nav {
                opacity: 0.92;
                visibility: visible;
                pointer-events: auto;
            }
        }

.reviews-carousel-wrapper .carousel-dots {
            display: none;
        }

.reviews-carousel-wrapper .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
            padding: 0;
        }

.reviews-carousel-wrapper .carousel-dot.active {
            background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
            width: 32px;
            border-radius: 5px;
            box-shadow: 0 0 20px color-mix(in srgb, var(--primary-red) 50%, transparent);
        }

.reviews-carousel-wrapper .carousel-dot:hover:not(.active) {
            background: color-mix(in srgb, var(--primary-red) 40%, transparent);
        }

/* CTA Box */

.reviews-cta {
            margin-top: 60px;
            text-align: center;
            background: linear-gradient(145deg, color-mix(in srgb, var(--primary-red) 10%, transparent) 0%, rgba(20, 20, 30, 0.8) 100%);
            border: 1px solid color-mix(in srgb, var(--primary-red) 20%, transparent);
            border-radius: 25px;
            padding: 45px;
            position: relative;
            overflow: hidden;
        }

.reviews-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, color-mix(in srgb, var(--primary-red) 10%, transparent) 0%, transparent 70%);
            animation: rotateBg 20s linear infinite;
        }

@keyframes rotateBg {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

.reviews-cta-content {
            position: relative;
            z-index: 1;
        }

.reviews-cta h3 {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

.reviews-cta p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
            margin-bottom: 25px;
        }

.reviews-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px color-mix(in srgb, var(--primary-red) 40%, transparent);
        }

.reviews-cta-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 50px color-mix(in srgb, var(--primary-red) 50%, transparent);
        }

.reviews-cta-btn i {
            transition: transform 0.3s ease;
        }

.reviews-cta-btn:hover i {
            transform: translateX(5px);
        }

/* Responsive Styles */

@media (max-width: 1200px) {
            .review-card {
                flex: 0 0 calc(50% - 13px);
                min-width: calc(50% - 13px);
            }
            .reviews-section .section-title {
                font-size: 2.5rem;
            }
            .featured-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .featured-video-area {
                max-width: 500px;
                margin: 0 auto;
            }
            .reviews-carousel-wrapper .carousel-nav {
                width: 42px;
                height: 42px;
                font-size: 0.95rem;
            }
        }

@media (max-width: 768px) {
            .reviews-section {
                padding: 70px 0;
            }
            .review-card {
                flex: 0 0 100%;
                min-width: 100%;
                padding: 28px 24px;
            }
            .reviews-section .section-title {
                font-size: 2rem;
            }
            .reviews-trust-badges {
                gap: 20px;
            }
            .trust-badge-item {
                padding: 12px 18px;
            }
            .trust-badge-value {
                font-size: 1.2rem;
            }
            .featured-review {
                padding: 35px 25px;
            }
            .featured-text-area h3 {
                font-size: 1.3rem;
            }
            .featured-avatar {
                width: 65px;
                height: 65px;
                font-size: 1.5rem;
            }
            .reviews-cta {
                padding: 35px 25px;
            }
            .reviews-cta h3 {
                font-size: 1.5rem;
            }
        }

@media (max-width: 480px) {
            .reviews-section {
                padding: 60px 0;
            }
            .reviews-section .section-header {
                margin-bottom: 35px;
            }
            .reviews-section .section-title {
                font-size: 1.7rem;
            }
            .reviews-section .section-subtitle {
                font-size: 1rem;
            }
            .reviews-trust-badges {
                flex-direction: column;
                gap: 15px;
            }
            .trust-badge-item {
                width: 100%;
                justify-content: center;
            }
            .review-card::after {
                font-size: 4rem;
                right: 15px;
                bottom: -10px;
            }
            .review-avatar {
                width: 50px;
                height: 50px;
                font-size: 1.1rem;
                border-radius: 12px;
            }
            .featured-review::after {
                font-size: 3rem;
                right: 25px;
            }
            .video-play-btn {
                width: 60px;
                height: 60px;
            }
            .video-play-btn i {
                font-size: 1.4rem;
            }
        }

/* --- ALUMNI SECTION --- */

.alumni-section {
            background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
            padding: 40px 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
            position: relative;
        }

.alumni-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
        }

.alumni-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

.alumni-carousel-wrapper {
            position: relative;
            overflow: hidden;
            padding: 25px 0;
            width: 100%;
        }

.alumni-carousel {
            display: flex;
            transition: transform 0.6s ease-in-out;
            gap: 35px;
            width: calc(100% * var(--total-slides, 2));
        }

.alumni-card {
            background: white;
            border-radius: 20px;
            padding: 35px 25px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid color-mix(in srgb, var(--primary-red) 20%, transparent);
            text-align: center;
            flex: 0 0 calc(33.333% - 23.33px);
            min-width: calc(33.333% - 23.33px);
            position: relative;
            overflow: hidden;
        }

.alumni-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, color-mix(in srgb, var(--primary-red) 5%, transparent) 0%, transparent 70%);
            transition: all 0.5s ease;
            opacity: 0;
        }

.alumni-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 15px 45px color-mix(in srgb, var(--primary-red) 25%, transparent), 0 5px 15px rgba(0,0,0,0.15);
            border-color: var(--primary-red);
        }

.alumni-card:hover::after {
            opacity: 1;
            top: -30%;
            right: -30%;
        }

.alumni-carousel-wrapper .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

.alumni-carousel-wrapper .carousel-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #e0e0e0;
            cursor: pointer;
            transition: all 0.4s ease;
            border: 3px solid white;
            padding: 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

.alumni-carousel-wrapper .carousel-dot.active {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            width: 40px;
            border-radius: 8px;
            border-color: var(--primary-red);
            box-shadow: 0 4px 12px color-mix(in srgb, var(--primary-red) 30%, transparent);
        }

.alumni-carousel-wrapper .carousel-dot:hover {
            background: var(--accent-red);
            transform: scale(1.3);
            box-shadow: 0 4px 12px color-mix(in srgb, var(--primary-red) 40%, transparent);
        }

.alumni-avatar {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.8rem;
            font-weight: bold;
            margin: 0 auto 25px;
            border: 5px solid #fff5f5;
            box-shadow: 0 8px 25px color-mix(in srgb, var(--primary-red) 25%, transparent), inset 0 2px 5px rgba(255,255,255,0.3);
            transition: all 0.4s ease;
            position: relative;
        }

.alumni-avatar::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            padding: 3px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

.alumni-card:hover .alumni-avatar {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 35px color-mix(in srgb, var(--primary-red) 35%, transparent), inset 0 2px 5px rgba(255,255,255,0.3);
        }

.alumni-card:hover .alumni-avatar::before {
            opacity: 1;
        }

.alumni-card h4 {
            color: var(--text-dark);
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

.alumni-card .alumni-position {
            color: var(--primary-red);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 12px;
            padding: 8px 15px;
            background: color-mix(in srgb, var(--primary-red) 8%, transparent);
            border-radius: 20px;
            display: inline-block;
        }

.alumni-card .alumni-company {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 18px;
            font-weight: 600;
        }

.alumni-card .alumni-achievement {
            color: var(--text-dark);
            font-size: 0.98rem;
            line-height: 1.7;
            font-style: italic;
            padding: 15px;
            background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
            border-radius: 12px;
            border-left: 3px solid var(--primary-red);
            position: relative;
        }

.alumni-card .alumni-achievement::before {
            content: '★';
            position: absolute;
            top: -8px;
            right: 15px;
            color: var(--gold);
            font-size: 1.5rem;
            background: white;
            padding: 0 5px;
        }
