/* Volunteer Page Styles */
:root {
    --primary-color: #32bdea;
    --secondary-color: #c850c0;
    --primary-gradient: linear-gradient(
        -135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    --secondary-gradient: linear-gradient(
        -135deg,
        var(--secondary-color),
        var(--primary-color)
    );
    --dark-color: #1a2a3a;
    --light-color: #ffffff;
    --text-color: #444444;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
}
/* Video Hero Section */
.video-hero {
    position: relative;
    height: 100vh;
    background-color: var(--dark-color);
    overflow: hidden;
    background-image: url("../images/20250521.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/20250521.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.video-hero.video-loaded .video-fallback {
    display: none;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(50, 189, 234, 0.7),
        rgba(200, 80, 192, 0.7)
    );
}
.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 15px;
    z-index: 1;
}

.hero-content .container .row .col-lg-10 {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    max-width: 900px;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}
.hero-content .lead {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 35px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color: #f8f9fa;
    font-weight: 400;
}
.hero-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-btn:hover {
    background: rgba(26, 42, 58, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
}
.hero-btn:hover i {
    transform: translateY(3px);
}
/* Impact Stats Section */
.impact-stats {
    padding: 60px 0;
    background: #fff;
    position: relative;
    z-index: 1;
    margin-top: -100px;
}
.stats-wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.stat-item {
    margin-bottom: 15px;
}
.stat-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
    line-height: 1;
}
.stat-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}
.stat-label {
    color: #777;
    font-size: 16px;
}
/* Section Headings */
.section-heading {
    margin-bottom: 60px;
}
.section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}
.section-description {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}
.heading-line {
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
    margin: 0 auto 20px;
    border-radius: 2px;
}
/* How You Can Help Section */
.how-you-help {
    padding: 100px 0;
    background: var(--light-bg);
}
.help-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}
.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-color);
}
.help-card.featured {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(200, 80, 192, 0.1);
}
.featured-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-gradient);
    color: #fff;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 500;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(200, 80, 192, 0.3);
}
.help-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(50, 189, 234, 0.2);
}
.help-card:hover .help-icon {
    transform: scale(1.1);
    background: var(--secondary-gradient);
    box-shadow: 0 8px 25px rgba(200, 80, 192, 0.3);
}
.help-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}
.help-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}
.help-features {
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}
.help-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}
.help-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}
.time-commitment {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
}
.time-commitment i {
    margin-right: 5px;
    color: var(--primary-color);
}
/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--light-bg);
}
.form-wrapper {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.form-header {
    background: var(--primary-gradient);
    padding: 30px;
    text-align: center;
    color: #fff;
}
.form-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.form-header p {
    opacity: 0.9;
    margin: 0;
}
/* Progress Bar */
.form-progress {
    padding: 20px 30px;
    background: #f8f9fa;
}
.form-progress .progress {
    height: 8px;
    background: #e0e0e0;
}
.form-progress-bar {
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}
/* Form Steps */
.form-step {
    padding: 30px;
    display: none;
}
.form-step.active {
    display: block;
}
.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}
.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-right: 10px;
}
/* Form Controls */
.form-control {
    height: auto;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 15px;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(50, 189, 234, 0.1);
}
.form-control.is-invalid {
    border-color: #dc3545;
}
.form-control.is-valid {
    border-color: #28a745;
}
.required {
    color: #ff3366;
}
/* Custom Checkboxes */
.availability-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.custom-control {
    min-height: 1.5rem;
    padding-left: 1.5rem;
}
.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    cursor: pointer;
}
.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-color: #fff;
    border: 1px solid #adb5bd;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}
.custom-checkbox .custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50% / 50% 50%;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
/* Form Navigation */
.form-navigation {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prev-btn,
.next-btn,
.submit-btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.prev-btn {
    background: #f0f0f0;
    color: var(--dark-color);
}
.prev-btn:hover {
    background: #e0e0e0;
}
.next-btn,
.submit-btn {
    background: var(--primary-gradient);
    color: #fff;
}
.next-btn:hover,
.submit-btn:hover {
    background: var(--secondary-gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(50, 189, 234, 0.3);
}
.prev-btn i {
    margin-right: 5px;
}
.next-btn i,
.submit-btn i {
    margin-left: 5px;
}
/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px);
    color: #fff;
    text-decoration: none;
}
/* Alerts */
.alert {
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}
.alert-success {
    background-color: rgba(46, 213, 115, 0.1);
    color: #27ae60;
}
.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}
.alert i {
    margin-right: 10px;
}
/* Hero Content Responsive Styles */
@media (max-width: 992px) {
    .hero-content .container .row .col-lg-10 {
        padding: 40px 30px;
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content .lead {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-content .container .row .col-lg-10 {
        padding: 35px 25px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content .container .row .col-lg-10 {
        padding: 30px 20px;
        margin: 0 10px;
        max-width: calc(100% - 20px);
        border-radius: 12px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-content .lead {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Additional Responsive Design */
@media (max-width: 991px) {
    .video-hero {
        min-height: 80vh;
    }

    .stats-wrapper {
        padding: 30px 20px;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .form-wrapper {
        margin: 0 15px;
    }
}
@media (max-width: 767px) {
    .video-hero {
        height: auto;
        min-height: 100vh;
    }
    .hero-content {
        padding: 80px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content .lead {
        font-size: 16px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .stats-wrapper {
        margin-top: -50px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .form-navigation button {
        width: 100%;
        justify-content: center;
    }

    .prev-btn {
        order: 2;
    }

    .next-btn,
    .submit-btn {
        order: 1;
    }
}
@media (max-width: 576px) {
    .availability-options {
        flex-direction: column;
    }
    .help-card {
        margin-bottom: 20px;
    }

    .form-step {
        padding: 20px;
    }
}
