/* Career Pathways Section */
        .career-pathways-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

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

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
            text-align: center;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Two Column Layout */
        .content-row {
            align-items: stretch;
        }

        /* Career Paths Side - Redesigned */
        .career-paths-side {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 25px;
            padding: 40px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(204, 54, 52, 0.25);
        }

        .career-paths-side::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(-20px) rotate(180deg); }
        }

        .career-paths-title {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .career-paths-compact {
            position: relative;
            z-index: 2;
        }

        .career-item-compact {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .career-item-compact:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(8px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .career-item-compact:last-child {
            margin-bottom: 0;
        }

        .career-icon-compact {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .career-item-compact:hover .career-icon-compact {
            background: white;
            transform: rotate(10deg) scale(1.1);
        }

        .career-icon-compact i {
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .career-item-compact:hover .career-icon-compact i {
            color: var(--primary);
        }

        .career-text-compact {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }

        /* Student Slider Side - Enhanced */
        .student-slider-side {
            position: relative;
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .slider-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .slider-header h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .slider-header p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Enhanced Student Slider */
        .student-slider {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin: 0; /* Remove margins since arrows are now inside */
        }

        .slider-container {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .student-slide {
            min-width: 100%;
            padding: 0 5px;
        }

        .alumni-card {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .alumni-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }

        .alumni-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-color: rgba(204, 54, 52, 0.2);
        }

        .alumni-image {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 4px solid var(--primary);
            transition: all 0.4s ease;
            display: block;
        }

        .alumni-card:hover .alumni-image {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(204, 54, 52, 0.3);
        }

        .alumni-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .alumni-degree {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 20px;
        }

        .alumni-role {
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.08), rgba(230, 90, 88, 0.08));
            border-radius: 15px;
            padding: 18px;
            border: 1px solid rgba(204, 54, 52, 0.1);
        }

        .role-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .company-name {
            font-size: 0.95rem;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* Modern Top-Right Corner Navigation */
        .slider-navigation {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 8px;
            z-index: 30;
        }

        .nav-arrow {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(204, 54, 52, 0.2);
            color: var(--primary);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-arrow:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(204, 54, 52, 0.3);
        }

        .nav-arrow i {
            font-size: 0.9rem;
        }

        /* Remove old arrow styles */
        .slider-arrows {
            display: none;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(204, 54, 52, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        .nav-dot.active::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            opacity: 0.3;
        }

        /* Call to Action */
        .career-cta {
           text-align: center;
			margin-top: 60px;
			padding: 50px 30px;
			background: linear-gradient(135deg, var(--primary), var(--primary-light));
			border-radius: 25px;
			color: white;
			position: relative;
			overflow: hidden;
			background: linear-gradient(135deg, rgb(0 0 0 / 18%), rgba(204, 54, 52, 0.1)), url(../images/acity-background.jpg) center / cover no-repeat;
			background-size: cover;
			background-position: center;
        }

        .career-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

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

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

        .cta-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .cta-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-cta {
            padding: 15px 32px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
        }

        .btn-cta.white {
            background: white;
            color: var(--primary);
        }

        .btn-cta.white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            color: var(--primary);
        }

        .btn-cta.outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-cta.outline:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content-row {
                align-items: flex-start;
            }
            
            .career-paths-side {
                margin-bottom: 30px;
            }
            
            .student-slider {
                margin: 0 50px;
            }
            
            .prev-arrow, .next-arrow {
                width: 45px;
                height: 45px;
            }
            
            .prev-arrow {
                left: -25px;
            }
            
            .next-arrow {
                right: -25px;
            }
        }

        @media (max-width: 768px) {
            .career-pathways-section {
                padding: 60px 0;
            }

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

            .career-paths-side, .student-slider-side {
                padding: 30px;
            }

            .student-slider {
                margin: 0 40px;
            }

            .prev-arrow, .next-arrow {
                width: 40px;
                height: 40px;
            }

            .prev-arrow {
                left: -20px;
            }
            
            .next-arrow {
                right: -20px;
            }

            .alumni-card {
                padding: 30px;
            }

            .alumni-image {
                width: 80px;
                height: 80px;
            }

            .cta-title {
                font-size: 1.7rem;
            }

            .career-cta {
                padding: 40px 20px;
                margin-top: 50px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-cta {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
        }

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

            .career-paths-side, .student-slider-side {
                padding: 25px;
            }

            .career-item-compact {
                padding: 10px 14px;
                margin-bottom: 12px;
            }

            .career-icon-compact {
                width: 35px;
                height: 35px;
                margin-right: 12px;
            }

            .career-text-compact {
                font-size: 0.95rem;
            }

            .student-slider {
                margin: 0 30px;
            }

            .slider-arrows {
                display: none; /* Hide arrows on very small screens */
            }
        }