/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    background-color: #f8f9fa;
}

/* Navigation Bar - Exact same as index.html */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-logo h2 {
    color: #1A2E40;
    font-size: 26px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    padding: 8px 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link:hover {
    background: #f5f5f5;
}

.nav-link.active {
    background: #4A90E2;
    color: white !important;
}

.crm-link {
    background: #4A90E2;
    color: white !important;
}

.crm-link:hover {
    background: #357ABD !important;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:visited,
.nav-logo a:active,
.nav-logo a:hover {
    color: inherit;
    background: none;
    text-decoration: none;
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #6B6B6B;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 35vh;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* About Page Specific Styles */



/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: #fff;
}

.mission-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-content {
    flex: 1;
}

.mission-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.mission-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 600px;
}

.signature {
    margin-top: 40px;
}

.signature img {
    height: 60px;
    margin-bottom: 10px;
}

.signature-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 1rem;
    color: #666;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-container,
    .mission-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-hero-image,
    .mission-image {
        order: -1;
        width: 100%;
    }
    
    .about-hero-stats {
        justify-content: center;
    }
    
    .mission-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .about-hero {
        padding: 80px 0 40px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .member-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}


/* About Intro Section */
.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-heading {
    font-size: 3.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0 auto 10px;
    max-width: 800px;
}


/* Image Gallery Styles */
.image-gallery {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
}

.gallery-item {
    flex: 1;
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Responsive adjustments for the gallery */
@media (max-width: 1024px) {
    .image-gallery {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .image-gallery {
        flex-direction: column;
        gap: 30px;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:visited,
.nav-logo a:active,
.nav-logo a:hover {
    color: inherit;
    background: none;
    text-decoration: none;
}