/* styles.css */

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

/* -----------------------------Header Section Styles---------------------- */
.header {
    background-color: #ffffff;
    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: 0 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: 8px 12px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
}

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

}


/* -----------------------------------Footer Section Styles------------------------------ */
.footer {
    background-color: #007bb5;
    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;
}

/* -------------------------------Hero Section Styles------------------------------ */
.about-hero {
    background-image: url('bg.png'); /* Replace with your background image or video */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.about-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;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-hero p {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ----------------------------------Mission and Vision Section Styles------------------------ */
.mission-vision {
    background-color: #e0f7fa;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.mission-vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    z-index: 1;
}

.mission-vision h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #007bb5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.content-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission, .vision {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    padding: 30px;
    width: 350px;
    max-width: 100%;
    transition: transform 0.3s, background-color 0.3s;
    color: #007bb5;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
    background-color: #e1eff6;
}

.mission h3, .vision h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #007bb5;
}

.mission p, .vision p {
    font-size: 18px;
    color: #555555;
    line-height: 1.6;
}

/* -----------------------------Join Us Section Styles------------------------- */
.join-us {
    background-color: #007bb5;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.join-button, .partner-button, .support-button {
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.join-button:hover, .partner-button:hover, .support-button:hover {
    background-color: #e55c50;
    transform: scale(1.05);
}

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

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

.support-button {
    background-color: #4caf50;
}

.support-button:hover {
    background-color: #43a047;
}