  .testimonials-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #ffffff;
            color: #2c3e50;
            line-height: 1.6;
        }
        
        .testimonials-wrapper * {
            box-sizing: border-box;
        }
        
        .alumni-testimonials-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .alumni-section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .alumni-section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
        }
        
        .alumni-section-title .alumni-highlight {
            color: #dc3545;
            position: relative;
        }
        
        .alumni-section-title .alumni-highlight::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }
        
        .alumni-section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .alumni-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .alumni-testimonial-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid #f8f9fa;
            transition: all 0.4s ease;
            overflow: hidden;
        }
        
        .alumni-testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(135deg, #dc3545, #ff6b35);
        }
        
        .alumni-testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(220, 53, 69, 0.15);
            border-color: #dc3545;
        }
        
        .alumni-quote-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #dc3545, #ff6b35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .alumni-quote-icon::after {
            content: '';
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        .alumni-testimonial-text {
            font-size: 1.1rem;
            color: #495057;
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.8;
            position: relative;
        }
        
        .alumni-author-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .alumni-author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fff;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
        }
        
        .alumni-author-details h4 {
            color: #2c3e50;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .alumni-author-title {
            color: #dc3545;
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .alumni-author-university {
            color: #6c757d;
            font-size: 0.9rem;
            margin-top: 2px;
        }
        
        .alumni-floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }
        
        .alumni-floating-elements::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
            border-radius: 50%;
            animation: alumni-float 6s ease-in-out infinite;
        }
        
        @keyframes alumni-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        .alumni-stats-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 60px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(255, 107, 53, 0.05));
            border-radius: 15px;
            border: 1px solid rgba(220, 53, 69, 0.1);
        }
        
        .alumni-stat-item {
            text-align: center;
        }
        
        .alumni-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #dc3545;
            display: block;
        }
        
        .alumni-stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 5px;
        }
        
        @media (max-width: 768px) {
            .alumni-section-title {
                font-size: 2.5rem;
            }
            
            .alumni-testimonials-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .alumni-testimonial-card {
                padding: 30px 25px;
            }
            
            .alumni-stats-bar {
                flex-direction: column;
                gap: 20px;
            }
        }