
        /* Unique modal class to prevent conflicts */
        .mmc-welcome-modal {
            display: flex;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.8s ease forwards;
        }
        
        /* Modal Content Box with curved design */
        .mmc-modal-content {
            position: relative;
            width: 90%;
            max-width: 480px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 100% 0% 100% 0% / 15% 88% 12% 85% ;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
            transform: scale(0.9);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: slideUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }
        
        /* Conference background image covering entire modal */
        .mmc-modal-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(79, 135, 1, 0.7), rgba(79, 135, 1, 0.1)), url('../modal/images/banner.avif') center/cover;
            z-index: -1;
        }
        
        /* Gradient overlay for better readability */
        .mmc-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(79, 135, 1, 0.1);
            z-index: -1;
        }
        
        /* Logo styling */
        .mmc-logo-container {
            position: relative;
            text-align: center;
            padding: 40px 20px 20px;
        }
        
        .mmc-logo {
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 10px;
            padding: 15px;
            animation: float 4s ease-in-out infinite;
        }
        
        .mmc-logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        
        /* Modal body styling */
        .mmc-modal-body {
            padding: 0 40px 40px;
            text-align: center;
            position: relative;
        }
        
        .mmc-modal-title {
            font-size: 32px;
            color: white;
            margin-bottom: 15px;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .mmc-modal-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            font-weight: 400;
            line-height: 1.6;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Limited seats styling */
        .mmc-limited-seats {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            margin: 15px 0;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: pulse 2s infinite;
        }
        
        /* Styling for the CTA button */
        .mmc-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right, #4f8701, #6baa0a);
            color: white;
            font-size: 18px;
            font-weight: 700;
            padding: 18px 45px;
            border-radius: 60px;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(107, 170, 10, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            letter-spacing: 0.5px;
            margin: 15px 0;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .mmc-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, #6baa0a, #4f8701);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .mmc-cta-button:hover::before {
            opacity: 1;
        }
        
        .mmc-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(107, 170, 10, 0.6);
        }
        
        .mmc-cta-button:active {
            transform: translateY(2px);
        }
        
        .mmc-cta-button i {
            margin-left: 10px;
            font-size: 20px;
            transition: transform 0.3s ease;
        }
        
        .mmc-cta-button:hover i {
            transform: translateX(5px);
        }
        
        /* Close button styling */
        .mmc-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .mmc-close-btn:hover {
            transform: rotate(90deg);
            background: rgba(79, 135, 1, 0.8);
        }
        
        .mmc-close-btn i {
            font-size: 22px;
            color: white;
        }
        
        /* Footer text styling */
        .mmc-footer-text {
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.6;
            font-weight: 300;
        }
        
        .mmc-highlight {
            color: #e8ffa6;
            font-weight: 600;
        }
        
        
        /* Animation keyframes */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { transform: translateY(50px) scale(0.9); opacity: 0; }
            to { transform: translateY(0) scale(1); opacity: 1; }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 576px) {
            .mmc-modal-content {
                width: 95%;
            }
            
            .mmc-modal-title {
                font-size: 26px;
            }
            
            .mmc-modal-subtitle {
                font-size: 16px;
                padding: 0 10px;
            }
            
            .mmc-cta-button {
                padding: 16px 35px;
                font-size: 16px;
            }
            
            .mmc-logo {
                width: 100px;
                height: 100px;
            }
            
            .mmc-modal-body {
                padding: 0 25px 30px;
            }
        }

        /* Modal backdrop styling */
.mmc-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999; /* Just below the modal */
    animation: fadeIn 0.8s ease forwards;
}

/* Ensure modal content has higher z-index */
.mmc-modal-content {
    z-index: 1000;
    position: relative; /* Important for z-index to work */
}

/* Update your existing fadeIn animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Sticky Button Styles */
.mmc-sticky-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: white; /* Very light green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: all 0.3s ease;
  border: 3px solid #c8e6c9; /* Slightly darker light green border */
  overflow: hidden;
}

.mmc-sticky-button:hover {
  transform: scale(1.1);
  background: #dcedc8; /* Slightly darker on hover */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mmc-sticky-button img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.8); /* Slightly darken the logo for contrast */
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.mmc-sticky-button.pulse {
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); /* Green glow effect */
}