* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.7;
}

/* =====================About Section===================== */

.about {
    padding: 0 8%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* =====================Text===================== */

.about-text h2 {
    font-size: 50px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text h2 span {
    color: #00bcd4;
}

.about-text p {
    color: #aaa;
    margin-bottom: 20px;
    max-width: 520px;
}

/* =====================Button===================== */

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #00bcd4;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #fff;
}

/* =====================Image===================== */

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #00bcd4;
    filter: blur(150px);
    opacity: 0.08;
    border-radius: 50%;
    z-index: -1;
}

.about-image img {
    max-height: 80vh;
    max-width: 100%;
    width: 100%;
    object-fit: contain;
    transition: 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* =====================Responsive===================== */

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .about-text p {
        margin: 0 auto 20px;
    }
}