        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --secondary: #7c3aed;
            --accent: #ec4899;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --dark: #0f172a;
            --gray-900: #111827;
            --gray-800: #1f2937;
            --gray-700: #374151;
            --gray-600: #4b5563;
            --gray-500: #6b7280;
            --gray-400: #9ca3af;
            --gray-300: #d1d5db;
            --gray-200: #e5e7eb;
            --gray-100: #f3f4f6;
            --gray-50: #f9fafb;
            --white: #ffffff;
            
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            
            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
 


        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--white);
            color: var(--gray-900);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Modern Loader */
        .loader-wrapper {
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loader-wrapper.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        
        /* Glass Morphism Effect */
        .glass {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .glass-dark {
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
     
        
        /* Modern Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 0.5rem;
            transition: all var(--transition-base);
            cursor: pointer;
            border: none;
            outline: none;
            text-decoration: none;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 14px 0 rgba(102, 126, 234, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 0 rgba(102, 126, 234, 0.6);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-ghost {
            background: var(--gray-50);
            border-color: var(--gray-400);
        }
        
        .btn-ghost:hover {
            background: var(--gray-50);
            border-color: var(--gray-400);
        }
        
        /* Hero Section */
        .hero-gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        }
        
        /* Modern Cards */
        .card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: all var(--transition-base);
            border: 1px solid var(--gray-100);
        }
        
        .card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }
        
        .card-gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        /* Feature Cards */
        .feature-card {
            position: relative;
            padding: 2rem;
            border-radius: 1rem;
            background: white;
            border: 1px solid var(--gray-200);
            transition: all var(--transition-base);
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: translateX(-100%);
            transition: transform var(--transition-base);
        }
        
        .feature-card:hover::before {
            transform: translateX(0);
        }
        
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Stats Section */
        .stat-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 1rem;
            border: 1px solid var(--gray-100);
            transition: all var(--transition-base);
        }
        
        .stat-card:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Gradient Text */
        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Modern Input */
        .input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--gray-200);
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: all var(--transition-fast);
            background: white;
        }
        
        .input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        /* Smooth Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s ease forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 0.8s ease forwards;
        }
        
        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 0.8s ease forwards;
        }
        
        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        
        
        /* Performance Optimizations */
        img {
            loading: lazy;
            decoding: async;
        }
        
        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
        
        /* Responsive Typography */
        @media (max-width: 640px) {
            html {
                font-size: 14px;
            }
        }
  
  
  
  
  
  
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
        
        :root {
            --primary: #3b82f6;
            --primary-dark: #1d4ed8;
            --secondary: #10b981;
            --accent: #8b5cf6;
            --dark: #111827;
            --light: #f9fafb;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
            background-color: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero-pattern {
            background-image: radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.15) 1px, transparent 0);
            background-size: 24px 24px;
        }
        
        .blob {
            position: absolute;
            width: 500px;
            height: 500px;
            filter: blur(100px);
            opacity: 0.2;
            z-index: 0;
            border-radius: 100%;
        }
        
        .card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
        }
        
        .btn-secondary {
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            transition: all 0.3s ease;
        }
        
        .btn-secondary3 {
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            transition: all 0.3s ease;
            white-space: nowrap;
  min-width: 120px; /* Adjust this value as needed */
  text-align: center;
        }
        
       
        
        .course-card {
            transition: all 0.3s ease;
        }
        
        .course-card:hover {
            transform: translateY(-5px);
        }
        
        .stats-item {
            transition: all 0.3s ease;
        }
        
        .stats-item:hover {
            transform: scale(1.05);
        }
        
        .carousel {
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        
        .carousel::-webkit-scrollbar {
            display: none;
        }
        
        .carousel-item {
            scroll-snap-align: start;
        }
        
        .feature-card {
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
     
       
        
        /* Custom cursor */
        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: rgba(59, 130, 246, 0.3);
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
            transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
        }
        
        /* Loader */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--light);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(59, 130, 246, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Floating shapes */
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            z-index: -1;
        }
        
        /* Accordion */
        .accordion-header {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-item.active .accordion-content {
            max-height: 500px;
        }
        
        .accordion-icon {
            transition: transform 0.3s ease;
        }
        
        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }

@media (max-width: 640px) {
  .hero-section .flex.flex-col {
    position: relative;
    z-index: 30;
  }
  
  .blob {
    display: none; /* Hide blobs on mobile if they're causing issues */
  }
}



/* Modal Animation */
.modal-enter {
  opacity: 0;
  transform: scale(0.95);
}
.modal-enter-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 200ms, transform 200ms;
}
.modal-exit {
  opacity: 1;
}
.modal-exit-active {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 200ms, transform 200ms;
}



/* Desktop content container - Flex layout for image + text */
.desktop-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
}

/* Desktop image styling - Small and on the left */
.desktop-image-container {
  width: 50px; /* Small fixed width */
  height: 50px; /* Small fixed height */
  flex-shrink: 0; /* Prevent shrinking */
  border-radius: 0.375rem; /* Rounded corners */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.program-card:hover .desktop-image {
  transform: scale(1.1); /* Subtle zoom on hover */
}

/* Desktop title styling - Takes remaining space */
.program-title.desktop-title {
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left; /* Changed from center to left */
  word-break: break-word;
  flex: 1; /* Take remaining space */
}

/* Mobile content container - Hidden by default on desktop */
.mobile-content {
  display: none;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

/* Mobile title styling */
.program-title.mobile-title {
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 0.5rem 0;
  text-align: center;
  width: 100%;
  padding: 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  max-height: 2.4rem;
}

/* Mobile Image Container and Images */
.program-image-container {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.program-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
  transition: transform 0.3s ease;
}

.program-card:hover .program-image {
  transform: scale(1.05);
}

.program-card-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.program-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.program-badge i {
  font-size: 0.65rem;
}

/* Grid Layout */
#programsGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .program-card {
    padding: 0;
  }
  
  html {
    zoom: 0.82; /* This scales everything to 85% */
}
  
  /* Hide desktop layout on mobile */
  .desktop-content {
    display: none;
  }
  
  /* Show mobile layout */
  .program-card-header {
    min-height: auto;
    padding: 0;
    flex-direction: column;
    justify-content: center; /* Reset to center for mobile */
    gap: 0; /* Remove gap for mobile */
  }
  
  .program-title.desktop-title {
    display: none;
  }
  
  .mobile-content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .program-card-body {
    padding: 0.75rem;
  }
  
  .program-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.35rem;
  }
  
  .program-badge i {
    font-size: 0.55rem;
  }
  
  .btn-secondary3 {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.7rem !important;
    min-width: 110px;
    white-space: nowrap;
  }
  
  #modalTitle {
    font-size: 1.25rem;
  }
}

/* Extra small screens */
@media (max-width: 375px) {
  .program-title.mobile-title {
    font-size: 0.7rem;
    -webkit-line-clamp: 2;
    max-height: 2rem;
  }
  
  .program-badge {
    font-size: 0.6rem;
  }
  
  .btn-secondary3 {
    font-size: 0.65rem !important;
    min-width: 100px;
  }
}

/* Button Styles */
.btn-secondary3 {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transition: all 0.3s ease;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  min-width: 120px;
}
.btn-secondary3:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.3);
}




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

@keyframes float-delayed {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

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

@keyframes gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes gradient-delayed {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 8s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 10s ease-in-out infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 8s ease infinite;
}

.animate-gradient-delayed {
  background-size: 200% 200%;
  animation: gradient-delayed 8s ease infinite 2s;
}

.bg-grid-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(147, 51, 234, 0.15) 1px, transparent 0);
  background-size: 20px 20px;
}

.border-3 {
  border-width: 3px;
}








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

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

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

@keyframes gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes gradient-delayed {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 8s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 10s ease-in-out infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 4s ease infinite;
}

.animate-gradient-delayed {
  background-size: 200% 200%;
  animation: gradient-delayed 4s ease infinite;
}

.bg-grid-pattern {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.border-3 {
  border-width: 3px;
}


        
            .program-card {
                position: relative;
                background: white;
                border-radius: 16px;
                overflow: hidden;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border: 1px solid rgba(0, 0, 0, 0.06);
                box-shadow: 
                    0 4px 6px rgba(0, 0, 0, 0.05),
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
            }
            
            .program-card:hover {
                transform: translateY(-8px);
                box-shadow: 
                    0 8px 12px rgba(0, 0, 0, 0.08),
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06);
                border-color: transparent;
            }
            
            .program-card.ai-card {
                box-shadow: 
                    0 4px 6px rgba(0, 0, 0, 0.05),
                    0 20px 25px -5px rgba(59, 130, 246, 0.15),
                    0 10px 10px -5px rgba(59, 130, 246, 0.1),
                    0 0 50px -12px rgba(59, 130, 246, 0.25);
            }
            
            .program-card.ai-card:hover {
                box-shadow: 
                    0 8px 12px rgba(0, 0, 0, 0.08),
                    0 25px 30px -5px rgba(59, 130, 246, 0.2),
                    0 15px 15px -5px rgba(59, 130, 246, 0.15),
                    0 0 60px -12px rgba(59, 130, 246, 0.35);
            }
            
            .program-card.data-card {
                box-shadow: 
                    0 4px 6px rgba(0, 0, 0, 0.05),
                    0 20px 25px -5px rgba(147, 51, 234, 0.15),
                    0 10px 10px -5px rgba(147, 51, 234, 0.1),
                    0 0 50px -12px rgba(147, 51, 234, 0.25);
            }
            
            .program-card.data-card:hover {
                box-shadow: 
                    0 8px 12px rgba(0, 0, 0, 0.08),
                    0 25px 30px -5px rgba(147, 51, 234, 0.2),
                    0 15px 15px -5px rgba(147, 51, 234, 0.15),
                    0 0 60px -12px rgba(147, 51, 234, 0.35);
            }
            
            .program-card.cyber-card {
                box-shadow: 
                    0 4px 6px rgba(0, 0, 0, 0.05),
                    0 20px 25px -5px rgba(99, 102, 241, 0.15),
                    0 10px 10px -5px rgba(99, 102, 241, 0.1),
                    0 0 50px -12px rgba(99, 102, 241, 0.25);
            }
            
            .program-card.cyber-card:hover {
                box-shadow: 
                    0 8px 12px rgba(0, 0, 0, 0.08),
                    0 25px 30px -5px rgba(99, 102, 241, 0.2),
                    0 15px 15px -5px rgba(99, 102, 241, 0.15),
                    0 0 60px -12px rgba(99, 102, 241, 0.35);
            }
            
            .program-card.medical-card {
                box-shadow: 
                    0 4px 6px rgba(0, 0, 0, 0.05),
                    0 20px 25px -5px rgba(236, 72, 153, 0.15),
                    0 10px 10px -5px rgba(236, 72, 153, 0.1),
                    0 0 50px -12px rgba(236, 72, 153, 0.25);
            }
            
            .program-card.medical-card:hover {
                box-shadow: 
                    0 8px 12px rgba(0, 0, 0, 0.08),
                    0 25px 30px -5px rgba(236, 72, 153, 0.2),
                    0 15px 15px -5px rgba(236, 72, 153, 0.15),
                    0 0 60px -12px rgba(236, 72, 153, 0.35);
            }
            
            .program-card.fintech-card {
                box-shadow: 
                    0 4px 6px rgba(0, 0, 0, 0.05),
                    0 20px 25px -5px rgba(34, 197, 94, 0.15),
                    0 10px 10px -5px rgba(34, 197, 94, 0.1),
                    0 0 50px -12px rgba(34, 197, 94, 0.25);
            }
            
            .program-card.fintech-card:hover {
                box-shadow: 
                    0 8px 12px rgba(0, 0, 0, 0.08),
                    0 25px 30px -5px rgba(34, 197, 94, 0.2),
                    0 15px 15px -5px rgba(34, 197, 94, 0.15),
                    0 0 60px -12px rgba(34, 197, 94, 0.35);
            }
            
            .program-card.nlp-card {
                box-shadow: 
                    0 4px 6px rgba(0, 0, 0, 0.05),
                    0 20px 25px -5px rgba(239, 68, 68, 0.15),
                    0 10px 10px -5px rgba(239, 68, 68, 0.1),
                    0 0 50px -12px rgba(239, 68, 68, 0.25);
            }
            
            .program-card.nlp-card:hover {
                box-shadow: 
                    0 8px 12px rgba(0, 0, 0, 0.08),
                    0 25px 30px -5px rgba(239, 68, 68, 0.2),
                    0 15px 15px -5px rgba(239, 68, 68, 0.15),
                    0 0 60px -12px rgba(239, 68, 68, 0.35);
            }
            
            .program-card.engineering-card {
                box-shadow: 
                    0 4px 6px rgba(0, 0, 0, 0.05),
                    0 20px 25px -5px rgba(107, 114, 128, 0.15),
                    0 10px 10px -5px rgba(107, 114, 128, 0.1),
                    0 0 50px -12px rgba(107, 114, 128, 0.25);
            }
            
            .program-card.engineering-card:hover {
                box-shadow: 
                    0 8px 12px rgba(0, 0, 0, 0.08),
                    0 25px 30px -5px rgba(107, 114, 128, 0.2),
                    0 15px 15px -5px rgba(107, 114, 128, 0.15),
                    0 0 60px -12px rgba(107, 114, 128, 0.35);
            }
            
            .program-card.marketing-card {
                box-shadow: 
                    0 4px 6px rgba(0, 0, 0, 0.05),
                    0 20px 25px -5px rgba(251, 191, 36, 0.15),
                    0 10px 10px -5px rgba(251, 191, 36, 0.1),
                    0 0 50px -12px rgba(251, 191, 36, 0.25);
            }
            
            .program-card.marketing-card:hover {
                box-shadow: 
                    0 8px 12px rgba(0, 0, 0, 0.08),
                    0 25px 30px -5px rgba(251, 191, 36, 0.2),
                    0 15px 15px -5px rgba(251, 191, 36, 0.15),
                    0 0 60px -12px rgba(251, 191, 36, 0.35);
            }
            
            .icon-box {
                box-shadow: 
                    inset 0 2px 4px 0 rgba(0, 0, 0, 0.06),
                    inset 0 1px 2px 0 rgba(0, 0, 0, 0.04);
            }
            
            .program-link {
                transition: all 0.3s ease;
            }
            
            .program-link:hover {
                gap: 12px;
            }
            
            .tag-pill {
                box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
                transition: all 0.2s ease;
            }
            
            .tag-pill:hover {
                transform: translateY(-1px);
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }
       
