:root {
    --primary: #2563eb;
    --secondary: #1e40af;
    --accent: #3b82f6;
    --background: #0f172a;
    --text: #f8fafc;
    --card-bg: rgba(30, 41, 59, 0.7);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.stars {
    background: #000 url('img/stars.png') repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 0;
    animation: animateStars 200s linear infinite;
}

@keyframes animateStars {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 1000px;
    }
}

/* Navbar */
.navbar {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    width: 30px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .nav-logo-img {
        width: 35px;
        height: 35px;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Profile Section */
.profile-section {
    padding: 4rem 1rem;
}

.profile-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--accent);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Programs Section */
.programs-section {
    padding: 4rem 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(120deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.programs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.program-icon-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.program-card:hover .program-icon-img {
    transform: scale(1.1);
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}

/* Skills Section */
.skills-section {
    padding: 4rem 1rem;
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
}

.skill-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.skill-level {
    margin-top: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 5px;
    transition: width 1s ease-in-out;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 4rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-social a {
    color: var(--text);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Education Timeline */
.education-timeline {
    position: relative;
    padding-left: 2.5rem;
    margin-top: 2rem;
}

.education-item {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
}

.education-item:last-child {
    margin-bottom: 0;
}

.education-item i {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.education-info h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.education-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.education-detail {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* Responsive Styles */
/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    /* Profile Section */
    .profile-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .profile-image img {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Programs Section */
    .programs-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .program-card {
        margin-bottom: 1.5rem;
    }

    /* Skills Section */
    .skills-container {
        padding: 0 1rem;
    }

    .skill-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    /* Education Timeline */
    .education-timeline {
        padding-left: 1.5rem;
    }

    .education-item {
        margin-bottom: 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .header-content {
        padding: 1.5rem;
    }

    .logo-container {
        width: 150px;
        height: 150px;
    }

    .profile-bio {
        font-size: 0.9rem;
    }

    .social-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .program-card {
        padding: 1.5rem;
    }

    .skill-card {
        padding: 1rem;
    }
}
.mt-4 {
    margin-top: 2rem;
}

.education-timeline .fas.fa-laptop-code {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.7rem;
}

.education-timeline .education-item:hover .fas.fa-laptop-code {
    transform: rotate(360deg);
    transition: transform 0.5s ease;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--text);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}

/* Skills Section */
.skills-section {
    padding: 4rem 1rem;
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
}

.skill-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.skill-level {
    margin-top: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 5px;
    transition: width 1s ease-in-out;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 4rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-social a {
    color: var(--text);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
}
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    pointer-events: none;
}
}
.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;