/* ========================================
   ABOUT US SECTION - HOMEPAGE
   ======================================== */

.about-us-section {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 8rem 0;
    overflow: hidden;
}

/* Background wrapper for canvas */
.about-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Grid overlay animation */
.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Canvas for particles */
#aboutParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ========== CONTENT WRAPPER ========== */
.about-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ========== TEXT CONTENT ========== */
.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 255, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    color: #00ffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }
}

.about-badge i {
    font-size: 1rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #f0f5ff;
    margin: 0;
    font-family: 'Inter', 'Segoe UI', -apple-system, system-ui, sans-serif;
}

.gradient-text-about {
    background: linear-gradient(135deg, #00ffff 0%, #00ffff 35%, #00ffff 65%, #00ffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(200, 215, 235, 0.85);
    margin: 0;
    font-family: 'Inter', 'Segoe UI', -apple-system, system-ui, sans-serif;
}

/* ========== STATS ========== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', 'Segoe UI', -apple-system, system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number i {
    font-size: 1.5rem;
    color: #FFD700;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(200, 215, 235, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== CTA BUTTONS ========== */
.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.about-btn {
    position: relative;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.about-btn-primary {
    background: transparent;
    color: #00ffff;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

.about-btn-primary .btn-shine {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.about-btn-primary:hover .btn-shine {
    left: 100%;
}

.about-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 255, 255, 0.1) 100%);
    border-color: rgba(0, 255, 255, 0.6);
}

.about-btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.about-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 255, 255, 0.1) 100%);
    border-color: rgba(0, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
    color: #00ffff;
}

/* ========== VISUAL CONTENT ========== */
.about-visual-content {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-decoration {
    display: none;
    position: absolute;
    border-radius: 20px;
    z-index: 0;
}

.image-decoration-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
    border: 2px solid rgba(0, 255, 255, 0.2);
    top: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.image-decoration-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
    border: 2px solid rgba(0, 255, 255, 0.2);
    bottom: -15px;
    left: -15px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

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

.about-image-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 20, 30, 0.9) 0%, rgba(20, 25, 35, 0.9) 100%);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-image-card:hover {
    transform: translateX(10px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.card-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f0f5ff;
    margin: 0 0 0.5rem 0;
    font-family: 'Inter', 'Segoe UI', -apple-system, system-ui, sans-serif;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(200, 215, 235, 0.75);
    margin: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .about-us-section {
        padding: 6rem 0;
    }
    
    .about-content-wrapper {
        gap: 4rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 4rem 0;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-image-card {
        padding: 1.5rem;
    }
    
    .image-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .about-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .card-content h4 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 0.875rem;
    }
}
