,[,;                        
 
 
]] '] ' body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #0000ff;
    color: #f30000;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
}

/* Header */
.main-header {
    background-color: #010106;
    padding: 15px 20px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-width: 120px;
}
.container{
    display: flex;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: rgb(183, 0, 0);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000000;
}

.auth-buttons a {
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.auth-buttons .login-btn {
    background: none;
    color: white;
    border: 1px solid white;
}

.auth-buttons .signup-btn {
    background-color: #0674bd;
    color: white;
    border: none;
}

.auth-buttons a:hover {
    background-color: white;
    color: #0674bd;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #0674bd, #0091ff);
    color: white;
}

.hero-content {
    flex: 1;
    padding: 20px;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-family: Arial;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-btn {
    padding: 15px 25px;
    background-color: white;
    color: #0674bd;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #0674bd;
    color: white;
    border-radius: 0px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Section: About */
.about {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 15px;
}

.feature-card i {
    font-size: 40px;
    color: #0674bd;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0674bd;
}

.feature-card p {
    color: #333;
}

/* Section: Courses */
.courses {
    padding: 40px 20px;
    background: white;
    text-align: center;
}

.courses h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.courses p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.course-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.course-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 300px;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 15px;
}

.course-card h3 {
    color: #0674bd;
    margin-bottom: 10px;
}

.course-card p {
    color: #333;
}

/* Section: Partners */
.partners {
    padding: 40px 20px;
    background-color: #f4f4f9;
    text-align: center;
}

.partners h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logos img {
    height: 50px;
    transition: transform 0.3s ease;
}

.partner-logos img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about {
    flex: 1 1 250px;
}

.footer-about h3 {
    color: #0674bd;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #0674bd;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0674bd;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 20px;
    }

    .features, .course-grid, .partner-logos {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}