/* ============================================================
   AK SERVICES — FINAL WIDE LAYOUT (NO SIDE EMPTY SPACE)
============================================================ */

/* ─── SECTION ─────────────────────────────────────────────── */
.ak-services-section {
    padding: 40px 40px;
    background: #faf8f4;
    font-family: 'Poppins', sans-serif;
}

/* ─── HEADING ─────────────────────────────────────────────── */
.akf-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
}

.akf-heading h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 12px;
}

.akf-heading p {
    font-size: 16px;
    color: #777;
}

/* ─── GRID (🔥 wider cards) ───────────────────────────────── */
.ak-services-container {
    max-width: 1200px; /* 🔥 increased */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

/* ─── CARD ────────────────────────────────────────────────── */
.ak-service-card {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   CHAKRA (BACK) — FIXED
========================= */
.ak-chakra-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    
    width: 380px;
    height: 380px;

    z-index: 1;

    transform: translateX(-50%); /* ✅ keep center fixed */
    transform-origin: center;

    animation: spin 30s linear infinite;
}

/* 🔥 FIX: NO translate inside animation */
@keyframes spin {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg); }
}

/* =========================
   IMAGE (MIDDLE)
========================= */
.ak-img-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 260px;
    height: 380px;
    border-radius: 130px;
    overflow: hidden;

    z-index: 2;

    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.ak-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   HOVER
========================= */
.ak-hover-content {
    position: absolute;
    inset: 0;
    border-radius: 130px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: 0.3s ease;
}

.ak-service-card:hover .ak-hover-content {
    opacity: 1;
}

/* =========================
   ORANGE CIRCLE (FRONT)
========================= */
.ak-service-overlay {
    position: absolute;

    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);

    width: 170px;
    height: 170px;
    border-radius: 50%;

    background: linear-gradient(135deg, #ff8c00, #ff5e00);
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    z-index: 3;

    box-shadow: 0 12px 35px rgba(255,140,0,0.5);
}

.ak-service-overlay span {
    font-size: 13px;
}

.ak-service-overlay h3 {
    font-size: 20px;
    font-weight: 800;
}

/* =========================
   REMOVE WRAPPER EFFECT
========================= */
.ak-chakra-wrap {
    position: static;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .ak-services-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .ak-service-card {
        height: 480px;
    }

    .ak-img-box {
        width: 220px;
        height: 340px;
    }

    .ak-chakra-bg {
        width: 320px;
        height: 320px;
    }

    .ak-service-overlay {
        width: 140px;
        height: 140px;
        bottom: 70px;
    }
}