

        .map-section:hover {
            transform: translateY(-5px);
        }

        .map-text-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .map-text-title h1 {
            font-size: 4rem;
            color: #0059A7;
            margin-bottom: 5px;
            letter-spacing: 2px;
        }

        .map-text-title strong {
            font-size: 1.5rem;
            color: #DC682F;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .map-image-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }

        .map-image-container::before {
            content: "Click to view contacts";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 89, 167, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .map-image-container:hover::before {
            opacity: 1;
        }

        .map-image-container:hover img {
            transform: scale(1.05);
        }

        .map-image {
            width: 100%;
            display: block;
            transition: transform 0.4s ease;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
             z-index: 1000;
            overflow: auto;
            animation: fadeIn 0.4s ease;
        }

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

        .modal-content {
            background: white;
            margin: 5% auto;
            width: 90%;
            max-width: 1100px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
            position: relative;
            animation: slideUp 0.5s ease;
        }

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

        .modal-header {
            background: linear-gradient(90deg, #0059A7, #DC682F);
            color: white;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 2.5rem;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .close-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 1.8rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 30px;
            background: #f8f9fa;
            max-height: 70vh;
            overflow-y: auto;
        }

        /* Cards Container */
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        /* Card with Wave Animation */
        .card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            background: #0059A7;
            color: white;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .card-header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(30deg);
            animation: wave 8s infinite linear;
            z-index: 0;
        }

        @keyframes wave {
            0% { transform: rotate(30deg) translateX(-25%); }
            100% { transform: rotate(30deg) translateX(25%); }
        }

        .card-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 5px;
            position: relative;
            z-index: 2;
        }

        .card-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .card-body {
            padding: 20px;
        }

        .contact-info {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }

        .contact-info i {
            position: absolute;
            left: 0;
            top: 2px;
            color: #DC682F;
        }

        .contact-label {
            font-weight: 600;
            color: #0059A7;
            margin-bottom: 3px;
        }

        .contact-detail {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #0059A7, transparent);
            margin: 20px 0;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .cards-container {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .modal-content {
                width: 95%;
                margin: 10% auto;
            }
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.8rem;
            }
            
            .map-text-title h1 {
                font-size: 3rem;
            }
            
            .map-section {
                padding: 25px;
            }
            
            .modal-header {
                padding: 20px;
            }
            
            .modal-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 15px;
            }
            
            header h1 {
                font-size: 2.3rem;
            }
            
            .map-text-title h1 {
                font-size: 2.5rem;
            }
            
            .map-text-title strong {
                font-size: 1.3rem;
            }
            
            .map-section {
                padding: 20px;
                margin: 20px auto;
            }
            
            .modal-content {
                width: 98%;
                margin: 5% auto;
            }
            
            .modal-body {
                padding: 20px;
            }
            
            .cards-container {
                grid-template-columns: 1fr;
            }
            
            .map-image-container::before {
                font-size: 1.3rem;
            }
        }