.motiv8-induction {
    /* Add any global styles for the induction container here */
}

.motiv8-induction .induction-block {
    border-radius: 10px;
    margin-bottom: 2rem;
}

.motiv8-induction .induction-block h2 {
    color: #28a745;
}

.motiv8-induction .induction-block .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    transition: all 0.3s ease;
}

.motiv8-induction .induction-block .btn-success:hover {
    background-color: #218838;
    border-color: #fff;
}

.motiv8-induction .induction-content {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-top: 20px;
}

.motiv8-induction .induction-step h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.motiv8-induction .induction-complete {
    text-align: center;
    padding: 2rem;
    background-color: #d4edda;
    border-radius: 10px;
}

.motiv8-induction .induction-complete h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.motiv8-induction .timer-container {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.motiv8-induction .timer-display {
    font-weight: bold;
}

.motiv8-induction .card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.motiv8-induction .card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.motiv8-induction .form-check-input:checked {
    background-color: #28a745;
    border-color: #28a745;
}

.motiv8-induction .btn {
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.motiv8-induction .btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.motiv8-induction .btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.motiv8-induction .btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.motiv8-induction .btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.motiv8-induction .btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.motiv8-induction .btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}

.motiv8-induction .btn:disabled {
    opacity: 0.65;
    pointer-events: none;
}

.motiv8-induction .alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.motiv8-induction .alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.motiv8-induction .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.motiv8-induction .alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.motiv8-induction .alert-heading {
    color: inherit;
}

.motiv8-induction .mt-3 {
    margin-top: 1rem !important;
}

/* Progress bar styles */
.motiv8-induction .progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.motiv8-induction .progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width 0.6s ease;
}

.motiv8-induction .progress-bar-striped {
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 1rem 1rem;
}

.motiv8-induction .progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}

/* Additional utility classes */
.motiv8-induction .mb-3 {
    margin-bottom: 1rem !important;
}

.motiv8-induction .bg-success {
    background-color: #28a745 !important;
}

/* Form styles */
.motiv8-induction .form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.motiv8-induction .form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.motiv8-induction .form-check-label {
    margin-bottom: 0;
}

.motiv8-induction .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.motiv8-induction textarea.form-control {
    height: auto;
}

/* Card styles */
.motiv8-induction .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.motiv8-induction .card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.motiv8-induction .card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.motiv8-induction .card-text:last-child {
    margin-bottom: 0;
}

/* Timer container */
.motiv8-induction .timer-container {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.motiv8-induction .timer-container i {
    margin-right: 0.5rem;
}

/* Utility classes */
.motiv8-induction .text-center {
    text-align: center !important;
}

.motiv8-induction .mb-0 {
    margin-bottom: 0 !important;
}

.motiv8-induction .mt-4 {
    margin-top: 1.5rem !important;
}

.motiv8-induction .text-end {
    text-align: right !important;
}

.motiv8-induction .danger {
    color: red;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.motiv8-induction .wp-video{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.step-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:2rem;
}

.question .form-container {
    display: flex;
    gap:3rem;
}

.question .form-table {
    width: 100%;
}

.options-row {
    padding: 10px;
    background-color: #f9f9f9;
}

.option{
    padding-top: 1rem;
}

.options-list {
    margin-bottom: 10px;
}

/* Hero Section Styling to Match Screenshot */
.form-hero-section {
    background-color: #000;
    padding: 80px 0 60px;
    text-align: center;
}

.form-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-hero-title {
    color: #8eff00;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'DINPro', Arial, sans-serif;
}

.form-hero-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.form-hero-subtitle {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'DINPro', Arial, sans-serif;
}

.form-hero-subtext {
    color: #999;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Section Styling */
.form-section {
    background-color: #fff;
    padding: 50px 0 70px;
}

.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-hero-section {
        padding: 60px 0 40px;
    }
    
    .form-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .form-hero-subtitle {
        font-size: 20px;
    }
    
    .form-hero-text,
    .form-hero-subtext {
        font-size: 16px;
    }
}

/* Your existing volunteer-agreement-form CSS */
.volunteer-agreement-form {
    max-width: 1000px; /* Increased from 800px */
    margin: 0 auto;
    padding: 40px; /* Increased from 30px */
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Main heading - bigger */
.volunteer-agreement-form h3.gsection_title:first-of-type {
    color: #000;
    font-size: 28px; /* Increased from 24px */
    text-align: center;
    margin-bottom: 30px; /* Increased from 25px */
    padding-bottom: 18px; /* Increased from 15px */
    border-bottom: 2px solid #8eff00;
}

/* Section headings - bigger */
.volunteer-agreement-form .gsection_title {
    color: #000;
    font-size: 22px; /* Increased from 18px */
    font-weight: bold;
    margin-top: 35px; /* Increased from 30px */
    padding-bottom: 10px; /* Increased from 8px */
    border-bottom: 1px solid #ddd;
}

/* Scrollable agreement area - bigger */
.volunteer-agreement-form .gf_scroll_text {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 25px; /* Increased from 20px */
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    font-size: 16px; /* Added font size */
    line-height: 1.6; /* Added line height */
}

/* Form fields - bigger */
.volunteer-agreement-form input[type="text"],
.volunteer-agreement-form input[type="email"],
.volunteer-agreement-form input[type="number"] {
    padding: 12px; /* Increased from 10px */
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff !important;
    transition: border-color 0.2s;
    font-size: 16px; /* Added font size */
}

.volunteer-agreement-form input[type="text"]:focus,
.volunteer-agreement-form input[type="email"]:focus,
.volunteer-agreement-form input[type="number"]:focus {
    border-color: #8eff00;
    outline: none;
    box-shadow: 0 0 0 2px rgba(142, 255, 0, 0.2);
}

/* Signature area - keep completely original */
.volunteer-agreement-form .gfield_signature_container {
    border: 1px solid #ccc !important;
    background-color: #fff !important;
    border-radius: 4px;
}

/* Submit button - bigger */
.volunteer-agreement-form .btn-primary {
    background-color: #8eff00;
    color: #000;
    font-weight: bold;
    padding: 14px 35px; /* Increased from 12px 30px */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px; /* Added font size */
}

.volunteer-agreement-form .btn-primary:hover {
    background-color: #7de600;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Required field indicators */
.volunteer-agreement-form .gfield_required {
    color: #8eff00;
}

.volunteer-agreement-form .gfield_label {
    color: #b2b2b2;
    font-size: 16px; /* Added font size */
    margin-bottom: 8px; /* Added margin */
}

.volunteer-agreement-form .gsection {
    border-bottom: none !important;
}

/* Style the date fields to match other inputs */
.volunteer-agreement-form .gfield_date_day input,
.volunteer-agreement-form .gfield_date_month input,
.volunteer-agreement-form .gfield_date_year input {
    padding: 12px; /* Increased from 10px */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px; /* Added font size */
}

/* Add some spacing between date fields */
.gfield_date_day, .gfield_date_month, .gfield_date_year {
    margin-right: 8px !important; /* Increased from 5px */
}

/* Increase scrollable text height */
.volunteer-agreement-form .gf_scroll_text{
    height: 450px !important; /* Increased from 380px */
}

/* Navigation buttons - bigger */
.volunteer-agreement-form .gform_next_button,
.volunteer-agreement-form .gform_previous_button {
    background-color: #1D7CD4;
    color: #ffffff;
    font-weight: bold;
    padding: 14px 35px; /* Increased from 12px 30px */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem !important; /* Increased from 0.8125rem */
    vertical-align: middle;
    line-height: 1;
}

/* Submit button - bigger */
.volunteer-agreement-form #gform_submit_button_11, #gform_submit_button_12 {
    background-color: #8eff00;
    color: #000;
    font-weight: bold;
    padding: 14px 35px; /* Increased from 12px 30px */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem !important; /* Increased from 0.8125rem */
    vertical-align: middle;
    line-height: 1;
}

/* Increase spacing between form elements */
.volunteer-agreement-form .gfield {
    margin-bottom: 25px !important; /* Added spacing */
}

/* Increase spacing in the form */
.volunteer-agreement-form .gform_body {
    margin-bottom: 30px;
}