:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --success: #10b981;
    --gray: #94a3b8;
    --dark-gray: #64748b;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.navbar-brand {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: var(--primary);
}

.navbar-brand span {
    color: var(--secondary);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
}

.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Roboto Slab', serif;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
}

.required-field::after {
    content: " *";
    color: #dc3545;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

/* Add to your existing CSS */
.btn-light {
    background-color: white;
    color: var(--primary);
    border: 2px solid white;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Ensure button is above the background pattern */
.hero-section .btn {
    position: relative;
    z-index: 1;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 20px;
}

.form-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.section-number {
    background-color: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: 600;
}

.section-title-text {
    font-family: 'Roboto Slab', serif;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.video-upload-container {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s;
}

.video-upload-container:hover {
    border-color: var(--primary);
    background-color: rgba(37, 99, 235, 0.05);
}

.video-upload-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.file-input-label {
    cursor: pointer;
}

.file-name {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 30px 0;
    margin-top: 80px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container {
        padding: 25px;
        margin-top: -30px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 20px;
    }

    .form-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
}