/* About Section Styles */
.about-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-points {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.about-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #374151;
}

.about-point::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-stat:hover::before {
    left: 100%;
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.about-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.about-visual {
    position: relative;
    z-index: 2;
}

.about-visual-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.about-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.about-visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-visual-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.about-visual-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.about-visual-icon:nth-child(2) {
    top: 40%;
    right: 25%;
    animation-delay: 2s;
}

.about-visual-icon:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

.about-visual-icon:nth-child(4) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.about-visual-icon:nth-child(5) {
    top: 10%;
    right: 40%;
    animation-delay: 3s;
}

.about-visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.about-visual-center i {
    font-size: 3rem;
    color: white;
}

/* Animation Classes */
.about-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.about-visual {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.about-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-stat {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-stat.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-stat:nth-child(1).animate {
    transition-delay: 0.1s;
}

.about-stat:nth-child(2).animate {
    transition-delay: 0.2s;
}

.about-stat:nth-child(3).animate {
    transition-delay: 0.3s;
}

/* Background Elements */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    animation: float 10s ease-in-out infinite;
}

.about-bg-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.about-bg-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual-container {
        height: 300px;
    }

    .about-visual-icon {
        font-size: 2rem;
    }

    .about-visual-center {
        width: 80px;
        height: 80px;
    }

    .about-visual-center i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-visual-container {
        height: 250px;
    }

    .about-visual-icon {
        font-size: 1.5rem;
    }

    .about-visual-center {
        width: 60px;
        height: 60px;
    }

    .about-visual-center i {
        font-size: 1.5rem;
    }

    .about-bg-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 1rem;
    }

    .about-visual-container {
        height: 200px;
    }

    .about-visual-icon {
        font-size: 1.2rem;
    }
}
