/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.header-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: #007BFF;
}

.custom-link {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.5em; /* Double the size of the current font */
}

.custom-link:hover {
    color: #f0f0f0; /* Optional: Change color on hover */
    text-decoration: none; /* Optional: Add underline on hover */
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444; /* Darker background for dropdown */
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #007BFF; /* Blue background on hover */
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* AI Developer Bootcamp Section */
.ai-bootcamp {
    background-color: #007BFF;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.ai-bootcamp h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.ai-bootcamp-content {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.ai-bootcamp p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Course Overview Section */
.course-overview {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.course-overview h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.overview-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.overview-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%;
    text-align: left;
}

.overview-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #007BFF;
}

.overview-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.overview-card li {
    margin-bottom: 10px;
}

/* Topics Covered Section */
.topics-covered {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.topics-covered h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.topics-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.topic-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%;
    text-align: left;
}

.topic-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #007BFF;
}

.topic-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.topic-card li {
    margin-bottom: 10px;
}

/* Program Details Section */
.program-details {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.program-details h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.details-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.details-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%;
    text-align: left;
}

.details-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #007BFF;
}

.details-card p {
    font-size: 1em;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.faq h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.faq-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.faq-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%;
    text-align: left;
}

.faq-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #007BFF;
}

.faq-card p {
    font-size: 1em;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    background-color: #007BFF;
    color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 100px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #fff;
    color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

footer h2 {
    margin: 0;
    font-size: 1.5em;
}

footer nav {
    margin-top: 10px;
}

footer nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

footer nav a:hover {
    color: #007BFF;
}