
        :root {
            --es-navy: #000036;
            --es-red: #d0142c;
            --es-white: #ffffff;
            --es-light-gray: #f8fafc;
            --es-border: #e2e8f0;
        }

       
        /* --- Wi Global Network Ples Dem --- */
        .es-locations-section {
            padding: 60px 0;
            background-color: #f0f6ff;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        .es-section-header {
            margin-bottom: 40px;
        }

        .es-tagline {
            color: var(--es-red);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            display: block;
            margin-bottom: 8px;
        }

        .es-section-title {
            color: var(--es-navy);
            font-weight: 800;
            font-size: 2.2rem;
            line-height: 1.2;
        }

        /* --- Wi Card Design (Click di ful Card) --- */
        .location-link {
            text-decoration: none;
            display: block;
            height: 100%;
            border-radius: 20px;
        }

        .location-card-premium {
            background: var(--es-white);
            border-radius: 20px;
            height: 260px; /* Small height for compact feel */
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            border: none;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
        }

        /* Background Image Layout - Dah Chitra */
        .card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
            z-index: 1;
        }

        /* Dark Overlay - Dah Dark Skin */
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,54,0.95) 0%, rgba(0,0,54,0.4) 50%, rgba(0,0,54,0.1) 100%);
            z-index: 2;
            transition: background 0.4s ease;
        }

        .card-content {
            position: relative;
            z-index: 3;
            color: var(--es-white);
        }

        /* Hover Effect - Wen yu put mouse pan am */
        .location-link:hover .card-bg {
            transform: scale(1.1);
        }

        .location-link:hover .card-overlay {
            background: linear-gradient(to top, var(--es-red) 0%, rgba(208, 20, 44, 0.6) 50%, rgba(0,0,54,0.2) 100%);
        }

        .loc-icon-circle {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            font-size: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: 0.3s;
        }

        .location-link:hover .loc-icon-circle {
            background: var(--es-white);
            color: var(--es-red);
            transform: rotate(360deg);
        }

        .loc-city-name {
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 4px;
            letter-spacing: -0.5px;
        }

        .loc-dc-count {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            opacity: 0.85;
            font-weight: 500;
        }

        .explore-text {
            margin-top: 10px;
            font-weight: 700;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 5px;
            opacity: 0;
            transform: translateX(-10px);
            transition: 0.3s;
        }

        .location-link:hover .explore-text {
            opacity: 1;
            transform: translateX(0);
        }

        /* --- Responsive Breaks - For all screen size dem --- */
        @media (max-width: 992px) {
            .es-section-title { font-size: 1.8rem; }
            .explore-text { opacity: 1; transform: translateX(0); }
            .location-card-premium { height: 240px; }
        }

        .location-link i.fa-solid {
    margin-right: 2px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}






/* london */


        /* --- UK Map Background Texture --- */
        /* UK nakshacha ek subtle background image jo halka disto */
        .bg-map-texture {
            position: fixed;
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%;
            z-index: -1; 
            opacity: 0.04; /* Khup halka opacity jemule te background madhe thodech diste */
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/e/e4/United_Kingdom_location_map.svg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            pointer-events: none;
            filter: grayscale(100%) invert(10%);
        }

        /* --- Hero Section --- */
        .london-hero {
            padding: 80px 0 50px;
            background: transparent;
            text-align: center;
        }

        .london-hero h1 {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 800;
            color: var(--es-navy);
            margin-bottom: 15px;
        }

        .london-hero h1 span { color: var(--es-red); }

        .london-hero p {
            font-size: 1.1rem; color: #64748b;
            max-width: 650px; margin: 0 auto;
        }

        /* --- Data Center Cards --- */
        /* London kendranchya mahitiche card */
        .dc-card-pro {
            background: var(--es-white);
            border-radius: 24px;
            border: 1px solid var(--es-border);
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 6px rgba(0,0,54,0.02);
        }

        .dc-card-pro:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 54, 0.1);
            border-color: var(--es-red);
        }

        /* Chitra vibhag */
        .dc-img-top {
            width: 100%;
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .dc-img-top img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .dc-card-pro:hover .dc-img-top img {
            transform: scale(1.1);
        }

        /* Label Badge */
        .dc-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--es-red);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 5;
            box-shadow: 0 4px 10px rgba(208, 20, 44, 0.3);
        }

        .dc-body {
            padding: 25px 30px;
            flex-grow: 1;
        }

        .dc-title {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--es-navy);
        }

        .dc-location {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Shakti ani Shreni grid */
        .specs-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }

        .spec-tile {
            background: #f8fafc;
            padding: 12px;
            border-radius: 12px;
            border: 1px solid #f1f5f9;
            text-align: center;
        }

        .spec-tile i {
            color: var(--es-red);
            font-size: 1rem;
            margin-bottom: 5px;
            display: block;
        }

        .spec-label {
            font-size: 0.6rem;
            color: #94a3b8;
            text-transform: uppercase;
            font-weight: 700;
            display: block;
        }

        .spec-value {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--es-navy);
        }

        .dc-footer {
            padding: 0 30px 30px;
        }

        .btn-details {
            background: var(--es-navy);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            width: 100%;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-details:hover {
            background: var(--es-red);
            color: white;
            box-shadow: 0 10px 20px rgba(208, 20, 44, 0.2);
        }

        /* Vivar Modal */
        .vivar-modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 54, 0.6);
            backdrop-filter: blur(8px);
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; } to { opacity: 1; }
        }

        .modal-container {
            max-width: 600px;
            background: white;
            margin: 50px auto;
            border-radius: 32px;
            padding: 40px;
            position: relative;
            box-shadow: 0 30px 60px rgba(0,0,54,0.3);
        }

        .close-btn {
            position: absolute;
            top: 25px; right: 25px;
            background: #f1f5f9;
            border: none;
            width: 40px; height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
        }

        @media (max-width: 768px) {
            .london-hero h1 { font-size: 2.2rem; }
            .modal-container { margin: 20px; padding: 25px; }
        }
  
 /* london */