/* ===================================================================
   ABOUT PAGE SPECIFIC STYLES
   ================================================================ */

/* Team cards equal height fix for about page */
.leadership-team .team-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leadership-team .team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leadership-team .team-bio {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Hero Stats Section - Unique styling for about page hero */
.hero-about .hero-stats {
    margin-top: 3rem;
}

.hero-about .hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.hero-about .hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-about .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-about .stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Page Statistics Section - Unique styling to avoid conflicts */
.about-company-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #22005e, #22005e);
    position: relative;
    overflow: hidden;
}

.about-company-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff10"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.3;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    height: 100%;
}

.about-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.1);
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.about-stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Responsive Design for About Stats */
@media (max-width: 768px) {
    .about-company-stats {
        padding: 60px 0;
    }
    
    .about-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .about-stat-number {
        font-size: 1.75rem;
    }
    
    .about-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff10" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
}

.about-hero-stats {
    margin-top: 3rem;
}

.about-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.about-stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Company Overview Section */
.about-overview {
    padding: 100px 0;
    background: white;
}

.about-media-container {
    position: relative;
    height: 500px;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-main-image:hover {
    transform: scale(1.05);
}

.about-floating-element {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-floating-element i {
    font-size: 1.5rem;
}

.about-content-container {
    padding-left: 2rem;
}

.about-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.about-section-badge .badge-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.about-section-badge .badge-text {
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #10b981, #059669);
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2rem;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-content h6 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.about-feature-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* About Vision Mission Section */
.about-vision-mission {
    padding: 100px 0;
    background: #f8fafc;
}

.about-vm-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #10b981, #059669);
}

.about-vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-vm-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-vm-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2rem;
}

.about-vm-features {
    list-style: none;
    padding: 0;
}

.about-vm-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-vm-feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.about-vm-feature span {
    color: #475569;
    font-weight: 500;
}

/* About Values Section */
.about-values {
    padding: 100px 0;
    background: white;
}

.about-value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    opacity: 0;
    transition: all 0.3s ease;
}

.about-value-card:hover::before {
    opacity: 0.05;
}

.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.about-value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #10b981;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    transform: scale(1.1);
}

.about-value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.about-value-card p {
    color: #64748b;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* About Team Section */
.about-team {
    padding: 100px 0;
    background: #f8fafc;
}

.about-team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.about-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.about-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-team-card:hover .about-team-image img {
    transform: scale(1.1);
}

.about-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-team-card:hover .about-team-overlay {
    opacity: 1;
}

.about-team-social {
    display: flex;
    gap: 1rem;
}

.about-social-icon {
    width: 45px;
    height: 45px;
    background: white;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.about-team-card:hover .about-social-icon {
    transform: translateY(0);
}

.about-social-icon:hover {
    background: #1e293b;
    color: white;
}

.about-team-content {
    padding: 2rem;
    text-align: center;
}

.about-team-content h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.about-team-position {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-team-bio {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Statistics Section */
.about-statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    position: relative;
    overflow: hidden;
}

.about-statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff10"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.3;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-stat-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.about-stat-card-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.about-stat-card-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1.1rem;
}

/* About Why Choose Section */
.about-why-choose {
    padding: 100px 0;
    background: #f8fafc;
}

.about-why-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.about-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-why-card:hover::before {
    left: 100%;
}

.about-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.about-why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #10b981;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.about-why-card:hover .about-why-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.about-why-card h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.about-why-card p {
    color: #64748b;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b, #10b981);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="cta-gradient"><stop offset="0%" stop-color="%23ffffff20"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23cta-gradient)"/><circle cx="800" cy="400" r="100" fill="url(%23cta-gradient)"/><circle cx="400" cy="800" r="200" fill="url(%23cta-gradient)"/></svg>');
    opacity: 0.1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
}

.about-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.about-cta-btn-white {
    background: white;
    color: #1e293b;
}

.about-cta-btn-white:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.about-cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.about-cta-btn-outline:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-main-title {
        font-size: 2rem;
    }
    
    .about-content-container {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .about-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta h3 {
        font-size: 2rem;
    }
    
    .about-cta-buttons {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-main-title {
        font-size: 1.75rem;
    }
    
    .about-hero-subtitle,
    .about-description,
    .about-vm-text,
    .about-cta p {
        font-size: 1rem;
    }
    
    .about-vm-card,
    .about-value-card,
    .about-why-card {
        padding: 2rem;
    }
    
    .about-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 2rem 0;
    }
    
    .about-overview,
    .about-vision-mission,
    .about-values,
    .about-team,
    .about-statistics,
    .about-why-choose,
    .about-cta {
        padding: 60px 0;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-main-title {
        font-size: 1.5rem;
    }
    
    .about-floating-element {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
    }
    
    .about-stat-card-number {
        font-size: 2rem;
    }
}
