
        .presence-wrapper {
            margin-top: 60px;
            position: relative;
            overflow: hidden;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .presence-background {
            position: absolute;
            inset: 0;
            background: url('../images/our-presence-01.avif') center/cover no-repeat;
        }

        .presence-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
        }

        .presence-content {
            position: relative;
            display: flex;
            align-items: center;
            padding: 100px;
        }

        .presence-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .presence-text {
            flex: 1;
        }

        .presence-title {
            color: white;
            font-size: 3.5rem;
            font-weight: bold;
            margin: 0 0 1.5rem 0;
            line-height: 1.2;
        }

        .presence-description {
            color: rgba(255, 255, 255, 0.9);
            max-width: 500px;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            text-align: justify;
            word-spacing: -0.05em;
            line-height: 1.8;
            font-family: 'IBM Plex Serif', sans-serif;
        }

        .presence-map {
            flex: 1;
            position: relative;
        }

        .map-glow {
            position: absolute;
            inset: 0;
            filter: blur(40px);
        }

        .world-map {
            position: relative;
            z-index: 10;
            width: 120%;
            height: auto;
            filter: brightness(0) invert(1);
            animation: pulse 2s infinite;
            margin-top: 30px;
        }

        .presence-dots {
            position: absolute;
            inset: 0;
            z-index: 20;
        }

        .presence-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #60A5FA;
            border-radius: 50%;
            animation: ping 2s infinite;
        }

        .presence-dot::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #60A5FA;
            border-radius: 50%;
            animation: ping 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        @keyframes ping {
            75%, 100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        /* Tablet responsiveness */
        @media (max-width: 1024px) {
            .presence-content {
                padding: 80px 50px;
            }

            .presence-container {
                gap: 3rem;
            }

            .presence-title {
                font-size: 3rem;
            }

            .world-map {
                width: 110%;
            }
        }

        /* Responsive dot positions for different screen sizes */
        @media (max-width: 768px) {
            .presence-container {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
                gap: 2rem;
            }

            .presence-content {
                padding: 60px 20px;
            }

            .presence-title {
                font-size: 2.5rem;
            }

            .presence-description {
                margin: 0 auto;
            }

            .world-map {
                position: relative;
                z-index: 10;
                width: 120%;
                height: auto;
                filter: brightness(0) invert(1);
                animation: pulse 2s infinite;
                margin-top: 20px;
            }

            /* Adjust dot positions for mobile */
            .presence-dots .presence-dot:nth-child(1) { /* India */
                top: 48%; left: 68%;
            }
            .presence-dots .presence-dot:nth-child(2) { /* Dubai */
                top: 43%; left: 59%;
            }
            .presence-dots .presence-dot:nth-child(3) { /* Singapore */
                top: 58%; left: 72%;
            }
        }

        /* Small mobile responsiveness */
        @media (max-width: 480px) {
            .presence-content {
                padding: 40px 15px;
            }

            .presence-container {
                padding: 1rem;
                gap: 1.5rem;
            }

            .presence-title {
                font-size: 2rem;
            }

            .presence-description {
                font-size: 1rem;
            }

            .world-map {
                width: 110%;
                margin-top: 15px;
            }

            /* Fine-tune dot positions for small mobile */
            .presence-dots .presence-dot:nth-child(1) { /* India */
                top: 49%; left: 69%;
            }
            .presence-dots .presence-dot:nth-child(2) { /* Dubai */
                top: 44%; left: 60%;
            }
            .presence-dots .presence-dot:nth-child(3) { /* Singapore */
                top: 59%; left: 73%;
            }
        }

        /* Extra small mobile */
        @media (max-width: 360px) {
            .presence-wrapper {
                margin-top: 40px;
            }

            .presence-content {
                padding: 30px 10px;
            }

            .presence-title {
                font-size: 1.8rem;
            }

            .presence-description {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .world-map {
                width: 105%;
            }

            /* Fine-tune dot positions for extra small mobile */
            .presence-dots .presence-dot:nth-child(1) { /* India */
                top: 48%; left: 68%;
            }
            .presence-dots .presence-dot:nth-child(2) { /* Dubai */
                top: 43%; left: 59%;
            }
            .presence-dots .presence-dot:nth-child(3) { /* Singapore */
                top: 58%; left: 72%;
            }
        }

        .presence-section {
            position: relative;
            width: 100%;
            padding: 4rem 2rem;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                        url('../images/our-presence-02.avif');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .local-container {
            max-width: 1200px;
            width: 100%;
        }

        .section-title {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            font-family: Arial, sans-serif;
        }

        .maps-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 2rem;
            position: relative;
        }

        .world-map-wrapper {
            width: 98%;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .map-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .location-info {
            margin-top: 2rem;
            color: white;
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .location-item {
            margin: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            flex-basis: calc(33.333% - 2rem);
        }

        .location-title {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .location-city {
            color: white;
            font-size: 1rem;
        }

        @media (max-width: 1024px) {
            .world-map-wrapper {
                width: 90%;
            }

            .maps-container {
                flex-direction: column;
            }

            .location-item {
                flex-basis: calc(50% - 2rem);
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .presence-section {
                padding: 2rem 1rem;
                background-attachment: scroll;
            }

            .location-item {
                flex-basis: 100%;
            }
        }

        /* Additional mobile responsiveness for section */
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .presence-section {
                padding: 1.5rem 0.5rem;
            }

            .location-item {
                margin: 0.5rem;
            }
        }