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

        /* Body modal state management */
        body.modal-open {
            overflow: hidden !important;
            position: fixed;
            width: 100%;
        }

        /* Ensure proper z-index stacking */
        .modal {
            z-index: 10000;
        }

        .modal-content {
            z-index: 10001;
        }

        /* Prevent interaction with background elements */
        .modal.show ~ * {
            pointer-events: none;
        }

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

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

        .map-text-title strong {
            font-size: 1.5rem;
            color: #ffffff;
            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 Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 1200px;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            transform: translateY(50px);
            transition: transform 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .modal.show .modal-content {
            transform: translateY(0);
            opacity: 1;
        }

        .modal-header {
            background: linear-gradient(135deg, #0059A7, #2980b9);
            color: white;
            padding: 25px 30px;
            position: relative;
            overflow: hidden;
        }

        .modal-header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(30deg);
            animation: headerWave 6s infinite linear;
        }

        .modal-title {
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 3;
        }

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

        .modal-body {
            padding: 30px;
            max-height: calc(90vh - 150px);
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #0059A7 #f0f0f0;
        }

        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: #0059A7;
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #003d75;
        }

        /* Speaker Modal Specific Styles */
        .speaker-modal .modal-content {
            max-width: 800px;
        }

        .speaker-modal-content {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
        }

        .speaker-modal-header {
            background: linear-gradient(135deg, #2c3e50, #34495e);
        }

        .speaker-profile {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .speaker-avatar {
            width: 200px;
            height: 200px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border: 4px solid #fff;
        }

        .speaker-details h3 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .speaker-details .title {
            font-size: 1.3rem;
            color: #0059A7;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .speaker-details .description {
            font-size: 1.1rem;
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .speaker-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .stat-item {
            background: white;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #0059A7;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: #0059A7;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-top: 5px;
        }

        .speaker-bio {
            background: white;
            padding: 25px;
            border-radius: 15px;
            margin-top: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .speaker-bio h4 {
            color: #2c3e50;
            font-size: 1.4rem;
            margin-bottom: 15px;
            border-bottom: 2px solid #0059A7;
            padding-bottom: 10px;
        }

        .speaker-bio p {
            line-height: 1.8;
            color: #555;
        }

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

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

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

        /* 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));
            }
            
            .speaker-profile {
                flex-direction: column;
                text-align: center;
            }
            
            .speaker-avatar {
                align-self: center;
            }
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.8rem;
            }
            
            .map-text-title h1 {
                font-size: 3rem;
            }
            
            .map-section {
                padding: 1.5rem;
            }
            
            .modal-content {
                width: 95%;
                margin: 10px;
            }
            
            .modal-body {
                padding: 20px;
            }
            
        }

        @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: 1rem;
                margin: 15px auto;
            }
            
            .cards-container {
                grid-template-columns: 1fr;
            }
            
            .map-image-container::before {
                font-size: 1.3rem;
            }

            .modal-title {
                font-size: 1.5rem;
            }

            .speaker-details h3 {
                font-size: 1.5rem;
            }
        }