/* About Page Styles - Dark Theme with Animations */

/* Hero Section Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.2s both;
}

.animate-scale-in {
    animation: scaleIn 1s ease-out 0.5s both;
}

/* About Hero Section */
.about-hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 1) 0%,
        rgba(51, 1, 1, 0.9) 50%,
        rgba(10, 10, 10, 1) 100%);
    z-index: 1;
}

.particles-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(229, 34, 34, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(229, 34, 34, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(229, 34, 34, 0.35), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(229, 34, 34, 0.3), transparent),
        radial-gradient(1px 1px at 10% 80%, rgba(229, 34, 34, 0.25), transparent);
    background-size: 300% 300%;
    animation: particlesMove 25s ease-in-out infinite;
}

@keyframes particlesMove {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid rgba(229, 34, 34, 0.2);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation: rotate 20s linear infinite;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 60px;
}

.about-hero .hero-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(229, 34, 34, 0.2);
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.about-hero .hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-hero .hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .hero-subtitle {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text-white);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-stats .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(229, 34, 34, 0.6);
}

.hero-stats .stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes wheelScroll {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 30px;
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Company Story Section */
.company-story-section {
    padding: 120px 60px;
    background: var(--black);
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(229, 34, 34, 0.1);
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.story-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    margin-top: 40px;
    text-transform: uppercase;
}

.story-text h3:first-child {
    margin-top: 0;
}

.story-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-icon {
    position: absolute;
    left: -60px;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-white);
    box-shadow: 0 0 30px rgba(229, 34, 34, 0.5);
}

.timeline-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

.mission-vision-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mv-card {
    padding: 50px 40px;
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 34, 34, 0.1), transparent);
    transition: left 0.8s ease;
}

.mv-card:hover::before {
    left: 100%;
}

.mv-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-red);
    box-shadow: 0 30px 60px rgba(229, 34, 34, 0.3);
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-white);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 6s ease-in-out infinite;
}

.mv-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: center;
}

.mv-points {
    list-style: none;
}

.mv-points li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 15px;
    color: var(--text-gray);
}

.mv-points li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--primary-red);
    font-size: 16px;
}

/* Team Section */
.team-section {
    padding: 120px 60px;
    background: var(--black);
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-red);
    box-shadow: 0 30px 60px rgba(229, 34, 34, 0.3);
}

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--text-white);
    color: var(--primary-red);
    transform: translateY(-5px);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.team-role {
    font-size: 14px;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

.why-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-card {
    padding: 45px 35px;
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-red);
    box-shadow: 0 30px 60px rgba(229, 34, 34, 0.3);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--text-white);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.why-card:hover .why-icon {
    transform: rotateY(360deg);
}

.why-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Global Section */
.global-section {
    padding: 120px 60px;
    background: var(--black);
}

.global-content {
    max-width: 1400px;
    margin: 0 auto;
}

.global-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

.global-stat-card {
    padding: 50px 40px;
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-top: 4px solid var(--primary-red);
    text-align: center;
    transition: all 0.5s ease;
}

.global-stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(229, 34, 34, 0.3);
}

.global-stat-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-white);
    border-radius: 50%;
}

.global-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(229, 34, 34, 0.6);
}

.global-stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.global-stat-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.regions-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.region-item {
    padding: 25px;
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.region-item:hover {
    background: var(--light-gray);
    border-color: var(--primary-red);
    transform: translateX(10px);
}

.region-item i {
    font-size: 24px;
    color: var(--primary-red);
}

.region-item span {
    font-size: 15px;
    color: var(--text-white);
    font-weight: 600;
}

/* Certifications Section */
.certifications-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

.cert-showcase-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.cert-showcase-card {
    padding: 45px 35px;
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
}

.cert-showcase-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 34, 34, 0.2), transparent);
    transition: top 0.5s ease;
}

.cert-showcase-card:hover::before {
    top: 0;
}

.cert-showcase-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-red);
    box-shadow: 0 30px 60px rgba(229, 34, 34, 0.3);
}

.cert-showcase-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-red);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-white);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.cert-showcase-card:hover .cert-showcase-icon {
    transform: scale(1.1) rotate(360deg);
}

.cert-showcase-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cert-showcase-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* About CTA Section */
.about-cta-section {
    padding: 120px 60px;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(229, 34, 34, 0.1) 0%, transparent 70%);
}

.about-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta-content p {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

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

.cta-btn {
    padding: 20px 50px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.cta-btn.primary {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
}

.cta-btn.primary:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(229, 34, 34, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.cta-btn.secondary:hover {
    background: var(--text-white);
    color: var(--black);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .about-hero .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 48px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cert-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 80vh;
        padding: 60px 20px;
    }

    .about-hero .hero-title {
        font-size: 38px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 40px;
    }

    .company-story-section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        left: -50px;
        font-size: 20px;
    }

    .mission-vision-section {
        padding: 80px 20px;
    }

    .team-section {
        padding: 80px 20px;
    }

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

    .why-choose-section {
        padding: 80px 20px;
    }

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

    .global-section {
        padding: 80px 20px;
    }

    .regions-list {
        grid-template-columns: 1fr;
    }

    .certifications-section {
        padding: 80px 20px;
    }

    .cert-showcase-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-section {
        padding: 80px 20px;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}