        .add-cr-hero {
            text-align: center;
            padding: 2rem 2rem 1.5rem;
            position: relative;
        }

        .add-cr-hero::before {
            content: '✨';
            position: absolute;
            top: 10%;
            left: 15%;
            font-size: 2.5rem;
            opacity: 0.3;
            animation: float 4s ease-in-out infinite;
        }

        .add-cr-hero::after {
            content: '🎓';
            position: absolute;
            top: 20%;
            right: 15%;
            font-size: 2.5rem;
            opacity: 0.3;
            animation: float 4s ease-in-out infinite 1s;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3));
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 0.8rem;
            margin-bottom: 1rem;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInDown 0.6s ease;
        }

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

        .hero-title {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
            background: linear-gradient(135deg, #ffffff, #f0f0f0, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto 1.5rem;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .form-wrapper {
            max-width: 850px;
            margin: 0 auto;
            padding: 0 2rem 3rem;
        }

        .form-main {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-radius: 30px;
            padding: 2.5rem;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            animation: scaleIn 0.8s ease 0.5s both;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .form-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #667eea, #764ba2, #f093fb, #ff6b6b);
            background-size: 200% 100%;
            animation: gradientFlow 4s linear infinite;
        }

        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        .form-section {
            margin-bottom: 2rem;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }

        .section-icon {
            font-size: 1.5rem;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
            border-radius: 15px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

       

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-row.single {
            grid-template-columns: 1fr;
        }

        .input-group {
            position: relative;
        }

        .input-label {
            color: white;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .required-star {
            color: #ff6b6b;
            font-size: 1rem;
        }

        .input-field,
        .select-field {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
            font-weight: 400;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            font-family: 'Poppins', Arial, sans-serif;
        }

        .input-field:focus,
        .select-field:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
        }

        .input-field::placeholder {
            color: rgba(0, 0, 0, 0.4);
        }

        textarea.input-field {
            min-height: 110px;
            resize: vertical;
            line-height: 1.6;
        }

        .input-hint {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .upload-zone {
            border: 3px dashed rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            padding: 2rem 1.5rem;
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .upload-zone::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .upload-zone:hover::before {
            opacity: 1;
        }

        .upload-zone:hover {
            border-color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.02);
        }

        .upload-zone.dragover {
            border-color: #667eea;
            background: rgba(102, 126, 234, 0.1);
            transform: scale(1.05);
        }

        .upload-icon {
            font-size: 2rem;
            margin-bottom: 0.8rem;
            animation: float 3s ease-in-out infinite;
        }

        .upload-text {
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .upload-subtext {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        .file-input {
            display: none;
        }

        .preview-section {
            margin-top: 1.5rem;
            display: none;
            animation: fadeInUp 0.6s ease;
        }

        .preview-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 18px;
            padding: 1.2rem;
            display: flex;
            align-items: center;
            gap: 1.2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .preview-img {
            width: 90px;
            height: 90px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .preview-info {
            flex: 1;
            color: white;
        }

        .preview-name {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.4rem;
        }

        .preview-size {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .remove-btn {
            background: linear-gradient(135deg, rgba(248, 113, 113, 0.3), rgba(239, 68, 68, 0.3));
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .remove-btn:hover {
            background: linear-gradient(135deg, rgba(248, 113, 113, 0.5), rgba(239, 68, 68, 0.5));
            transform: scale(1.05);
        }

        .action-buttons {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }

        .submit-button {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ff9ff3);
            color: white;
            border: none;
            padding: 1rem 1rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 20px 40px rgba(255, 107, 107, 0.5);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }

        .submit-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transition: all 0.6s;
            transform: translate(-50%, -50%);
        }

        .submit-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .submit-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 30px 60px rgba(255, 107, 107, 0.7);
        }

        .cancel-button {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.4);
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            backdrop-filter: blur(10px);
            letter-spacing: 0.5px;
        }

        .cancel-button:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
        }

        .progress-indicator {
            display: none;
            margin-top: 1.5rem;
            text-align: center;
        }

        .spinner-large {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 0.8rem;
        }

        .progress-text {
            color: white;
            font-size: 1rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .form-wrapper {
                padding: 0 1rem 2.5rem;
            }

            .form-main {
                padding: 1.8rem 1.2rem;
                border-radius: 25px;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.6rem;
            }

            .section-icon {
                width: 40px;
                height: 40px;
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 1.1rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .upload-zone {
                padding: 1.5rem 1.2rem;
            }

            .action-buttons {
                flex-direction: column;
            }

            .submit-button,
            .cancel-button {
                width: 100%;
                padding: 1rem 2rem;
            }

            .add-cr-hero::before,
            .add-cr-hero::after {
                font-size: 2rem;
            }
        }

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.input-field.error,
.select-field.error {
    animation: shake 0.3s ease;
    border-color: #ff6b6b !important;
}

.input-field.success,
.select-field.success {
    border-color: #4ade80 !important;
}