/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: #000066; /* Navy blue */
    padding: 10px 0;
    color: #fff;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.top-bar-contact i {
    font-size: 14px;
    color: #cc0000; /* Red */
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: #fff;
}

.top-bar-social a:hover {
    color: #cc0000; /* Red */
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust as needed */
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    transition: color 0.3s;
    color: #000066; /* Navy blue */
}

.nav-link:hover, .nav-link.active {
    color: #cc0000; /* Red */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #cc0000; /* Red */
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000066; /* Navy blue */
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 102, 0.8), rgba(0, 0, 102, 0.8)), url('../images/about-banner.jpg') no-repeat center center/cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: #cc0000; /* Red */
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
    position: relative;
    color: #000066; /* Navy blue */
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #cc0000; /* Red */
    margin: 15px auto 0;
}

/* About Section */
.about {
    background-color: #f5f7fa;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #000066; /* Navy blue */
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    color: #000066; /* Navy blue */
}

.about-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #cc0000; /* Red */
    margin: 15px 0 0;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #cc0000; /* Red */
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: #000066; /* Navy blue */
    font-weight: 600;
}

/* Mission Vision Section */
.mission-vision {
    background-color: #fff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-vision-card {
    background-color: #f5f7fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-bottom: 3px solid #000066; /* Navy blue */
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid #cc0000; /* Red */
}

.card-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 0, 102, 0.1); /* Light navy blue */
    border-radius: 50%;
    font-size: 28px;
    color: #cc0000; /* Red */
}

.mission-vision-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000066; /* Navy blue */
}

.mission-vision-card p {
    color: #555;
}

/* Team Section */
.team {
    background-color: #f5f7fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #000066; /* Navy blue */
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-top: 3px solid #cc0000; /* Red */
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #000066; /* Navy blue */
}

.member-position {
    color: #cc0000; /* Red */
    font-weight: 600;
    margin-bottom: 10px;
}

.member-bio {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000066; /* Navy blue */
    transition: all 0.3s;
}

.member-social a:hover {
    background-color: #cc0000; /* Red */
    color: #fff;
}

/* History Timeline */
.history {
    background-color: #fff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: #cc0000; /* Red */
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
    padding-right: 40px;
    padding-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 40px;
    padding-right: 0;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 0;
    right: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #cc0000; /* Red */
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.2); /* Light red */
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-content h3 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #000066; /* Navy blue */
}

.timeline-content p {
    color: #555;
}

/* Partners Section */
.partners {
    background-color: #f5f7fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100%;
    border: 1px solid #eee;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #cc0000; /* Red */
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 102, 0.9), rgba(0, 0, 102, 0.9)), url('images/cta-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #cc0000; /* Red */
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #990000; /* Darker red */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(rgba(26, 43, 94, 0.9), rgba(26, 43, 94, 0.9)), url('images/stats-bg.jpg'); /* Navy blue */
    color: #fff;
    padding-top: 70px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-widget h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #cc0000; /* Red */
    margin: 10px 0 0;
}

.footer-about p {
    color: #bbb;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #fff;
}

.footer-social a:hover {
    background-color: #cc0000; /* Red */
    color: #fff;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bbb;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #cc0000; /* Red */
}

.footer-links a i {
    font-size: 12px;
    color: #cc0000; /* Red */
}

.footer-subscribe p {
    color: #bbb;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    margin-bottom: 20px;
}

.subscribe-input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.subscribe-btn {
    background-color: #cc0000; /* Red */
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .page-banner {
        padding: 60px 0;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .timeline::before {
        left: 16px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 8px;
        right: auto;
    }
    
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}