
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        .body2 {
            background: linear-gradient(45deg, #1e3a8a, #60a5fa, #1e40af, #1e3a8a);
            background-size: 300% 300%;
            animation: gradientFlow 10s ease infinite;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }
        .popup-content {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.7));
            border-radius: 16px;
            width: 90%;
            max-width: 400px; /* Compact width */
            padding: 2rem;
            position: relative;
            box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: popIn 0.5s ease-out;
        }
        @keyframes popIn {
            from { transform: scale(0.8) rotate(1deg); opacity: 0; }
            to { transform: scale(1) rotate(0deg); opacity: 1; }
        }
        .close-btn {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            font-size: 1.25rem;
            cursor: pointer;
            color: #1e3a8a;
            transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
        }
        .close-btn:hover {
            color: #3b82f6;
            transform: scale(1.2) rotate(135deg);
            filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
        }
        .form-input {
            width: 100%;
            padding: 0.6rem 0.8rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        .form-input:focus {
            border-color: #1e3a8a;
            box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.25), inset 0 1px 2px rgba(0, 0, 0, 0.05);
            background: #ffffff;
            transform: translateY(-1px);
            outline: none;
        }
        .form-label {
            position: absolute;
            top: -0.5rem;
            left: 0.625rem;
            font-size: 0.7rem;
            font-weight: 500;
            color: #4b5563;
            background: transparent;
            padding: 0 0.25rem;
            transition: all 0.3s ease;
            transform-origin: left top;
        }
        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label {
            color: #1e3a8a;
            transform: scale(0.9) translateY(-0.5rem);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.95));
            padding: 0 0.3125rem;
        }
        .submit-btn {
            width: 100%;
            padding: 0.65rem 0.8rem;
            background: linear-gradient(90deg, #1e3a8a, #60a5fa, #1e3a8a);
            background-size: 200% 200%;
            animation: gradientFlow 4s ease infinite;
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transform: translateY(0);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-0.125rem);
            box-shadow: 0 0.5rem 1.25rem rgba(30, 58, 138, 0.5), 0 0 0.75rem rgba(59, 130, 246, 0.3);
        }
        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            transition: 0.5s;
        }
        .submit-btn:hover::before {
            left: 100%;
        }
        .glow-effect {
            position: relative;
        }
        .glow-effect::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 8px;
            box-shadow: 0 0 0.9375rem rgba(59, 130, 246, 0.25);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        .glow-effect:hover::after {
            opacity: 1;
        }
        .contact-btn {
            padding: 0.625rem 1.5rem;
            background: linear-gradient(to right, #1e3a8a, #60a5fa);
            color: #ffffff;
            border: none;
            border-radius: 0.75rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
        }
        .contact-btn:hover {
            background: linear-gradient(to right, #1e40af, #3b82f6);
            transform: scale(1.05);
            box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.3);
        }
        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @media (max-width: 640px) {
            .popup-content {
                width: 85%;
                padding: 1.5rem;
                border-radius: 12px;
            }
            .close-btn {
                font-size: 1.1rem;
                top: 0.5rem;
                right: 0.5rem;
            }
            h2 {
                font-size: 1.25rem;
                margin-bottom: 1.5rem;
            }
            .form-input {
                padding: 0.5rem 0.75rem;
                font-size: 0.8rem;
            }
            .form-label {
                font-size: 0.65rem;
            }
            .submit-btn {
                padding: 0.5rem 0.75rem;
                font-size: 0.85rem;
            }
            .contact-btn {
                padding: 0.5rem 1.25rem;
                font-size: 0.85rem;
            }
        }
