/*------------------------------ styles.css -------------------------------*/

body {
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f7fa;
}

header {
    background-color: #ffffff;
    font-family: "Outfit", sans-serif;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 20px;
}

.logo img {
    width: 150px;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-menu ul li {
    display: inline;
}

.nav-menu ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    padding: 0px 12px;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.nav-menu ul li a:hover {
    background-color: #E7E9EA;
}


.hero {
    background-image: url('bg1.png'); /* Replace with your background image or video */
    background-size: cover;
    background-position: center;
    font-family: "Outfit", sans-serif;
    color: white;
    text-align: center;
    padding: 100px 70px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 181, 0.7); /* Blue overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #1E5DA0;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #17508C;
}

/*----------------------------------features----------------------------------*/

.features {
    background-color: #ffffff;
    font-family: "Outfit", sans-serif;
    padding: 50px 20px;
    
}

.features h2 {
    text-align: center;
    font-size: 40px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #f0f4f8;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    width: 250px;
    transition: transform 0.3s, background-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: #e1eff6;
}

.feature-card img {
    width: 200px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #007bb5;
}

.feature-card p {
    font-size: 16px;
    color: #555555;
}
/*----------------------------------courses-------------------------------*/

.courses {
    background-color: #f0f4f8;
    font-family: "Outfit", sans-serif;
    padding: 50px 20px;
}

.courses h2 {
    text-align: center;
    font-size: 40px;
}

.course-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 250px;
    transition: transform 0.3s, background-color 0.3s;
}

.course-card:hover {
    transform: translateY(-10px);
    background-color: #e1eff6;
}

.course-card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 150px;
    object-fit: cover;
}

.course-card h3 {
    font-size: 24px;
    margin: 15px 0 10px 0;
    color: #007bb5;
}

.course-card p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
}

.course-button {
    background-color: #1E5DA0;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.course-button:hover {
    background-color: #17508C;
}

/*------------------------------- Call-to-Action Section Styles -----------------------------*/
.cta {
    background-image: url('bg1.png');
    font-family: "Outfit", sans-serif;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #007bb5, #00bfff);
    opacity: 0.8;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e0f7fa;
}

.cta-button,
.video-button {
    background-color: #1E5DA0;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 20px;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    transition: background-color 0.3s;
}

.cta-button:hover,
.video-button:hover {
    background-color: #17508C;
}

.video-button {
    background-color: #fdd835;
}

.video-button:hover {
    background-color: #fbc02d;
}

/* -----------------------------------Footer Section Styles------------------------------ */
.footer {
    background-color: #156F9C;
    font-family: "Outfit", sans-serif;
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-section {
    width: 200px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e0f7fa;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffeb3b;
}

.footer-section p {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffeb3b;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffeb3b;
}

.social-media a img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-media a img:hover {
    transform: scale(1.1);
}

.footer-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 200px;
}

.footer-section form button {
    background-color: #ff6f61;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-section form button:hover {
    background-color: #e55c50;
}

.footer-bottom {
    background-color: #005a8b;
    padding: 20px;
    text-align: center;
    color: #e0f7fa;
}

.footer-bottom p {
    margin: 0;
}
