/* Alumni Companies Section */
        .alumni-companies-section {
            padding: 80px 0;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

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

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
			text-align: left;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Logo Carousel Container */
        .logo-carousel-container {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 20px;
            padding: 40px 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        /* Scrolling Animation */
        .logo-scroll {
            display: flex;
            animation: scroll 30s linear infinite;
            gap: 60px;
            align-items: center;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Individual Logo Item */
        .logo-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 25px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            min-width: 180px;
            height: 80px;
            position: relative;
            overflow: hidden;
        }

        .logo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(204, 54, 52, 0.05), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .logo-item:hover::before {
            transform: translateX(100%);
        }

        .logo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .logo-item img {
            max-width: 100%;
            max-height: 50px;
            width: auto;
            height: auto;
            filter: grayscale(20%) opacity(0.8);
            transition: all 0.3s ease;
        }

        .logo-item:hover img {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        /* Pause animation on hover */
        .logo-carousel-container:hover .logo-scroll {
            animation-play-state: paused;
        }

        /* Stats Section */
        .alumni-stats {
            margin-top: 60px;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .stat-card {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(180deg); }
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-content {
            position: relative;
            z-index: 2;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.95;
        }

        /* Featured Companies */
        .featured-companies {
            margin-top: 60px;
            text-align: center;
        }

        .featured-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 30px;
        }

        .featured-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .featured-logo {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100px;
        }

        .featured-logo:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .featured-logo img {
            max-width: 100%;
            max-height: 60px;
            width: auto;
            height: auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .alumni-companies-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .logo-carousel-container {
                padding: 30px 0;
            }

            .logo-item {
                min-width: 150px;
                height: 70px;
                padding: 10px 20px;
            }

            .logo-item img {
                max-height: 40px;
            }

            .logo-scroll {
                gap: 40px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-card {
                padding: 25px 15px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }

            .logo-item {
                min-width: 120px;
                height: 60px;
                padding: 8px 15px;
            }

            .logo-item img {
                max-height: 35px;
            }

            .logo-scroll {
                gap: 30px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .featured-logos {
                grid-template-columns: repeat(2, 1fr);
            }
        }