/* About Page Specific Styles */

.about-page {
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.about-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 82, 255, 0.95) 0%, rgba(20, 184, 255, 0.95) 100%);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mission-statement {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Experience Section */
.experience-section {
    padding: 5rem 2rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-card.highlight {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.experience-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.experience-card p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1rem;
}

/* Expertise Section */
.expertise-section {
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
}

.expertise-section h2,
.why-choose-section h2,
.cta-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 3rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.expertise-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.expertise-card p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 2rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.reason-item {
    text-align: center;
}

.reason-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.reason-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reason-item p {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(30, 82, 255, 0.9) 0%, rgba(20, 184, 255, 0.9) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--bg1);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-contact {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-contact a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
}

footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .mission-content h2 {
        font-size: 2rem;
    }

    .mission-statement {
        font-size: 1.125rem;
    }

    .experience-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-section h2,
    .why-choose-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 4rem 1rem 3rem;
    }

    .about-hero h1 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }

    .experience-number {
        font-size: 3rem;
    }
}
