

        /* DCICI Design Institute - Bootstrap Enhanced Stylesheet */
        :root {
            /* Primary Colors from Logo - Exact Match */
            --dcici-red: #E53E3E;
            --dcici-blue: #2B6CB0;
            --dcici-white: #FFFFFF;
            --dcici-black: #1A202C;
            
            /* Light Variations for Hover Effects */
            --dcici-red-light: #F56565;
            --dcici-blue-light: #4299E1;
            --dcici-red-dark: #C53030;
            --dcici-blue-dark: #2C5282;
            --dcici-green: #48BB78;
            
            /* Bootstrap Color Overrides */
            --bs-primary: var(--dcici-red);
            --bs-primary-rgb: 229, 62, 62;
            --bs-secondary: var(--dcici-blue);
            --bs-secondary-rgb: 43, 108, 176;
            
            /* Typography */
            --bs-font-sans-serif: 'Inter', system-ui, -apple-system, sans-serif;
            --font-heading: 'Poppins', sans-serif;
            
            /* Custom Properties */
            --border-radius-xl: 1.5rem;
            --shadow-red: 0 8px 25px rgba(229, 62, 62, 0.15);
            --shadow-blue: 0 8px 25px rgba(43, 108, 176, 0.15);
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Global Styles */
        html {
            scroll-behavior: smooth;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        body {
            font-family: var(--bs-font-sans-serif);
            overflow-x: hidden;
            padding-top: 76px;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Typography Enhancements */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .text-gradient {
            color: var(--dcici-red);
            display: inline-block;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Custom Button Styles */
        .btn-gradient-primary {
            background-color: var(--dcici-red);
            border: none;
            color: white;
            font-family: var(--font-heading);
            font-weight: 600;
            transition: var(--transition-smooth);
            border-radius: 0.75rem;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .btn-gradient-primary:hover {
            background-color: var(--dcici-red-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-red);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .btn-gradient-secondary {
            background-color: var(--dcici-blue);
            border: none;
            color: white;
            font-family: var(--font-heading);
            font-weight: 600;
            transition: var(--transition-smooth);
            border-radius: 0.75rem;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .btn-gradient-secondary:hover {
            background-color: var(--dcici-blue-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-blue);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            background: 
                linear-gradient(135deg, rgba(43, 108, 176, 0.9) 0%, rgba(229, 62, 62, 0.8) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23667eea;stop-opacity:0.8" /><stop offset="100%" style="stop-color:%23764ba2;stop-opacity:0.8" /></linearGradient><filter id="glow"><feGaussianBlur stdDeviation="3" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><rect width="100%" height="100%" fill="url(%23grad1)"/><g filter="url(%23glow)"><circle cx="200" cy="150" r="3" fill="%23ff6b6b" opacity="0.8"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="800" cy="200" r="2" fill="%234ecdc4" opacity="0.6"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="3s" repeatCount="indefinite"/></circle><circle cx="1000" cy="400" r="4" fill="%23ffe66d" opacity="0.7"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="300" cy="600" r="2.5" fill="%23ff6b6b" opacity="0.5"><animate attributeName="opacity" values="0.3;0.9;0.3" dur="1.8s" repeatCount="indefinite"/></circle><circle cx="600" cy="100" r="3.5" fill="%234ecdc4" opacity="0.8"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.2s" repeatCount="indefinite"/></circle><path d="M100,300 Q200,250 300,300 T500,300" stroke="%23ff6b6b" stroke-width="2" fill="none" opacity="0.4"><animate attributeName="opacity" values="0.2;0.6;0.2" dur="4s" repeatCount="indefinite"/></path><path d="M700,500 Q800,450 900,500 T1100,500" stroke="%234ecdc4" stroke-width="1.5" fill="none" opacity="0.3"><animate attributeName="opacity" values="0.1;0.5;0.1" dur="3.5s" repeatCount="indefinite"/></path><polygon points="150,400 170,380 190,400 170,420" fill="%23ffe66d" opacity="0.6"><animateTransform attributeName="transform" type="rotate" values="0 170 400;360 170 400" dur="10s" repeatCount="indefinite"/></polygon><polygon points="950,300 970,280 990,300 970,320" fill="%23ff6b6b" opacity="0.5"><animateTransform attributeName="transform" type="rotate" values="0 970 300;-360 970 300" dur="8s" repeatCount="indefinite"/></polygon><rect x="400" y="250" width="20" height="20" fill="%234ecdc4" opacity="0.4" transform="rotate(45 410 260)"><animateTransform attributeName="transform" type="rotate" values="45 410 260;405 410 260" dur="6s" repeatCount="indefinite"/></rect></g><g opacity="0.3"><path d="M0,600 Q300,550 600,600 T1200,600 L1200,800 L0,800 Z" fill="%23667eea"/><path d="M0,650 Q400,600 800,650 T1200,650 L1200,800 L0,800 Z" fill="%23764ba2"/></g></svg>') center/cover;
            background-attachment: fixed;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .hero-overlay {
            background: rgba(0, 0, 0, 0.2);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 2s; }
        .particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 0.5s; }
        .particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 1.5s; }
        .particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: 2.5s; }
        .particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 0.8s; }
        .particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 1.8s; }
        .particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 2.2s; }

        @keyframes float {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .enquiry-form-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Collaborators Section */
        .collaborators-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .collaborators-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .company-logo-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(229, 62, 62, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .company-logo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(229, 62, 62, 0.1), transparent);
            transition: left 0.6s;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .company-logo-card:hover::before {
            left: 100%;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .company-logo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(229, 62, 62, 0.15);
            border-color: var(--dcici-red);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .company-logo {
            width: 120px;
            height: 80px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .company-logo-card:hover .company-logo {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .stats-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--dcici-red), var(--dcici-blue));
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .stats-card:hover {
            transform: translateY(-5px);
            border-color: var(--dcici-red);
            box-shadow: 0 20px 40px rgba(229, 62, 62, 0.15);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--dcici-red), var(--dcici-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .logo-carousel {
            display: flex;
            animation: scroll 30s linear infinite;
            gap: 2rem;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .logo-carousel:hover {
            animation-play-state: paused;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


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

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .carousel-container {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .carousel-container::before,
        .carousel-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .carousel-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(248, 250, 252, 1), transparent);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .carousel-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(248, 250, 252, 1), transparent);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Courses Section */
        .courses-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .courses-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="courseGrid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23courseGrid)"/></svg>');
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            height: 100%;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-thumbnail {
            height: 200px;
            position: relative;
            overflow: hidden;
            display: flex;
            /*align-items: center;*/
            justify-content: center;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-thumbnail::before {
            content: '';
            position: absolute;

            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));*/
            z-index: 1;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-animation {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            opacity: 0.8;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Course Specific Backgrounds */
        .vfx-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .animation-bg {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .motion-bg {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .game-bg {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .uiux-bg {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .digital-bg {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-content {
            padding: 1rem;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-duration {
            background: var(--dcici-red);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-eligibility {
            color: var(--dcici-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .course-buttons {
            display: flex;
            gap: 1rem;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .btn-brochure {
            background: var(--dcici-red);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1;
            text-align: center;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .btn-brochure:hover {
            background: var(--dcici-red-dark);
            color: white;
            transform: translateY(-2px);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .btn-know-more {
            background: transparent;
            color: var(--dcici-blue);
            border: 2px solid var(--dcici-blue);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1;
            text-align: center;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .btn-know-more:hover {
            background: var(--dcici-blue);
            color: white;
            transform: translateY(-2px);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Floating Animation */
        @keyframes float-up-down {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        @keyframes rotate-360 {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


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

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .floating-animation {
            animation: float-up-down 3s ease-in-out infinite;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .rotating-animation {
            animation: rotate-360 8s linear infinite;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .pulsing-animation {
            animation: pulse-scale 2s ease-in-out infinite;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .counter {
            font-family: var(--font-heading);
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Navbar Customization */
        .navbar-scrolled {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .navbar-light .navbar-nav .nav-link {
            color: var(--dcici-black);
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: var(--transition-smooth);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .navbar-light .navbar-nav .nav-link:hover,
        .navbar-light .navbar-nav .nav-link.active {
            color: var(--dcici-red);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 1rem;
            padding: 1rem 0;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .dropdown-item:hover {
            background-color: rgba(229, 62, 62, 0.1);
            color: var(--dcici-red);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Form Customization */
        .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .form-control:focus {
            border-color: var(--dcici-red);
            box-shadow: 0 0 0 0.25rem rgba(229, 62, 62, 0.25);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .form-floating > .form-control:focus ~ label,
        .form-floating > .form-control:not(:placeholder-shown) ~ label {
            color: var(--dcici-red);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        /* Card Enhancements */
        .card {
            border: none;
            transition: var(--transition-smooth);
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


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

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .pulse-btn {
            animation: pulse-glow 2s infinite;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
            }
            50% {
                box-shadow: 0 8px 25px rgba(229, 62, 62, 0.5);
            }
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        .animate-bounce {
            animation: bounce 2s infinite;
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }


        @keyframes bounce {
            0%, 20%, 53%, 80%, 100% {
                transform: translateY(0);
            }
            40%, 43% {
                transform: translateY(-10px);
            }
            70% {
                transform: translateY(-5px);
            }
            90% {
                transform: translateY(-2px);
            }
        }

        .student-work-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
            z-index: 1;
        }

        .student-work-section .container {
            position: relative;
            z-index: 2;
        }

        .student-work-title {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Carousel Styles */
        .student-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 300%; /* 3 slides */
        }

        .carousel-slide {
            display: flex;
            gap: 20px;
            width: 33.333%;
            padding: 20px;
        }

        .work-item {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .work-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .work-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover .work-image img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-info {
            text-align: center;
            color: white;
            padding: 20px;
        }

        .work-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .work-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: -25px;
        }

        .carousel-btn-next {
            right: -25px;
        }

        .carousel-btn i {
            font-size: 1.2rem;
            color: var(--dcici-blue);
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: white;
            border-color: white;
        }

        /* ===== PLACEMENT PARTNERS SECTION ===== */
        .placement-partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: partnersSlide 20s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px;
        }

        .partner-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .text-logo {
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .text-logo span {
            display: block;
            font-size: 1.1rem;
            line-height: 1;
        }

        .text-logo small {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .carousel-slide {
                flex-direction: column;
                gap: 15px;
            }
            
            .work-item {
                width: 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn-prev {
                left: -20px;
            }
            
            .carousel-btn-next {
                right: -20px;
            }
            
            .partner-logo {
                width: 120px;
                height: 60px;
            }
            
            .partners-track {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .carousel-slide {
                gap: 15px;
            }
            
            .work-item:nth-child(3) {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .work-item:nth-child(2) {
                display: none;
            }
            
            .carousel-btn {
                display: none;
            }
        }

        /* Simple Student Work Section Styles */
        .student-work-item {
            background: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .student-work-item:hover {
            transform: scale(1.03);
        }

        .student-work-item img {
            border-radius: 8px;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .student-work-item img {
                height: 200px;
            }
        }


        /* Placement Partners Section Styles */
        .partners-carousel-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
            margin: 0 auto;
        }

        .partners-carousel {
            display: flex;
            animation: scroll-partners 20s linear infinite;
            width: calc(200% + 40px); /* Double width for seamless loop */
        }

        .partner-logo-item {
            flex: 0 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 180px;
        }

        .partner-logo-item img {
            max-height: 60px;
            width: auto;
            filter: grayscale(100%);
            transition: all 0.3s ease-in-out;
            object-fit: contain;
        }

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

        /* Infinite scroll animation */
        @keyframes scroll-partners {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Pause animation on hover */
        .partners-carousel-wrapper:hover .partners-carousel {
            animation-play-state: paused;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .partner-logo-item {
                min-width: 120px;
                padding: 0 15px;
            }
            
            .partner-logo-item img {
                max-height: 45px;
            }
            
            .partners-carousel {
                animation-duration: 15s; /* Faster on mobile */
            }
        }

        @media (max-width: 480px) {
            .partner-logo-item {
                min-width: 100px;
                padding: 0 10px;
            }
        /* Why Choose DCICI Section Styles */
        .bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

        .why-choose-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            height: 600px;
            z-index: 2;
        }

        .central-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            z-index: 10;
        }

        .logo-img {
            max-width: 80px;
            max-height: 80px;
            object-fit: contain;
        }

        .feature-item {
            position: absolute;
            text-align: center;
            opacity: 0;
            transform: scale(0.8);
            animation: fadeInScale 0.6s ease-out forwards;
        }

        .feature-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .feature-circle:hover {
            transform: scale(1.1);
        }
        .feature-circle:focus-visible {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            outline: 2px solid var(--dcici-blue);
            outline-offset: 2px;
        }

        .feature-number {
            font-size: 12px;
            font-weight: bold;
            color: white;
            position: absolute;
            top: 8px;
        }

        .feature-icon {
            font-size: 24px;
        }

        .feature-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--dcici-blue);
            max-width: 100px;
            line-height: 1.2;
        }

        /* Position features in circle */
        .feature-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.1s; }
        .feature-2 { top: 15%; right: 10%; animation-delay: 0.2s; }
        .feature-3 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.3s; }
        .feature-4 { bottom: 15%; right: 10%; animation-delay: 0.4s; }
        .feature-5 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.5s; }
        .feature-6 { bottom: 15%; left: 10%; animation-delay: 0.6s; }
        .feature-7 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 0.7s; }
        .feature-8 { top: 15%; left: 10%; animation-delay: 0.8s; }

        /* Alternate colors */
        .feature-1 .feature-circle, .feature-3 .feature-circle, .feature-5 .feature-circle, .feature-7 .feature-circle {
            background: linear-gradient(135deg, var(--dcici-blue), #2980b9);
        }

        .feature-2 .feature-circle, .feature-4 .feature-circle, .feature-6 .feature-circle, .feature-8 .feature-circle {
            background: linear-gradient(135deg, var(--dcici-red), #c0392b);
        }

        @keyframes fadeInScale {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .why-choose-container {
                height: auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 30px;
                padding: 20px;
            }

            .central-logo {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                grid-column: 1 / -1;
                justify-self: center;
                margin-bottom: 20px;
            }

            .feature-item {
                position: relative;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                transform: none !important;
                opacity: 1;
            }

            .feature-text {
                max-width: none;
            }
        }

        @media (max-width: 480px) {
            .why-choose-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-circle {
                width: 70px;
                height: 70px;
            }

            .feature-icon {
                font-size: 20px;
            }
        }

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