@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */
:root {
    --primary-font: "Outfit";
    --secondary-font: "Roboto";
    --primary-color: #3e7b27;
    --secondary-color: #85a947;
    --gradient: linear-gradient(180deg,
            rgba(170, 170, 170, 0.1) 0%,
            #cfcfcf 100%);
    --facebook-icon-bg-color: #3b5899;
    --twitter-icon-bg-color: #000000;
    --instagram-icon-bg-color: #ff00aa;
    --linkedin-icon-bg-color: #0077b4;
    --youtube-icon-bg-color: #ce201e;
    --blue-color: #00b3fe;
    --green-color-1: #e8ffe0;
    --green-color: #0ccd26;
    --border-color: #333;
    --one-section-bg: #d4d4d4;
    --one-bg-1: #f8f9fa;
    --from-text: #bbb;
    --white: #ffffff;
    --black: #000000;
    --red-color: #fe0000;
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --heading-top-bottom: linear-gradient(90deg, #ffa500, #ff6f00);
    --card-box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.03),
        0px -6px 15px rgba(0, 0, 0, 0.03), 6px 0px 15px rgba(0, 0, 0, 0.03),
        -6px 0px 15px rgba(0, 0, 0, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

p {
    font-family: var(--secondary-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    margin-top: 0;
}

a {
    text-decoration: none !important;
}

ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

button {
    border: none;
    outline: none;
}

input {
    outline: none;
}

body {
    background: var(--white);
}

/*====================
  Reset Default CSS End
  ====================*/

/* About Hero Section Start */
#about_hero_section {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url("../img/home/page-hero-img.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#about_hero_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 87, 28, 0.5);
    z-index: 1;
}

.about_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.about_hero_content h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about_hero_btn {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.about_hero_btn a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.about_hero_btn a:first-child {
    background-color: var(--white);
    color: var(--primary-color);
}

.about_hero_btn a:first-child:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.about_hero_btn a:last-child {
    background-color: transparent;
    color: var(--white);
}

.about_hero_btn a:last-child:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* About Hero Section End */


/* Volunteer Section Start */


#volunteer_section {
    padding: 50px 0px;
    margin: 0 auto;
    background: linear-gradient(to right, #f0f4f8, #d9e4f5);
}

.volunteer_form_wrapper {
    max-width: 70%;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.volunteer_from_heading {
    text-align: center;
    margin-bottom: 30px;
    font-family: var(--primary-font);
    font-weight: bold;
    font-size: 32px;
    color: var(--black);
}

.form_section {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.form_group {
    display: flex;
    flex-direction: column;
}

.form_label {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--black);
    font-family: var(--secondary-font);
    font-size: 16px;
}

.form-control {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #fff;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
    /* subtle green glow */
}

textarea.form-control {
    resize: vertical;
}

.form-row {
    display: grid;
    gap: 20px;
}

@media (min-width: 600px) {
    .form-row.two-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row.four-col {
        grid-template-columns: repeat(4, 1fr);
    }
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 600px) {
    .form-footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

.form_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.btn_submit,
.btn_save {
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn_submit {
    background: #28a745;
    color: white;
}

.btn_submit:hover {
    background: #218838;
    box-shadow: 0 6px 12px rgba(33, 136, 56, 0.3);
}

.btn_save {
    background: #6c757d;
    color: white;
}

.btn_save:hover {
    background: #5a6268;
    box-shadow: 0 6px 12px rgba(90, 98, 104, 0.3);
}

.error {
    font-size: 13px;
    color: red;
    margin-top: 4px;
}


@media screen and (max-width: 768px) {
    .volunteer_form_wrapper {
        max-width: 100%;
    }

}



/* Volunteer Section End */