/* ============================================
   ABOUT SECTION - FULL DEEP DESIGN
   ============================================ */

.about-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 100px 0;
    margin: 0;
    box-sizing: border-box;
    isolation: isolate;
    transform: translateZ(0);
    z-index: 1;
}

/* ============================================
   ABOUT GRID
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ============================================
   LEFT BLOCK - Content
   ============================================ */

.about-content-left {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   ABOUT FEATURES LIST - LEFT SIDE
   ============================================ */

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0 40px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(8px);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-feature-item:hover .feature-icon-box {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.feature-icon-box i {
    font-size: 22px;
    color: #ffffff;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    font-family: 'Saira', sans-serif;
}

.feature-content p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   ABOUT IMAGE - RIGHT SIDE
   ============================================ */

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   ABOUT BUTTON
   ============================================ */

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}

.btn-about::before {
    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;
}

.btn-about:hover::before {
    left: 100%;
}

.btn-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.6);
}

/* ============================================
   RIGHT BLOCK - Stats Grid
   ============================================ */

.about-content-right {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media screen and (max-width: 1200px) {
    .about-grid {
        gap: 60px;
    }
}

@media screen and (max-width: 1024px) {
    .about-section {
        height: auto;
        min-height: 700px;
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-wrapper {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        height: auto;
        min-height: 600px;
        padding: 50px 0;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .about-image-wrapper {
        padding: 20px;
    }
    
    .btn-about {
        padding: 15px 35px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .about-section {
        height: auto;
        min-height: 550px;
        padding: 40px 0;
    }
    
    .about-image-wrapper {
        padding: 15px;
    }
    
    .btn-about {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}
