/* ============================================
   About Us Page Styles
   ============================================ */

/* Page Banner */
.about-page-banner {
    position: relative;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    padding: 10px 0px 10px 0px;
    overflow: hidden;
}

.about-page-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.about-page-banner .container {
    position: relative;
    z-index: 2;
}

.about-page-banner .banner-content {
    text-align: center;
    color: #fff;
}

.about-page-banner .banner-icon {
    font-size: 70px;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.about-page-banner h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-page-banner .banner-subtitle {
    font-size: 22px;
    opacity: 0.95;
    font-weight: 400;
}

.about-page-banner .banner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

/* Company Overview Section */
.company-overview-section {
    padding: 80px 0;
    background: #fff;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    z-index: 1;
}

.overview-content {
    padding-left: 30px;
}

.section-label {
    display: inline-block;
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.overview-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.overview-content strong {
    color: #10b981;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.stat-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.stat-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin-bottom: 25px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background: #fff;
}

.services-content {
    margin-bottom: 50px;
}

.services-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.indexing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.index-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.index-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.index-badge i {
    font-size: 16px;
}

.service-card {
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    background: #fff;
    border-color: #10b981;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

/* Core Values Section */
.core-values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.value-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #fff;
    transform: rotateY(360deg);
}

.value-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Call to Action Section */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: gold;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    color: #fff;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: #fff;
    color: #10b981;
}

.btn-cta-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #10b981;
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-page-banner {
        padding: 100px 0 80px;
    }

    .about-page-banner h1 {
        font-size: 42px;
    }

    .about-page-banner .banner-icon {
        font-size: 60px;
    }

    .overview-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .overview-content h2 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .about-page-banner {
        padding: 80px 0 60px;
    }

    .about-page-banner h1 {
        font-size: 32px;
    }

    .about-page-banner .banner-subtitle {
        font-size: 18px;
    }

    .about-page-banner .banner-icon {
        font-size: 50px;
    }

    .company-overview-section,
    .mission-vision-section,
    .what-we-do-section,
    .core-values-section,
    .about-cta-section {
        padding: 60px 0;
    }

    .overview-content h2 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 16px;
    }

    .mission-card,
    .vision-card {
        padding: 30px;
        margin-bottom: 20px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 24px;
    }

    .indexing-badges {
        gap: 10px;
    }

    .index-badge {
        padding: 8px 16px;
        font-size: 13px;
    }

    .service-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .value-card {
        padding: 30px;
        margin-bottom: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

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

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .about-page-banner h1 {
        font-size: 28px;
    }

    .about-page-banner .banner-subtitle {
        font-size: 16px;
    }

    .overview-content h2 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .stat-icon,
    .service-icon,
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 22px;
    }

    .service-card h4,
    .value-card h4 {
        font-size: 18px;
    }
}