/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    max-height: 50px;
}

.header h1 {
    font-size: 1.5rem;
    margin: 0;
}

.header p {
    font-size: 0.9rem;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffce00;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

#hero .banner {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#hero h2 {
    font-size: 2rem;
    margin: 20px 0 10px;
}

#hero p {
    font-size: 1rem;
    margin-bottom: 20px;
}

#hero .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ffce00;
    color: #333;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

#hero .btn:hover {
    background: #e0b700;
}

/* Programs Section */
#programs {
    padding: 60px 20px;
    background: #f5f7fa;
    text-align: center;
}

#programs h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e3c72;
}

.program-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.program-list li {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.program-list li:hover {
    transform: translateY(-5px);
}

.program-list i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #6a11cb;
}

/* Features Section */
#features {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    color: #fff;
    text-align: center;
}

#features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.features-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.features-list li:hover {
    transform: translateY(-5px);
}

.features-list i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffce00;
}

/* QR Code Section */
#qr-code {
    padding: 60px 20px;
    background: #f5f7fa;
    text-align: center;
}

#qr-code h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e3c72;
}

.qr-code {
    max-width: 200px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
}

#contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#contact a {
    color: #ffce00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

#contact a:hover {
    color: #fff;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffce00;
}

/* Footer */
footer {
    background: #1e3c72;
    color: #fff;
    text-align: center;
    padding: 20px;
}
