/* About Page Styles - SEO Optimized */

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--lightbg);
    padding: 1.5rem 7%;
    margin-top: 80px;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breadcrumb-container a {
    color: var(--maincolor);
    font-size: 1.4rem;
    text-decoration: none;
}

.breadcrumb-container a:hover {
    text-decoration: underline;
}

.breadcrumb-container i {
    font-size: 1.2rem;
    color: #999;
}

.breadcrumb-container span {
    font-size: 1.4rem;
    color: #666;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1a5f7a 0%, #2a8b9e 100%);
    padding: 6rem 7%;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
}

.about-hero-content p {
    font-size: 1.8rem;
    opacity: 0.95;
}

/* Main About Section */
.about-section {
    padding: 6rem 7%;
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--maincolor);
    margin: 2rem 0 1.5rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--textcolor);
    margin-bottom: 1.5rem;
}

/* Statistics Section */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--maincolor);
    display: block;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.4rem;
    color: #666;
    margin-top: 0.5rem;
    display: block;
}

/* About Image */
.about-image {
    flex: 1 1 40%;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge span:first-child {
    font-size: 2rem;
    font-weight: 700;
}

.experience-badge span:last-child {
    font-size: 1.2rem;
}

/* Values Section */
.values-section {
    margin: 5rem 0;
    text-align: center;
}

.values-section h2 {
    font-size: 3rem;
    color: var(--maincolor);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    flex: 1 1 200px;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 4rem;
    color: var(--maincolor);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

/* Services Grid */
.about-services {
    margin: 5rem 0;
}

.about-services h2 {
    font-size: 3rem;
    color: var(--maincolor);
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem;
    background: var(--lightbg);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-icon-wrapper {
    flex: 0 0 120px;
}

.service-icon-wrapper img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 2.2rem;
    color: var(--maincolor);
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--textcolor);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    color: var(--secondcolor);
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
    color: var(--thirdcolor);
}

/* Why Choose Us Section */
.about-footer {
    margin: 5rem 0;
}

.about-footer h2 {
    font-size: 3rem;
    color: var(--maincolor);
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.why-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.why-card i {
    font-size: 3rem;
    color: var(--maincolor);
    flex-shrink: 0;
}

.why-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    margin-top: 5rem;
    background: linear-gradient(135deg, #1a5f7a 0%, #2a8b9e 100%);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background: white;
    color: var(--maincolor);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--maincolor);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--secondcolor);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }
    
    .stats-container {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 1 120px;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 70px;
    }
    
    .about-hero {
        padding: 4rem 5%;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1.4rem;
    }
    
    .about-section {
        padding: 4rem 5%;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .stats-container {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -10px;
        right: -10px;
    }
    
    .experience-badge span:first-child {
        font-size: 1.5rem;
    }
    
    .values-section h2,
    .about-services h2,
    .about-footer h2 {
        font-size: 2.5rem;
    }
    
    .service-icon-wrapper {
        flex: 0 0 100px;
    }
    
    .service-icon-wrapper img {
        width: 100px;
        height: 100px;
    }
    
    .service-info h3 {
        font-size: 1.8rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        padding: 3rem 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon-wrapper {
        flex: 0 0 auto;
    }
    
    .why-card {
        flex-direction: column;
        text-align: center;
    }
    
    .why-card i {
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        text-align: center;
    }
}