/* General */
body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    background: #0d0d0d;
    color: #00ff9d;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Fira Code', monospace;
}

#swiftnav a {
    color: #00eaff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ff0066;
}

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

/* Header */
header {
    background: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    /* z-index: 1000; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

header h1 {
    font-size: 2.5rem;
    color: #ff0066;
}

#swiftnav {
    margin-top: 10px;
}

#swiftnav a {
    margin: 0 15px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
}

.hero h2 {
    font-size: 2.2rem;
    color: #00ff9d;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.hero button {
    background: #00eaff;
    color: #0d0d0d;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 20px;
}

.hero button:hover {
    transform: scale(1.1);
}

/* About Section */
.about {
    background: #121212;
    padding: 50px 20px;
}

.about h2 {
    text-align: center;
    color: #00eaff;
    margin-bottom: 30px;
}

.about p {
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

/* Courses */
.courses {
    padding: 50px 20px;
}

.courses h2 {
    text-align: center;
    color: #ff0066;
    margin-bottom: 30px;
}

.course-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.course {
    background: #1a1a1a;
    border: 2px solid #00ff9d;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.course:hover {
    transform: scale(1.05);
}

.course h3 {
    color: #00eaff;
}

.course p {
    color: #ffffff;
}

/* Apps */
.apps {
    padding: 50px 20px;
    background-color: black;
}

.apps h2 {
    text-align: center;
    color: #e3dfea;
    margin-bottom: 30px;
}

.apps-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.app {
    background: #1a1a1a;
    border: 2px solid #00ff9d;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.app:hover {
    transform: scale(1.05);
}

.app h3 {
    color: #00eaff;
}

.app p {
    color: #ffffff;
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
}
