/* Enterprise Typography */

:root {
    --title-xl: clamp(40px, 4vw, 56px);
    --title-lg: clamp(28px, 3vw, 36px);
    --text-md: 16px;
    --text-sm: 14px;
}

.LocationList h2 {
    font-size: var(--title-lg);
    font-weight: 700;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
}

.LocationList,
.LocationList * {
    color: #ffffff;
}

.ComnTitle span {
    font-size: var(--title-lg) !important;
    font-weight: 700 !important;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.LocationList p,
.LocationList li {
    font-size: var(--text-md);
    line-height: 1.75;
    opacity: 0.85;
    max-width: 95%;
}

.enterprise-card {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.enterprise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}

.locaton-item img {
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.75; }
    100% { transform: scale(1); opacity: 1; }
}

.locaton-item span {
    background: rgba(0,0,0,0.85);
    padding: 6px 14px;
    border-radius: 22px;
    font-size: 13px;
}

.slide-active .enterprise-card {
    animation: slideUpFade 0.8s ease forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-overview {
    background: linear-gradient(
        135deg,
        #0f2027,
        #203a43,
        #2c5364
    );
}

.slide-haryana {
    background: linear-gradient(
        135deg,
        #002f4b,
        #005c97
    );
}

.slide-maharashtra {
    background: linear-gradient(
        135deg,
        #134e5e,
        #71b280
    );
}

.slide-chhattisgarh {
    background: linear-gradient(
        135deg,
        #8e0e00,
        #1f1c18
    );
}

.slide-yanam {
    background: linear-gradient(
        135deg,
        #373b44,
        #4286f4
    );
}

.slide-meghalaya {
    background: linear-gradient(
        135deg,
        #141e30,
        #243b55
    );
}

.owl-item.active .enterprise-card {
    animation: cardReveal 0.8s ease forwards;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-progress {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.slide-progress span {
    width: 8px;
    height: 8px;
    background: white;
    opacity: 0.35;
    border-radius: 50%;
}

.slide-progress .active {
    opacity: 1;
}

.slide-haryana .enterprise-card {
    border-left: 4px solid #00c6ff;
}

.slide-maharashtra .enterprise-card {
    border-left: 4px solid #00f260;
}

.slide-chhattisgarh .enterprise-card {
    border-left: 4px solid #ff512f;
}

.slide-meghalaya .enterprise-card {
    border-left: 4px solid #11998e;
}

.map-container img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}