/* About Page Styles */
.about-page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    color: #fff;
    background-color: transparent;
    overflow: hidden;
}
.back-button-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-decoration: none; 
    
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateX(-5px);
}

.back-arrow {
    margin-right: 8px;
    font-size: 1.2em;
}
/* Video Background - Covers entire page */
.about-background-video {
    position: fixed;
    top: 0;
    left: 0;
    bottom:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Hero Section */
.about-hero-section {
    position: relative;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-logo-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-logo {
    height: 80px;
    width: auto;
    margin-bottom: 26px;
}

.about-subtitle {
    max-width: 300px;
    margin: 0 auto;
    font-size: 16px;
    text-align: center;
}

/* Back Button */
.about-back-button {
    position: absolute;
    top: 20px;
    left: 16px;
    z-index: 10;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    padding: 8px;
}

/* Language Toggle */
.about-language-toggle {
    position: absolute;
    top: 20px;
    right: 16px;
    z-index: 10;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    padding: 8px;
}

/* Content Section */
.about-content-section {
    position: relative;
    z-index: 2;
    margin-top: -50px;
    padding: 24px;
    border-radius: 30px 30px 0 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    min-height: 100vh;
}

.about-content-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 24px 0;
}

.about-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* Stats Section */
.about-stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.about-stat-box {
    width: 150px;
    height: 150px;
    background-color: rgba(40, 40, 40, 0.5);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    padding: 15px;
    transition: transform 0.3s ease;
}

.about-stat-box:hover {
    transform: translateY(-5px);
}

.stat-icon {
    height: 40px;
    margin-bottom: 8px;
}

.stat-icon img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

.stat-counter {
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: white;
    text-align: center;
}

/* CTA Section */
.about-cta-section {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 80px;
}

.cta-title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.about-cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color, #000);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.about-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Counter Animation */
@keyframes countup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-visible {
    animation: countup 0.5s ease forwards;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .about-stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content-container {
        padding: 16px 0;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 20px;
    }
}