/* ===============================
   ABOUT SECTION
================================ */

.about-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}


/* IMAGE SIDE */

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 14px;
    position: relative;
    z-index: 2;
}


/* Glow Effect */


/* Animated Blue Glow */

.image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.35) 0%, rgba(0, 82, 204, 0.15) 40%, transparent 70%);
    filter: blur(60px);
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    z-index: 1;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }
    100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
}


/* CONTENT SIDE */

.about-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.about-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}


/* Buttons */

.about-buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.btn-outline {
    border: 2px solid var(--blue);
    padding: 12px 26px;
    border-radius: 6px;
    color: var(--blue);
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-3px);
}