/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background-color: #fff;
    color: #333;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-image: url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 0.5rem;
}

.btn-primary {
    background-color: #ffc107;
    color: #333;
}

.btn-secondary {
    border: 2px solid #ffc107;
    color: #ffc107;
}

/* Stats Counter */
.stats-counter {
    padding: 4rem 0;
    background-color: #f4f4f4;
    text-align: center;
}

.stats-counter .container {
    display: flex;
    justify-content: space-around;
}

.stat h3 {
    font-size: 2.5rem;
    margin: 0;
}

/* Features */
.features {
    padding: 4rem 0;
    text-align: center;
}

.features .container {
    display: flex;
    justify-content: space-around;
}

.feature-card {
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 30%;
}

.feature-card i {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-image {
    flex: 1;
    margin-right: 2rem;
}

.about-image img {
    max-width: 100%;
    border-radius: 5px;
}

.about-text {
    flex: 1;
}


/* About Page */

.about-hero {
    background-image: url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    height: 50vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.about-content-section {
    padding: 4rem 0;
}

.about-section {
    margin-bottom: 3rem;
}

.leadership-cards {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.leadership-card img {
    border-radius: 50%;
    margin-bottom: 1rem;
}


/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.contact-info, .map-placeholder, .quick-links, .social-media {
    width: 22%;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links a {
    color: #fff;
    text-decoration: none;
}

.social-media a {
    color: #fff;
    margin-right: 1rem;
    font-size: 1.5rem;
}