.section-padding-80s-0{padding:60px 0px;}
        /* Volunteer Page Styles */
        .section-heading{padding-top:60px;}
.elements-area h3{text-align: center; padding: 50px 0 20px;}
/* Gradient Headings */
.gradient-heading {
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--title-font);
    position: relative;
    display: inline-block;
    animation: headingFadeIn 1s ease-in-out;
}

.gradient-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    border-radius: 2px;
}

@keyframes headingFadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

h3 i {
    margin-right: 10px;
    vertical-align: middle;
}

/* Register/Partner Now Button */
.register-now-btn {
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

.register-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Popup Form */
.white-popup {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.volunteer-form .form-group {
    margin-bottom: 20px;
}

.volunteer-form label {
    font-family: var(--title-font);
    font-size: 1rem;
    color: var(--theme-color);
    margin-bottom: 5px;
    display: block;
}

.volunteer-form .form-control {
    border-radius: 50px;
    border: 1px solid #ccc;
    padding: 10px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.volunteer-form .form-control:focus {
    border-color: var(--theme-color2);
    outline: none;
    box-shadow: 0 0 5px rgba(245, 134, 56, 0.3);
}

.volunteer-form textarea.form-control {
    border-radius: 10px;
    resize: vertical;
}

.volunteer-form select.form-control {
    border-radius: 50px;
}

.volunteer-form button {
    background: var(--theme-color);
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    transition: background 0.3s ease;
}

.volunteer-form button:hover {
    background: var(--theme-color2);
}

/* Opportunity/Partnership Cards */
.opportunity-card, .partnership-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.opportunity-card:hover, .partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.opportunity-card i, .partnership-card i {
    margin-bottom: 15px;
    color: var(--theme-color2);
}

.opportunity-card h4, .partnership-card h4 {
    font-family: var(--title-font);
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.opportunity-card p, .partnership-card p {
    font-size: 1rem;
    color: #666;
}

/* Volunteer Stories Cards */
.volunteer-card {
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color2) 100%);
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.volunteer-card:hover {
    transform: scale(1.05);
}

.volunteer-card i {
    margin-bottom: 15px;
}

.volunteer-card h5 {
    font-family: var(--title-font);
    font-size: 1.25rem;
    margin-bottom: 10px; color:#ffffff;
}

.volunteer-card p {
    font-size: 0.9rem;
    margin-bottom: 15px; color:#ffffff;
}

.volunteer-card .btn {
    background: #fff;
    color: var(--theme-color);
    border: none;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.volunteer-card .btn:hover {
    background: var(--theme-color2);
    color: #fff;
}

/* Registration Steps */
.registration-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.registration-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.registration-step-header .step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--theme-color2);
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.registration-step-header h4 {
    font-family: var(--title-font);
    font-size: 1.4rem;
    color: var(--theme-color);
    margin: 0;
}

.registration-card ul {
    padding-left: 20px;
    margin: 0;
}

.registration-card ul li {
    list-style-type: disc;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

/* FAQs */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.faq-question h5 {
    font-family: var(--title-font);
    font-size: 1.1rem;
    color: var(--theme-color);
    margin: 0;
    flex-grow: 1;
}

.faq-question .faq-toggle {
    font-size: 1rem;
    color: var(--theme-color2);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    font-size: 1rem;
    color: #666;
    background: #f8f9fa;
    animation: slideDown 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Social Sharing */
.social-sharing .addtoany .a2a_kit a {
    margin: 0 5px;
    font-size: 1.5rem;
    color: var(--theme-color);
    transition: color 0.3s ease;
}

.social-sharing .addtoany .a2a_kit a:hover {
    color: var(--theme-color2);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .gradient-heading {
        font-size: 1.8rem;
    }

    .opportunity-card, .partnership-card, .volunteer-card, .registration-card, .faq-item {
        margin-bottom: 20px;
    }

    .opportunity-card h4, .partnership-card h4, .volunteer-card h5, .registration-step-header h4, .faq-question h5 {
        font-size: 1.2rem;
    }

    .volunteer-card p, .partnership-card p, .registration-card ul li, .faq-answer p {
        font-size: 0.85rem;
    }

    .registration-step-header .step-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 1rem;
    }

    .white-popup {
        padding: 20px;
    }

    .volunteer-form .form-control {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .volunteer-form button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

.guidelines {
            display: flex;
            flex-wrap: wrap;
        }
        .column {
            flex: 1;
            min-width: 300px;
        }
        .column h2 {
            color: white;
            padding: 15px;
            margin: 0;
            font-size: 24px;
            text-align: center;
        }
        .dos h2 {
            background-color: #27aae1;
        }
        .donts h2 {
            background-color: #27aae1;
        }
        .guideline-item {
            padding: 15px;
            border-bottom: 1px solid #dddddd;
            min-height: 50px;
        }
        .dos .guideline-item {
            background-color: #f9a857;
        }
        .donts .guideline-item {
            background-color: #78c4dd;
        }
        .footer {
            background-color: #27aae1;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 18px;
            font-weight: bold;
        }
        .final-note {
            text-align: center;
            padding: 15px;
            font-size: 16px;
            font-weight: bold;
        }