  
        /* Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-container {
            position: relative;
            width: 90%;
            max-width:500px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            transform: scale(0.9);
            transition: transform 0.4s;
        }
        
        .popup-overlay.active .popup-container {
            transform: scale(1);
        }
        
        .popup-header {
            background: #005791;
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        .popup-header h2 {
            font-size: 28px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .popup-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
        }
        
        .popup-content {
            display: flex;
            padding: 0;
        }
        
        .service-section {
            flex: 1;
            padding: 25px;
            position: relative;
        }
        
        .insurance-section {
            background: #f8f9fa;
            border-right: 1px solid #eaeaea;
        }
        
        .immigration-section {
            background: #f8f9fa;
        }
        
        .service-heading {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #3498db;
            display: flex;
            align-items: center;
        }
        
        .service-heading i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .service-text {
            color: #34495e;
            line-height: 1.6;
            font-size: 15px;
        }
        
        .service-text p {
            margin-bottom: 12px;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 35px;
            height: 35px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.4);
            transition: all 0.3s ease;
            z-index: 10;
            border: none;
        }
        
        .close-btn:hover {
            background: #c0392b;
            transform: rotate(90deg);
        }