/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff; /* Example hover color */
}

/* Hero Section Styles */
#hero {
    background-image: url('Copilot_20250630_224156.jpg'); /* Use your background image */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content .tagline {
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.btn {
    display: inline-block;
    background-color: #007bff; /* Example button color */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3; /* Darker hover color */
}

/* Courses Offered Section */
.courses-offered {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.courses-offered h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.courses-offered table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #fff;
}

.courses-offered th,
.courses-offered td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.courses-offered th {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}

.courses-offered tr:nth-child(even) {
    background-color: #f2f2f2;
}

.courses-offered .course-note {
    margin-top: 30px;
    font-size: 16px;
    color: #666;
}

/* Other Sections (Why Choose Us, Who Can Join, About Us, Contact Info) */
section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

section:nth-of-type(even) {
    background-color: #f2f2f2;
}

section h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

section ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

section ul li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #007bff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 18px;
    color: #555;
}

.about-us p,
.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 15px auto;
    color: #555;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;

}
