:root {
    --primary-color: #00A4EF;  /* Microsoft Blue */
    --secondary-color: #7FBA00; /* Microsoft Green */
    --accent-color: #F25022;   /* Microsoft Red */
    --accent-secondary: #FFB900; /* Microsoft Yellow */
    --background-color: #f8f9fa;
    --card-background: #ffffff;
    --text-color: #2F2F2F;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-primary: var(--primary-color);
    --gradient-secondary: #0078D4; /* Darker Microsoft Blue */
    --nav-gradient-1: var(--primary-color);
    --nav-gradient-2: #0078D4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Modern Header */
.neo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.neo-header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.logo-img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
}

/* Modern Navigation */
.neo-nav {
    position: relative;
}

.neo-nav ul {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.neo-nav .neo-button {
    position: relative;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    overflow: hidden;
}

/* Hover line effect */
.neo-nav .neo-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.neo-nav .neo-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Active state */
.neo-nav .neo-button.active {
    color: var(--primary-color);
}

.neo-nav .neo-button.active::before {
    transform: scaleX(1);
    background: var(--primary-color);
}

/* Hover background effect */
.neo-nav .neo-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    padding-bottom: 120%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.neo-nav .neo-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Get Started Button */
.neo-nav .neo-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-secondary));
    padding: 10px 24px;
    border-radius: 30px;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(0, 164, 239, 0.3);
    font-weight: 600;
}

.neo-nav .neo-button.primary::before {
    display: none;
}

.neo-nav .neo-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 164, 239, 0.4);
}

/* Mobile Menu Button */
.menu-button {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .neo-header {
        padding: 12px 20px;
    }

    .neo-header.scrolled {
        padding: 10px 20px;
    }

    .logo-img {
        height: 45px;
    }

    .menu-button {
        display: block;
    }

    .menu-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .neo-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 80px 40px;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .neo-nav.active {
        transform: translateX(0);
    }

    .neo-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .neo-nav .neo-button {
        font-size: 18px;
        padding: 12px 0;
        width: 100%;
        text-align: left;
    }

    .neo-nav .neo-button.primary {
        margin: 10px 0 0 0;
        text-align: center;
    }
}

/* Animation for mobile menu items */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.neo-nav.active .neo-button {
    animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.neo-nav.active .neo-button:nth-child(1) { animation-delay: 0.1s; }
.neo-nav.active .neo-button:nth-child(2) { animation-delay: 0.2s; }
.neo-nav.active .neo-button:nth-child(3) { animation-delay: 0.3s; }
.neo-nav.active .neo-button:nth-child(4) { animation-delay: 0.4s; }
.neo-nav.active .neo-button:nth-child(5) { animation-delay: 0.5s; }
.neo-nav.active .neo-button:nth-child(6) { animation-delay: 0.6s; }
.neo-nav.active .neo-button:nth-child(7) { animation-delay: 0.7s; }

/* Common section styles */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    background: none;  /* Remove background image */
}

.neo-card {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-main {
    padding-right: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 164, 239, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 164, 239, 0.2);
}

.hero-heading {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 24px;
}

.hero-heading .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-secondary));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 164, 239, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 164, 239, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.stat-icon i {
    color: white;
    font-size: 24px;
}

.stat-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.stat-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    flex-grow: 1;
}

.cert-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 164, 239, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
    border: 1px solid rgba(0, 164, 239, 0.2);
}

.achievement-bar {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.achievement {
    text-align: center;
    flex: 1;
}

.achievement-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
}

.achievement-divider {
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-main {
        padding-right: 0;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section .neo-card {
        padding: 100px 20px 40px;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .achievement-bar {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .achievement-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }
}

/* Features Section */
.features {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    background-image: url('images/2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.features .container {
    width: 100%;
    padding: 40px;
}

/* Features Grid */
.neo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    height: auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 20px;
    margin: 0 auto;
    max-width: 1400px;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
    height: auto;
    padding: 20px;
}

/* Card Styles */
.neo-card {
    background: var(--card-background);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.neo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nav-gradient-1), var(--nav-gradient-2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.neo-card:hover::before {
    opacity: 1;
}

/* Card Icon */
.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    z-index: -1;
}

.card-icon i {
    font-size: 26px;
    color: white;
}

/* Card Typography */
.neo-card h4 {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.neo-card h3 {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.neo-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Card Button */
.neo-card .neo-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 15px;
    color: var(--primary-color);
    background: rgba(0, 120, 212, 0.05);
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.neo-card .neo-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.neo-card .neo-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.neo-card .neo-button:hover i {
    transform: translateX(4px);
}

/* Footer */
.neo-footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: var(--text-color);
    font-size: 14px;
}

/* Move other sections below hero */
main {
    position: relative;
}

/* Program Overview Section */
.program-overview {
    background-image: url('images/1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 0;
}

.program-overview .container {
    width: 100%;
    padding: 40px;
}

.overview-header {
    text-align: center;
    margin-bottom: 40px;
}

.overview-header h2 {
    color: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.overview-header h3 {
    font-size: 36px;
    color: var(--text-color);
    font-weight: 600;
}

.overview-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--nav-gradient-1), var(--nav-gradient-2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.overview-card:hover::before {
    opacity: 1;
}

.overview-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transform: rotate(-5deg);
}

.overview-card .card-icon i {
    font-size: 28px;
    color: white;
    transform: rotate(5deg);
}

.overview-card h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.overview-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Scroll Navigation */
.scroll-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

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

.scroll-nav-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-nav-dot:hover::after {
    opacity: 1;
}

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

/* Responsive adjustments */
@media (max-width: 1200px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1199px) {
    .neo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 991px) {
    .neo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .neo-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    section {
        min-height: 100vh;
        height: auto;
    }

    .hero-section .neo-card,
    .overview-grid,
    .neo-grid {
        height: auto;
        min-height: calc(100vh - 100px);
    }

    .program-overview .container,
    .features .container {
        padding: 20px;
    }

    .scroll-nav {
        display: none;
    }

    .neo-header {
        padding: 15px 20px;
    }

    .neo-header.scrolled {
        padding: 12px 20px;
    }

    .logo-img {
        height: 40px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .neo-nav .neo-button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .neo-grid,
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .neo-card {
        padding: 25px;
        gap: 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .card-icon i {
        font-size: 20px;
    }

    .neo-card h4 {
        font-size: 12px;
    }

    .neo-card h3 {
        font-size: 20px;
    }

    .neo-card p {
        font-size: 14px;
    }

    .neo-card .neo-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-title h2 {
        font-size: 32px;
    }

    .gradient-text,
    .gradient-text-secondary {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* Custom Scrollbar */
.neo-grid::-webkit-scrollbar {
    width: 6px;
}

.neo-grid::-webkit-scrollbar-track {
    background: transparent;
}

.neo-grid::-webkit-scrollbar-thumb {
    background-color: rgba(0, 120, 212, 0.2);
    border-radius: 3px;
}

.neo-grid::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 120, 212, 0.4);
}

/* Enrollment Section */
.enroll-section {
    background-image: url('images/3.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.enroll-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-header {
        text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h3 {
    font-size: 36px;
    color: var(--text-color);
    font-weight: 600;
}

.enroll-steps {
    display: flex;
        flex-direction: column;
    gap: 30px;
    position: relative;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    z-index: -1;
}

.step-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.step-content {
    flex-grow: 1;
}

.step-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.enrollment-cta {
    text-align: center;
        margin-top: 20px;
    }

.enrollment-cta .neo-button.primary {
    font-size: 18px;
    padding: 15px 40px;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-secondary));
    border: none;
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(71, 118, 230, 0.3);
    transition: all 0.3s ease;
}

.enrollment-cta .neo-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(71, 118, 230, 0.4);
}

.enrollment-cta .neo-button.primary i {
    font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .enroll-content {
        padding: 30px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h3 {
        font-size: 28px;
    }

    .step-card {
        padding: 20px;
        gap: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 12px;
    }

    .step-description {
        font-size: 15px;
    }

    .enrollment-cta .neo-button.primary {
        font-size: 16px;
        padding: 12px 30px;
    }
}

/* Exam Section */
.exam-section {
    background-image: url('images/3.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.exam-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-container {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-header i {
    font-size: 24px;
    color: var(--primary-color);
}

.policy-header h4 {
    font-size: 20px;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.policy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.policy-card {
    background: rgba(71, 118, 230, 0.03);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 118, 230, 0.1);
}

.policy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: rgba(71, 118, 230, 0.05);
}

.policy-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-icon i {
    font-size: 20px;
    color: white;
}

.policy-text {
    flex-grow: 1;
}

.policy-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.policy-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .exam-content {
        padding: 30px 15px;
    }

    .policy-container {
        padding: 25px;
        border-radius: 20px;
    }

    .policy-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .policy-header i {
        font-size: 20px;
    }

    .policy-header h4 {
        font-size: 18px;
    }

    .policy-cards {
        gap: 15px;
    }

    .policy-card {
        padding: 20px;
        gap: 15px;
    }

    .policy-icon {
        width: 40px;
        height: 40px;
    }

    .policy-icon i {
        font-size: 16px;
    }

    .policy-label {
        font-size: 15px;
    }

    .policy-text p {
        font-size: 14px;
    }
}

/* FAQ Section */
.faq-section {
    background-image: url('images/hero.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-container {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(71, 118, 230, 0.3);
}

.faq-question {
    padding: 20px 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    background: rgba(71, 118, 230, 0.02);
}

.faq-question h4 {
    margin: 0;
    font-size: 17px;
    color: var(--text-color);
    font-weight: 500;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    background: rgba(71, 118, 230, 0.02);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    padding: 20px 0;
}

.faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Active state */
.faq-item.active {
    border-color: rgba(71, 118, 230, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question {
    background: rgba(71, 118, 230, 0.05);
}

.faq-item.active .faq-question h4 {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Support link */
.support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-content {
        padding: 30px 15px;
    }

    .faq-container {
        padding: 25px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }
}

/* Learning Paths Section */
.learning-paths-section {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.02), rgba(142, 84, 233, 0.05));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.learning-paths-section .container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.learning-paths-section .section-header {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.1));
    padding: 40px 0;
    margin: 0;
    text-align: center;
    border-bottom: 1px solid rgba(71, 118, 230, 0.1);
    width: 100%;
}

.learning-paths-section .section-header h2 {
    color: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.learning-paths-section .section-header h3 {
    font-size: 36px;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

.learning-paths-content {
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: white;
}

.learning-paths-frame {
    width: 100vw;
    min-height: calc(100vh - 200px);
    height: calc(100vh - 200px);
    border: none;
    box-shadow: none;
    background: transparent;
    margin: 0;
    padding: 0;
    position: relative;
    left: 0;
}

/* Decorative Elements */
.learning-paths-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(71, 118, 230, 0.2), transparent);
}

.learning-paths-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(71, 118, 230, 0.2), transparent);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .learning-paths-section {
        padding: 0;
    }

    .learning-paths-section .section-header {
        padding: 30px 0;
    }

    .learning-paths-section .section-header h2 {
        font-size: 16px;
    }

    .learning-paths-section .section-header h3 {
        font-size: 28px;
    }

    .learning-paths-frame {
        min-height: calc(100vh - 160px);
        height: calc(100vh - 160px);
        left: 0;
    }
}

/* Select Dropdown */
.neo-select {
    display: block;
    width: 300px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    padding: 12px 20px;
    border-radius: 15px;
    border: none;
    background: linear-gradient(145deg, #1e293b, #273449);
    color: #f0f4f8;
    box-shadow: inset 5px 5px 10px #1a2334,
                inset -5px -5px 10px #32405e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.neo-select:hover,
.neo-select:focus {
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    outline: none;
}

.neo-select option {
    background: #1e293b;
    color: #f0f4f8;
    padding: 10px;
}

/* Technology Container */
.tech-container {
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tech-name {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    letter-spacing: 1.2px;
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}

/* Learning Path */
.learning-path {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px;
}

/* Step Cards */
.step {
    position: relative;
    min-width: 180px;
    padding: 25px 20px;
    border-radius: 20px;
    background: var(--card-background);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    user-select: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step .badge {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.step .title {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* Step Colors */
.step[data-level="beginner"] {
    background: linear-gradient(135deg, #6EE7B7, #34D399);
    color: #064E3B;
}

.step[data-level="intermediate"] {
    background: linear-gradient(135deg, #60A5FA, #3B82F6);
    color: #1E3A8A;
}

.step[data-level="advanced"] {
    background: linear-gradient(135deg, #FBBF24, #D97706);
    color: #78350F;
}

.step[data-level="expert"] {
    background: linear-gradient(135deg, #F87171, #DC2626);
    color: #7F1D1D;
}

.step[data-level="beginner"] .badge,
.step[data-level="beginner"] .title,
.step[data-level="intermediate"] .badge,
.step[data-level="intermediate"] .title,
.step[data-level="advanced"] .badge,
.step[data-level="advanced"] .title,
.step[data-level="expert"] .badge,
.step[data-level="expert"] .title {
    color: inherit;
}

/* Step Hover & Active States */
.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step.selected {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Connector Line */
.connector {
    flex-shrink: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Details Panel */
#details-panel {
    background: var(--card-background);
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

#details-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

#details-panel h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

#details-panel p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .learning-paths-content {
        padding: 20px 15px;
    }

    .neo-select {
        width: 100%;
        font-size: 1rem;
        padding: 10px 15px;
    }

    .tech-name {
        font-size: 1.5rem;
    }

    .learning-path {
        flex-direction: column;
        gap: 20px;
    }

    .step {
        width: 100%;
        min-width: unset;
    }

    .connector {
        display: none;
    }

    #details-panel {
        padding: 20px;
        margin-top: 30px;
    }

    #details-panel h2 {
        font-size: 1.3rem;
    }

    #details-panel p {
        font-size: 1rem;
    }
}

/* Navigation Active States */
.neo-nav .neo-button.active {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.scroll-nav-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 120, 212, 0.4);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust based on header height */
}

/* Enhanced Navigation Transitions */
.neo-nav .neo-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-nav-dot {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section Transitions */
section {
    transition: opacity 0.3s ease;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    color: var(--primary-color);
    font-size: 24px;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.scroll-arrow:hover i {
    transform: translateY(5px);
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
} 