/* About Page Specific Styles */

/* Full width layout */
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Active Navigation Link */
.nav-menu a.active,
.mobile-nav-menu a.active {
    color: #2b6ebc !important;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(
        135deg,
        rgba(43, 110, 188, 0.1) 0%,
        rgba(43, 110, 188, 0.05) 100%
    );
    padding: 100px 0 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    background: #e6eef7 !important;
    color: #2b6ebc !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.about-hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    font-weight: bold;
}

.about-hero-description {
    font-size: 20px;
    color: #fff !important;
    line-height: 1.6;
    margin: 0 0 40px 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat h3 {
    font-size: 36px;
    color: #2b6ebc !important;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.hero-stat p {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
    background: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    background: #d9e5f2 !important;
    color: #2b6ebc !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
}

.story-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #333;
    font-weight: bold;
}

.story-text {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.story-highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.highlight-icon {
    background: #2b6ebc !important;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 20px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.highlight-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quality & Standards Section */
.quality-standards {
    padding: 100px 0;
    background: white;
}

.quality-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    background: #e6eef7 !important;
    color: #2b6ebc !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
}

.quality-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #333;
    font-weight: bold;
}

.quality-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.quality-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    background: #2b6ebc !important;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px auto;
}

.quality-card h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.quality-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #f8f9fa;
}

.choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.choose-badge {
    display: inline-flex;
    align-items: center;
    background: #d9e5f2 !important;
    color: #2b6ebc !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
}

.choose-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #333;
    font-weight: bold;
}

.choose-description {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #555;
}

.check-icon {
    color: #2b6ebc !important;
    font-weight: bold;
    font-size: 20px;
    background: #e6eef7 !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.choose-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team & Leadership Section */
.team-leadership {
    padding: 100px 0;
    background: white;
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    background: #e6eef7 !important;
    color: #2b6ebc !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
}

.team-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #333;
    font-weight: bold;
}

.team-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.leader-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px auto;
    border: 4px solid #2b6ebc;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-image img:hover {
    transform: scale(1.05);
}

.leader-info h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.leader-role {
    font-size: 16px;
    color: #2b6ebc !important;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.leader-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Global Presence Section */
.global-presence {
    padding: 100px 0;
    background: #f8f9fa;
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.global-badge {
    display: inline-flex;
    align-items: center;
    background: #d9e5f2 !important;
    color: #2b6ebc !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
}

.global-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #333;
    font-weight: bold;
}

.global-description {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.presence-stats {
    display: flex;
    gap: 40px;
}

.presence-stat {
    text-align: center;
}

.presence-stat h3 {
    font-size: 32px;
    color: #2b6ebc !important;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.presence-stat p {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.global-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.global-image img:hover {
    transform: scale(1.02);
}

/* Call to Action Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2b6ebc 0%, #245a9e 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    font-weight: bold;
    color: white;
}

.cta-description {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    color: white;
}

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

.btn-cta-primary {
    background: white !important;
    color: #2b6ebc !important;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: #f8f9fa !important;
    color: #2b6ebc !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.btn-cta-secondary {
    background: transparent !important;
    color: white !important;
    border: 3px solid white !important;
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: white !important;
    color: #2b6ebc !important;
    border-color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero-container,
    .container {
        padding: 0 50px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .story-content,
    .choose-content,
    .global-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px 0;
    }

    .about-hero-container,
    .container {
        padding: 0 40px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-description {
        font-size: 18px;
    }

    .about-hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .story-title,
    .quality-title,
    .choose-title,
    .team-title,
    .global-title {
        font-size: 32px;
    }

    .company-story,
    .quality-standards,
    .why-choose-us,
    .team-leadership,
    .global-presence {
        padding: 60px 0;
    }

    .presence-stats {
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .about-hero-container,
    .container {
        padding: 0 25px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .story-title,
    .quality-title,
    .choose-title,
    .team-title,
    .global-title {
        font-size: 28px;
    }

    .quality-card,
    .leader-card {
        padding: 30px 20px;
    }
}
