        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Outfit', sans-serif;
            padding: 0;
            margin: 0;
        }

        .workshop-card {
            transition: all 0.3s ease;
            scroll-snap-align: start;
        }

        .workshop-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .workshops-container {
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -ms-overflow-style: none;
            scrollbar-width: none;
            padding: 1rem 0;
        }

        .workshops-container::-webkit-scrollbar {
            display: none;
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .scroll-indicator {
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .scroll-indicator:hover {
            opacity: 1;
        }

        .date-badge {
            position: absolute;
            top: -12px;
            right: 16px;
            z-index: 10;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .pulse-button {
            animation: pulse 2s infinite;
        }

        .tag-pill {
            transition: all 0.2s ease;
        }

        .tag-pill:hover {
            transform: translateY(-2px);
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .hero-gradient {
            background: linear-gradient(120deg, #1e3a8a 0%, #3b82f6 100%);
        }

        .cta-button {
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.4);
        }

        .skill-pill {
            transition: all 0.2s ease;
        }

        .skill-pill:hover {
            transform: translateY(-2px);
        }

        .program-card {
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .company-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .company-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .feature-card {
            transition: all 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .icon-container {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .count-up {
            font-variant-numeric: tabular-nums;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .delay-100 {
            animation-delay: 0.1s;
        }

        .delay-200 {
            animation-delay: 0.2s;
        }

        .delay-300 {
            animation-delay: 0.3s;
        }

        .stats-gradient {
            background: linear-gradient(120deg, #1e3a8a 0%, #3b82f6 100%);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-active .faq-answer {
            max-height: 500px;
            transition: max-height 0.5s ease-in;
        }

        .faq-active .faq-icon {
            transform: rotate(45deg);
        }

        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }

        .mobile-menu.open {
            max-height: 700px;
            transition: max-height 0.5s ease-in;
        }

        .hamburger-line {
            transition: all 0.3s ease;
        }

        .hamburger.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .nav-scrolled {
            background-color: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .internship-card {
            transition: all 0.3s ease;
        }

        .internship-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .domain-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .hero-pattern {
            background: linear-gradient(120deg, #1e3a8a 0%, #3b82f6 100%);
        }

        .certificate-badge {
            position: relative;
            overflow: hidden;
        }

        .certificate-badge::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .certificate-badge::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .contact-card {
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        input:focus,
        textarea:focus {
            outline: none;
            ring: 2px;
            ring-color: #3b82f6;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes rotate-reverse {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(-360deg);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .gear-1 {
            animation: rotate 15s linear infinite;
        }

        .gear-2 {
            animation: rotate-reverse 12s linear infinite;
        }

        .floating-icon {
            animation: float 4s ease-in-out infinite;
        }

        .delay-1 {
            animation-delay: 0.5s;
        }

        .delay-2 {
            animation-delay: 1s;
        }

        .delay-3 {
            animation-delay: 1.5s;
        }

        .delay-4 {
            animation-delay: 2s;
        }

        .icon-hover {
            transition: all 0.3s ease;
        }

        .icon-hover:hover {
            transform: scale(1.2);
        }

        .workshop-card {
            transition: all 0.3s ease;
        }

        .workshop-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .category-filter {
            transition: all 0.2s ease;
        }

        .category-filter.active {
            background-color: #1e40af;
            color: white;
        }

        .countdown-timer {
            font-variant-numeric: tabular-nums;
        }

        .hero-pattern {
            background: linear-gradient(120deg, #1e3a8a 0%, #3b82f6 100%);
        }

        .tab-button {
            transition: all 0.2s ease;
        }

        .tab-button.active {
            background-color: hsl(45, 100%, 50%);
            color: white;
        }

        .register-btn {
            transition: all 0.3s ease;
        }

        .register-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
        }

        .testimonial-card {
            transition: all 0.3s ease;
            flex: 0 0 auto;
            scroll-snap-align: start;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonials-container {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -ms-overflow-style: none;
            scrollbar-width: none;
            padding: 1rem 0;
        }

        .testimonials-container::-webkit-scrollbar {
            display: none;
        }

        .carousel-nav {
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            color: white;
        }

        .carousel-indicator {
            transition: all 0.3s ease;
        }

        .carousel-indicator.active {
            background-color: hsl(45, 100%, 50%);
            transform: scale(1.2);
        }

        .blog-card {
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .category-filter {
            transition: all 0.2s ease;
        }

        .category-filter.active {
            background-color: #1e40af;
            color: white;
        }

        .read-more {
            transition: all 0.3s ease;
        }

        .read-more:hover {
            letter-spacing: 0.5px;
        }

        .featured-blog {
            background: linear-gradient(120deg, #FFD700 0%, #FFA500 100%);
        }

        .tag-pill {
            transition: all 0.2s ease;
        }

        .tag-pill:hover {
            transform: translateY(-2px);
        }

        .nav-hover:hover {
            color: hsl(45 100% 50%);
        }

        .custom-select option:checked {
            background-color: #FFD700;
            /* Golden highlight */
            color: #000;
            /* Text color */
        }

        .custom-select option:hover {
            background-color: #FFD700;
            /* Orange hover */
            color: #fff;
        }

        .roadmap-container {
            position: relative;
        }

        .roadmap-path {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            background: linear-gradient(to bottom, #FFD700, #F5E9C6, #FFD700);
            z-index: 0;
        }

        .roadmap-node {
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .roadmap-node:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px -5px rgba(255, 215, 0, 0.4);
        }

        .node-connector {
            flex: 1;
            height: 3px;
            background: linear-gradient(to right, #FFD700, #F5E9C6);
            margin: 0 20px;
            z-index: 1;
        }

        .roadmap-step {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 80px;
            /* equal spacing */
        }

        .roadmap-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .roadmap-path {
                left: 30px;
            }

            .roadmap-step {
                flex-direction: column !important;
                align-items: flex-start;
                margin-left: 50px;
            }

            .node-connector {
                display: none;
            }
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .delay-200 {
            animation-delay: 0.2s;
        }

        .delay-400 {
            animation-delay: 0.4s;
        }

        .delay-600 {
            animation-delay: 0.6s;
        }

        @keyframes bounce-mobile {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-17px);
            }

            75% {
                transform: translateY(17px);
            }
        }

        @keyframes slide-desktop {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(20px);
            }
        }

        .animate-bounce-mobile {
            animation: bounce-mobile 1.5s infinite ease-in-out;
        }

        @media (min-width: 768px) {
            .animate-slide-desktop {
                animation: slide-desktop 1.5s infinite ease-in-out;
            }
        }

        /* Ball movement */
        @keyframes bounce-mobile {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-17px);
            }

            75% {
                transform: translateY(5px);
            }
        }

        @keyframes slide-desktop {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(20px);
            }
        }

        .animate-bounce-mobile {
            animation: bounce-mobile 1.5s infinite ease-in-out;
        }

        @media (min-width: 768px) {
            .animate-slide-desktop {
                animation: slide-desktop 1.5s infinite ease-in-out;
            }
        }

        /* Line bending effect */
        @keyframes bend {

            0%,
            100% {
                d: path("M0 20 Q300 20 600 20 T1200 20");
            }

            50% {
                d: path("M0 20 Q300 40 600 20 T1200 20");
            }
        }

        .animate-bend {
            animation: bend 2s ease-in-out infinite;
        }

        @keyframes bend-vertical {

            0%,
            100% {
                d: path("M20 0 Q20 300 20 600 T20 1000");
            }

            50% {
                d: path("M20 0 Q40 300 20 600 T20 1000");
            }
        }

        .animate-bend-vertical {
            animation: bend-vertical 2s ease-in-out infinite;
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .staggered-animation>div {
            opacity: 0;
        }

        .delay-1 {
            animation-delay: 0.1s;
        }

        .delay-2 {
            animation-delay: 0.2s;
        }

        .delay-3 {
            animation-delay: 0.3s;
        }

        .delay-4 {
            animation-delay: 0.4s;
        }

        .delay-5 {
            animation-delay: 0.5s;
        }

        .founder-img-container {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
        }

        .founder-img-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
            z-index: 1;
        }

        .quote-mark {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 5rem;
            color: rgba(59, 130, 246, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .luxury-border {
            position: relative;
        }

        .luxury-border:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #FFD700, #F5E9C6);
            transition: width 0.3s ease;
        }

        .luxury-border:hover:after {
            width: 100%;
        }

        .course-hero {
            background: linear-gradient(135deg, #141414 0%, #080808 100%);
            position: relative;
            overflow: hidden;
        }

        .course-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(245, 233, 198, 0.03) 0%, transparent 20%);
            pointer-events: none;
        }


        .sticky-sidebar {
            position: sticky;
            top: 120px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.1);
        }

        .enroll-button {
            background: linear-gradient(135deg, #FFD700 0%, #E5BF00 100%);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .enroll-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }

        .enroll-button:hover {
            background: linear-gradient(135deg, #E5BF00 0%, #FFD700 100%);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px -5px rgba(255, 215, 0, 0.5);
        }

        .enroll-button:hover:before {
            left: 100%;
        }

        .include-item {
            transition: all 0.3s ease;
            position: relative;
            padding-left: 10px;
        }

        .include-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, #FFD700, #F5E9C6);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .include-item:hover {
            transform: translateX(8px);
        }

        .include-item:hover:before {
            height: 70%;
        }

        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .golden-glow {
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .premium-card {
            background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
            border: 1px solid rgba(255, 215, 0, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .premium-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
        }

        .gold-text-gradient {
            background: linear-gradient(135deg, #FFD700 0%, #F5E9C6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .decoration-element {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }


        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #FFD700, #E5BF00);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to bottom, #E5BF00, #CCAC00);
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: block;
            animation: fadeIn 0.5s ease-in-out;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content.show {
            max-height: 500px;
            display: block;
        }

        
        .carousel-container {
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
        }
        
        .carousel-container::-webkit-scrollbar {
            display: none;
        }
        
        .carousel {
            display: flex;
            gap: 16px;
        }
        
        .carousel-item {
            flex: 0 0 auto;
            width: 300px;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .year-section {
            margin-bottom: 48px;
        }
        
        .year-title {
            position: relative;
            display: inline-block;
            margin-bottom: 24px;
        }
        
        .year-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }

        