   body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #e0f2fe;
            color: #1e293b;
            overflow-x: hidden;
            min-height: 100vh;
            line-height: 1.6;
        }
        
        /* Animated gradient background */
        .background {
            position: fixed;
            width: 100%;
            height: 100%;
            background:linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            z-index: -2;
            opacity: 0.9;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Floating orbs
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: float 20s infinite ease-in-out;
            z-index: -1;
        }
        
        .orb1 {
            width: 400px;
            height: 400px;
            background: #3b82f6;
            top: -200px;
            left: -200px;
            animation-delay: 0s;
            opacity: 0.25;
        }
        
        .orb2 {
            width: 300px;
            height: 300px;
            background: #0ea5e9;
            bottom: -150px;
            right: -150px;
            animation-delay: 5s;
            opacity: 0.25;
        }
        
        .orb3 {
            width: 350px;
            height: 350px;
            background: #06b6d4;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 10s;
            opacity: 0.25;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        } */

        .section {
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }

        .form-container {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .form-container h2 {
            color: #1e293b;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
            font-size: 2.5rem;
        }

        .form-container p {
            text-align: center;
            color: #64748b;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .form-label {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
        }

        .form-control:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
            background: white;
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        select.form-control {
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(45deg, #3b82f6, #0ea5e9);
            border: none;
            padding: 12px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
            background: linear-gradient(45deg, #2563eb, #0284c7);
        }

        .text-muted {
            font-size: 0.9rem;
            color: #64748b !important;
        }

        .mb-3 {
            margin-bottom: 1.5rem !important;
        }

        .main {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease-out;
            padding-top: 120px;
        }
        
        .main h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #4f46e5 0%, #0066ff 50%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            line-height: 1.2;
        }
        
        .main p {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .experience-transition {
            transition: all 0.3s ease;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
        }

        .experience-transition.show {
            opacity: 1;
            max-height: 100px;
            margin-bottom: 1.5rem;
        }

        /* CSS for Centering and Responsiveness for  recaptcha*/
        .recaptcha-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
        }

        .g-recaptcha {
            transform: scale(0.65);              /* Slightly scale down for mobile */
            transform-origin: center center;     /* Keep it centered */
        }

        @media (min-width: 576px) {
            .g-recaptcha {
            transform: scale(1);
            }
        }

        /* File upload styling */
        .file-upload-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .file-upload-input {
            opacity: 0;
            position: absolute;
            z-index: -1;
        }

        .file-upload-label {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border: 2px dashed #e2e8f0;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            color: #64748b;
        }

        .file-upload-label:hover {
            border-color: #3b82f6;
            background: rgba(59, 130, 246, 0.05);
        }

        .file-upload-icon {
            font-size: 20px;
            color: #3b82f6;
        }

        .file-upload-text {
            flex: 1;
        }

        .file-upload-selected {
            color: #16a34a;
            font-weight: 500;
        }

        /* Progress bar for file upload */
        .upload-progress {
            display: none;
            margin-top: 10px;
        }

        .progress {
            height: 6px;
            border-radius: 3px;
            background-color: #e2e8f0;
        }

        .progress-bar {
            background: linear-gradient(45deg, #16a34a, #22c55e);
            transition: width 0.3s ease;
        }

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

        @media (max-width: 768px) {
            .form-container {
                padding: 20px;
                margin: 20px;
            }
            
            .btn-primary {
                width: 100%;
            }

            .recaptcha-box {
                width: 280px;
                transform: scale(0.9);
            }

            .main h1 {
                font-size: 2.5rem;
            }
        }

        /* Loading states */
        .btn-loading {
            position: relative;
            color: transparent;
        }

        .btn-loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }