* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

body {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    overflow-x: hidden;
    font-family: "Outfit", sans-serif;
    background: linear-gradient(180deg,
            #82bdb0,
            #4d8db3);
}

h1,
h2,
h3,
p,
a,
button {
    text-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.home,
.gallery,
.about {
    padding-top: 70px;
}

section {
    padding: 100px 10%;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    background: #15181a00;
    z-index: 1000;
}

header:hover,
header.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}

.logo {
    width: 70px;
    position: absolute;
}

.logo img {
    width: 100%;
}

.navbar {
    margin-left: auto;
    z-index: 999;
}

.navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-right: 40px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.navbar a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    display: none;
    z-index: 998;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 40%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
    z-index: 999;
}

.mobile-menu.active {
    left: 0;
}

.overlay.active {
    display: block;
}

.menu-btn {
    display: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
}

.close-btn:hover {
    color: crimson;
}


.mobile-menu ul {
    list-style: none;
    margin-top: 50px;
}

.mobile-menu li {
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
}

.mobile-menu a {
    text-decoration: none;
    color: #444;
    font-size: 22px;
    font-weight: bold;
}

.bottom-links {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.bottom-links a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #333;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    transition: .3s;
    margin-bottom: 50px;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -55%);
}

.hero-title h1 {
    font-size: clamp(3rem, 8vw, 9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.tagline {
    margin-top: -15px;
    margin-left: 6px;
    font-size: clamp(1rem, 1.35vw, 1.3rem);
    color: #000;
    letter-spacing: clamp(0.2rem, 1em, 2rem);
    word-spacing: clamp(0.5rem, 5.5em, 10rem);
}

.description {
    margin-top: 20px;
    margin-left: 4px;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    word-spacing: clamp(0.1rem, 0.2em, 1rem);
    letter-spacing: 1px;
    line-height: 1.6;
    color: #fff;
}

.hero-btns {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
}

#btn1 {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    height: 40px;
    width: 100px;
}

#btn1:hover {
    color: #68a294;
    cursor: pointer;
}

#btn1:active {
    color: white;
    box-shadow: none;
}

#btn2 {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    height: 40px;
    width: 300px;
}

#btn2:hover {
    color: #68a294;
    cursor: pointer;
}

#btn2:active {
    color: white;
    box-shadow: none;
}

@media(max-width:768px) {
    .menu-btn {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.footer {
    background-color: rgb(66, 66, 66);
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.footer p {
    font-size: 18px;
    font-weight: 500;
}

.footer a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.services {
    margin-top: 30vh;
}

.services h2 {
    margin-bottom: 20px;
}

.cta h2 {
    font-weight: 600;
    font-size: 50px;
}

.cta p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    word-spacing: clamp(0.1rem, 0.2em, 1rem);
    letter-spacing: 1px;
}

.whycard {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-top: 20px;
}

.whycard::-webkit-scrollbar {
    height: 12px;
}

.whycard::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
}

.whycard::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg,
            rgba(155, 206, 193, .9),
            rgba(255, 255, 255, .6));

    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.whycard::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg,
            rgba(155, 206, 193, 1),
            rgba(255, 255, 255, .8));
}

.imgcard {
    flex: 0 0 350px;
    height: auto;
}

.imgcard img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
}

.whylist {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.whylabel {
    font-weight: 500;
    gap: 10px;
}

.whyans {
    gap: 10px;
}

.whybtn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    height: 40px;
    width: 100%;
    margin-top: 10px;
}

.whybtn:hover {
    color: #68a294;
    cursor: pointer;
}

.whybtn:active {
    color: white;
    box-shadow: none;
}

#whyus {
    margin-top: 20px;
    font-weight: 600;
    font-size: 50px;
}

.why ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-left: 10px;
}

.stats {
    margin-top: -50px;
}

.formcard {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(70%, 700px);
    padding: 35px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .25);
    display: none;
    flex-direction: column;
    gap: 25px;
    color: white;
    z-index: 9999;
}

.formcard.active {
    display: flex;
}

.formhead {
    text-align: center;
}

.formhead p {
    font-size: 2rem;
    font-weight: 700;
    color: #68a294;
}

#helpsection {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#helpsection label {
    font-size: .95rem;
    color: #FFEBD3;
}

#helpsection input,
#formbody {
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 1rem;
    box-sizing: border-box;
    transition: .3s;
}

#helpsection input::placeholder,
#formbody::placeholder {
    color: rgba(255, 255, 255, .95);
}

#helpsection input:focus,
#formbody:focus {
    background: rgba(255, 255, 255, .18);
    border: 1px solid #9BCEC1;
}

#formbody {
    min-height: 140px;
    resize: none;
}

.formcard>div:last-child {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.formcard button {
    flex: 1;
    height: 50px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.formcard button:last-child {
    background: #9BCEC1;
    color: #15181a;
}

.formcard button:last-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(155, 206, 193, .4);
}

#fromclosebtn,
#volunteerClose {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    color: white;
}

#fromclosebtn:hover {
    background: rgba(255, 255, 255, .08);
}

.whyreason {
    width: 100%;
    margin-top: 20px;
}

.whyreason ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.whyreason li {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-size: .9rem;
    color: white;
}

.whyreason li:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.message-section {
    padding: 80px 0;
    overflow: hidden;
}

.message-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 50px;
}

.marquee {
    padding-top: 20px;
    padding-bottom: 30px;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.msg-card {
    flex-shrink: 0;
    min-width: 260px;
    padding: 22px 30px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    border-radius: 20px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    transition: .3s;
}

.msg-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .18);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width:768px) {

    .hero {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 200px 25px 40px;

    }

    .hero-title {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
    }

    .hero-title h1 {
        white-space: normal;
        font-size: clamp(2.4rem, 10vw, 3.5rem);
        line-height: .95;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .tagline {
        font-size: 1rem;
        font-weight: 600;
        word-spacing: normal;
        letter-spacing: .35rem;
        text-transform: uppercase;
        color: #baccc7;
        margin-bottom: 25px;
    }

    .description {
        font-size: 1rem;
        line-height: 1.8;
        max-width: 340px;
        margin: 0 auto;
        color: #d9d9d9;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .hero-btns button {
        width: 100%;
        max-width: 320px;
        height: 58px;
        margin: auto;
        border-radius: 18px;
        font-size: 1rem;
        font-weight: 600;
    }

    .whycard {
        display: flex;
        flex-direction: column;
    }

    .services {
        margin-top: -50px;
    }
}

@media (min-width:769px) and (max-width:1178px) {

    .hero {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 170px 60px 60px;
    }

    .hero-title {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
        max-width: 750px;
    }

    .hero-title h1 {

        font-size: clamp(4.0rem, 8vw, 6rem);
        line-height: .95;
        font-weight: 800;
        margin-bottom: 20px;

    }

    .tagline {

        font-size: 1.15rem;
        font-weight: 600;
        letter-spacing: .5rem;
        text-transform: uppercase;
        color: #baccc7;
        margin-bottom: 30px;

    }

    .description {

        max-width: 600px;
        margin: 0 auto;
        font-size: 1.15rem;
        line-height: 1.8;
        color: #d9d9d9;

    }

    .hero-btns {

        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 45px;

    }

    .hero-btns button {

        width: 250px;
        height: 60px;
        border-radius: 18px;
        font-size: 1rem;
        font-weight: 600;

    }

    .whycard {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;

    }

    .services {
        margin-top: -100px;
    }

}
