/* about Content Section - Enhanced Modern Design */
.about {
    background-color: var(--deep-space);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
    padding: 4rem 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--starlight);
    text-shadow: 0 0 10px var(--cyber-aqua-glow);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--cyber-aqua);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.9;
}

.about-content p {
    margin-bottom: 1.8rem;
    color: var(--cosmic-text);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.85;
}

.about-content p:first-of-type {
    font-weight: 600;
    color: var(--starlight);
    opacity: 0.95;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feature-icon {
    color: var(--cyber-aqua);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--cosmic-text);
    opacity: 0.8;
    line-height: 1.5;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    height: 580px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.7), rgba(23, 42, 70, 0.5));
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(90deg, var(--electric-orange), #f59e0b);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px var(--electric-orange-glow);
    animation: pulse 2s infinite;
    font-family: 'Orbitron', sans-serif;
    z-index: 2;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Modern scroll animation */
.about-content, .about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content.animate, .about-image.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments for about Section */
@media (max-width: 1200px) {
    .about-container {
        gap: 4rem;
    }
    
    .about-content h2 {
        font-size: 2.7rem;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        height: 450px;
        max-width: 700px;
        margin: 0 auto;
        order: -1;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .about-intro {
        font-size: 1.2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .about-image {
        height: 350px;
    }
    
    .about-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
}
