/* ==========================================================
   ALPHACORP • LUXURY INDIA PRESENCE MAP (BLACK / WHITE / RED)
   ========================================================== */

.bw-india-map {
    position: relative;
    background:
        radial-gradient(900px 520px at 20% 10%, rgba(214, 25, 35, .22), transparent 60%),
        radial-gradient(800px 500px at 80% 85%, rgba(214, 25, 35, .18), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    padding: 22px;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, .75),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

.bw-frame {
    position: relative;
    border-radius: 18px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .55));
    border: 1px solid rgba(255, 255, 255, .10);
    overflow: hidden;
    min-height: 540px;
}

/* Soft red velvet motion */
.ac-velvet-sweep {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(closest-side at 35% 30%, rgba(214, 25, 35, .22), transparent 60%),
        radial-gradient(closest-side at 65% 70%, rgba(214, 25, 35, .18), transparent 62%);
    filter: blur(26px);
    opacity: .65;
    animation: velvetMove 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes velvetMove {

    0%,
    100% {
        transform: translate(-2%, -1%) rotate(-6deg);
    }

    50% {
        transform: translate(2%, 1%) rotate(6deg);
    }
}

.bw-mount {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 440px;
}

.bw-mount svg {
    width: 50%;
    height: auto;
    display: block;
}

@media(max-width:900px) {
    .bw-mount svg {
        width: 60%;
    }
}

@media(max-width:520px) {
    .bw-mount svg {
        width: 90%;
    }
}

/* Force outline */
.bw-india-map svg path {
    fill: none !important;
    stroke: rgba(255, 255, 255, .70) !important;
    stroke-width: 2 !important;
    vector-effect: non-scaling-stroke;
}

/* AlphaCorp watermark */
.bw-logo {
    position: absolute;
    right: 220px;
    bottom: 90px;
    width: 70px;
    opacity: .75;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .65));
    pointer-events: none;
    z-index: 3;
}

@media(max-width:520px) {
    .bw-logo {
        right: 28px;
        bottom: 28px;
        width: 58px;
    }
}

/* ======================
     PIN (SVG)
     ====================== */
.ac-pin-halo {
    fill: rgba(214, 25, 35, .30);
    filter: blur(10px);
}

.ac-pin-ring {
    fill: none;
    stroke: rgba(214, 25, 35, .85);
    stroke-width: 1.6;
}

.ac-pin-core {
    fill: rgba(214, 25, 35, .96);
    stroke: rgba(255, 255, 255, .80);
    stroke-width: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .7));
}

/* ======================
     LASER OVERLAY
     ====================== */
.ac-laser-overlay {
    position: absolute;
    inset: 0;
    z-index: 7;
    pointer-events: none;
}

.ac-laser-main {
    stroke: rgba(255, 255, 255, .72);
    stroke-width: 2.1;
    stroke-linecap: round;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55));
}

.ac-laser-glow {
    stroke: rgba(214, 25, 35, .30);
    stroke-width: 8;
    stroke-linecap: round;
    filter: blur(2px);
    opacity: .85;
}

.ac-laser-dash {
    stroke: rgba(214, 25, 35, .55);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 4 10;
    opacity: .55;
    animation: dashMove 1.1s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -28;
    }
}

.ac-laser-spark {
    fill: rgba(214, 25, 35, .95);
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .65));
    opacity: .95;
}

/* ======================
     PRESENCE CARDS
     ====================== */
.ac-presence-card {
    position: absolute;
    min-width: 280px;
    max-width: 380px;

    background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 14px;

    padding: 12px 14px;
    color: #fff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .80);

    transform: translateY(10px) scale(.985);
    opacity: 0;
    transition: opacity .42s ease, transform .42s cubic-bezier(.2, .9, .2, 1);
    z-index: 6;
    transform-origin: 70% 30%;
}

.ac-presence-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ac-presence-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(214, 25, 35, .14);
}

/* Tail base */
.ac-presence-card::before {
    content: "";
    position: absolute;
    top: var(--tailY, 34px);
    width: 20px;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .22);
    transform: rotate(45deg);
    border-radius: 4px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .38);
}

.ac-presence-card.tail-right::before {
    right: -10px;
    border-bottom: 0;
    border-left: 0;
}

.ac-presence-card.tail-left::before {
    left: -10px;
    border-bottom: 0;
    border-right: 0;
}

/* ===== Card content (one line) ===== */
.ac-one-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ac-title-logo-wrap {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 30% 25%,
            rgba(255, 255, 255, .22),
            rgba(255, 255, 255, .06) 55%,
            rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    flex: 0 0 auto;
}

.ac-title-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: .95;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .6));
}

.ac-one-mid {
    flex: 1;
    min-width: 0;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: .95;
}

.ac-presence-card .accent {
    margin-top: 8px;
    height: 2px;
    width: 72px;
    background: linear-gradient(90deg, #d61923, rgba(214, 25, 35, .25));
    border-radius: 2px;
}

/* ===== Multiple Project Logos (Luxury Stack Rail) ===== */
.ac-project-stack {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 8px;
    flex: 0 0 auto;
}

.ac-project-stack img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;

    background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 22px rgba(0, 0, 0, .45),
        inset 0 0 0 1px rgba(214, 25, 35, .15);

    position: relative;
}

.ac-project-stack img:not(:first-child) {
    margin-left: -14px;
}

.ac-project-stack img:nth-child(1) {
    z-index: 6;
}

.ac-project-stack img:nth-child(2) {
    z-index: 5;
}

.ac-project-stack img:nth-child(3) {
    z-index: 4;
}

.ac-project-stack img:nth-child(4) {
    z-index: 3;
}

.ac-project-stack img:hover {
    transform: translateY(-3px) scale(1.03);
    z-index: 20;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .6);
    transition: all .25s ease;
}

@media(max-width:520px) {
    .ac-presence-card {
        min-width: 240px;
        padding: 10px 12px;
    }

    .ac-project-stack img {
        width: 48px;
        height: 48px;
        border-radius: 9px;
    }
}