/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.section-header i {
    margin-right: 0.5rem;
    color: var(--dark-blue);
}

.section-header h4 {
    color: var(--dark-blue);
    /*font-size: 20px;*/
    font-weight: 700;
    margin: 0;
}

/* Standard Form Controls */
.form-label {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Standard Form Controls */
.form-title {
    font-size: 28px;
}

.form-label {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control, .form-select {
    padding: var(--input-padding);
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}


/* Standard Buttons */
.btn-primary-custom {
    width: 100%;
    padding: var(--button-padding);
    background: linear-gradient(105deg, rgba(5, 7, 94, 1) 0%, var(--dark-blue) 50%);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.4);
}

.btn-secondary-custom {
    width: 100%;
    padding: var(--button-padding);
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-secondary-custom:hover {
    background: #f8f9fa;
    border-color: var(--royal-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.2);
}

.btn-outline-custom {
    width: 100%;
    padding: var(--button-padding);
    background: white;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}


/*form and download*/
.download-btn {
    background: linear-gradient(105deg, rgba(5, 7, 94, 1) 0%, var(--dark-blue) 50%);
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}
.form-icon i{
    font-size: 2.3rem;
    margin: 10px;
    color: var(--dark-blue);
    flex-shrink: 0;
}

.forms-scroll {
    max-height: 650px; /* adjust height as needed */
    overflow-y: auto;
}

.form-item:hover {
    background-color: #f1f6ff;
    transition: 0.2s;
}

.download-btn {
    background-color: #0d6efd;
    color: #fff;
    border: none;
}

.download-btn:hover {
    background-color: #0b5ed7;
    color: #fff;
}


/* Mobile Responsive */
@media (max-width: 991px) {
    .section-header h4 {
        font-size: 18px;
    }

    .form-title {
        font-size: 20px;
    }

    .btn-primary-custom {
        padding: 12px;
        font-size: 15px;
    }

}

@media (max-width: 576px) {
    .form-control, .form-select {
        padding: 11px 14px !important;
        font-size: 14px !important;
    }
}

