/* =========================
   ABOUT SECTION
========================= */
.about {
    position: relative;
    overflow: hidden;
}

.about::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(234,179,8,0.15) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;   /* IMPORTANT */
    animation: moveDots 60s linear infinite;
    z-index: 0;
}


@keyframes moveDots {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-80px);
    }
}


.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Tag */
.about-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    color: #eab308;
    margin-bottom: 15px;
}

/* Title */
.about-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-title span {
    color: #eab308;
}

/* Paragraph */
.about-text {
    color: #8e95a1;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Subtitle */
.about-subtitle {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffffff;
}

/* Services */
.about-services {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s ease;
}

.service-item:hover {
    border-color: rgba(234,179,8,0.4);
    background: rgba(234,179,8,0.05);
}


.service-icon {
    width: 32px;
    height: 32px;
    background: #eab308;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.service-item p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Keywords Line */
.about-keywords {
    margin-top: 25px;
    font-size: 14px;
    color: #eab308;
    font-weight: 500;
}

/* Button */
.about-btn {
    margin-top: 25px;
    background: #eab308;
    color: #000;
}

.about-btn:hover {
    background: #facc15;
}

/* =========================
   IMAGE
========================= */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

/* Glow */
.image-glow {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background: rgba(234,179,8,0.2);
    border-radius: 15px;
    filter: blur(60px);
    z-index: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 28px;
    }
}
