﻿* {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body, html {
    overflow-x: clip;
}
:root {
    --primary: #730000; /*(115, 0, 0)*/
    --secondary: #FDC115; /*(253, 193, 21)*/
}
/*---------------- fonts ---------------------*/
.montserrat-thin {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}
.montserrat-medium {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.montserrat-semibold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.montserrat-bold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.inter-semibold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
/*================== custom classes===========*/
.themePrimary {
    color: var(--primary);
}
.themePrimary-bg {
    background-color: var(--primary);
}
.themeSecondary {
    color: var(--secondary);
}
.themeSecondary-bg {
    background-color: var(--secondary);
}

.custom-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff !important;
    background-color: var(--primary);
    padding: 8px 20px;
    border: 1px solid black;
    border-radius: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .custom-btn:hover {
        background-color: #fff;
        color: var(--primary) !important;
        border-color: var(--primary);
        text-decoration: none;
    }

.custom-btn-outline {
    display: inline-block;
    text-decoration: none;
    color: var(--primary) !important;
    background-color: #fff;
    padding: 8px 20px;
    border: 1px solid var(--primary);
    border-radius: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .custom-btn-outline:hover {
        background-color: var(--primary);
        color: #fff !important;
        border-color: var(--primary);
        text-decoration: none;
    }

.custom-btn-mobilenav {
    display: inline-block;
    text-decoration: none;
    color: var(--primary) !important;
    background-color: #fff;
    padding: 8px 20px;
    border: 1px solid black;
    border-radius: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.border-radius{
    border-radius: 18px;
}

#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--primary);
    color: white;
    border: 0.5px solid var(--secondary);
    border-radius: 50%;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 1000;
}

    #topBtn:hover {
        border: 1px solid var(--primary);
        background-color: #fff;
        color: var(--primary);
    }
/*=================== layout page ==================*/
/*---------- header -----------*/
.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.navbar {
    display: flex;
    align-items: flex-end; /* pushes content to bottom */
    min-height: 150px;
    position: relative;
}

    .navbar .navbar-collapse,
    .navbar .d-flex {
        align-items: end;
    }

.logo-center .logo {
    height: 130px;
}

.logo-center .logo-name {
    height: 42px;
    margin-top: 5px;
}
.navbar-nav .nav-link {
    position: relative;
    color: black;
    padding: 8px 12px !important;
    border-radius: 18px;
    overflow: hidden;
    z-index: 1;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: 18px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover::before {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: #fff;
}

.overlay-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    height: 100vh;
    background: var(--secondary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease;
}

    .overlay-menu.active {
        right: 0;
    }

.overlay-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

    .overlay-links li {
        margin: 20px 0;
    }

        .overlay-links li a {
            font-size: 1.2rem;
            color: #000;
            font-weight: 400;
            text-decoration: none;
            transition: color 0.3s;
        }

            .overlay-links li a:hover {
                color: #fff;
            }

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}
.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--secondary);
    color: #111;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all .35s ease;
}

    .donate-btn .icon {
        width: 38px;
        height: 38px;
        background: #fff;
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 16px;
        transition: all .35s ease;
    }

    .donate-btn:hover {
        color:var(--primary);
    }

        .donate-btn:hover .icon {
            background: var(--primary);
            color: #fff;
        }

/*---- footer ----*/
.main-footer {
    position: relative;
    background: linear-gradient(135deg,var(--secondary),var(--primary));
    color: #fff;
    overflow: hidden;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-heading {
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #fff !important;
        text-decoration: none;
        transition: .3s;
    }

        .footer-links a:hover {
            color: var(--primary) !important;
            padding-left: 6px;
        }

.social-icons {
    margin-top: 20px;
}

    .social-icons a {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #ffffff15;
        border-radius: 50%;
        margin-right: 10px;
        color: #fff !important;
        text-decoration:none;
        transition: .3s;
    }

        .social-icons a:hover {
            background: var(--secondary);
            color: #730000 !important;
        }
/*============== Home page =================*/
.simple-hero {
    position: relative;
    height: 90vh;
    background: url('/images/banner/home-banner-img.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
    .simple-hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%; 
        background: linear-gradient( to top, rgba(253,193,21,.75) 0%, rgba(253,193,21,.45) 40%, rgba(253,193,21,0) 100% );
        z-index: 1;
    }

/* wrapper alignment */
.simple-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    max-width:1200px;
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: clamp(2.3rem,4vw,3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .5px;
    margin-bottom: 14px;
    text-shadow: 0 5px 18px rgba(0,0,0,.75);
}
/* accent line */
    .hero-title::after {
        content: "";
        display: block;
        width: 130px;
        height: 3px;
        margin: 22px auto 0;
        background: #FDC115;
        border-radius: 50px;
        box-shadow: 0 0 18px rgba(253,193,21,.9);
    }

.hero-sub {
    position: relative;
    z-index: 2;
    font-size: 22px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 10px;
    line-height: 1.7;
    letter-spacing: .7px;
    color: #fff;
    opacity: .95;
    text-shadow: 0 4px 12px rgba(0,0,0,.7);
}

    

    /* organic shade shape */
    /*.hero-title::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(253, 193, 21,.45);
        z-index: -1;
        clip-path: ellipse(75% 60% at 50% 50%);
        filter: blur(6px);
    }*/

/* shape shared */
.shape-top,
.shape-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index:3;
}

.shape-top {
    top: 0;
}

.shape-bottom {
    bottom: 0;
}

    .shape-top svg,
    .shape-bottom svg {
        width: 100%;
        height: 80px;
        display: block;
    }

.impact-heading {
    position: relative;
    overflow: hidden;
}

    .impact-heading::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 90%; 
        height: 100%;
        background: url('/images/stroke-img.png') no-repeat center;
        background-size: 100% 100%; /* stretch to fill */
        opacity: 0.5;
        z-index: 0;
    }

.impact-title {
    position: relative;
    z-index: 1;
}
/*-- about section --*/

.about-img-wrap {
    position: relative;
}

.floating-card {
    position: absolute;
    bottom: -25px;
    left: 30px;
    background: #730000;
    color: #fff;
    padding: 18px 26px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

    .floating-card h4 {
        font-size: 28px;
        margin: 0;
    }

    .floating-card p {
        margin: 0;
        font-size: 14px;
    }
/*-- gallery section --*/
.smooth-gallery {
    position: relative;
    background: url('/images/gallery-bg-img.jpg') center/cover no-repeat;
    overflow: hidden;
}
    .smooth-gallery .overlay {
        position: absolute;
        inset: 0;
/*        background: rgba(253, 193, 21,.3);
*/        z-index: 1;
    }
    .smooth-gallery .container-fluid {
        position: relative;
        z-index: 5;
    }
    .smooth-gallery h2 {
        color:rgba(16,16,16);
    }
    .slider {
        overflow: hidden;
        position: relative;
    }

.slide-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.slider:hover .slide-track {
    animation-play-state: paused;
    cursor:crosshair;
}
.card {
    width: 260px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--secondary);
    text-align: center;
}

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .card h5 {
        padding: 15px;
    }

/* animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
/*-- cta section --*/
.section-tag {
    background: var(--secondary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .8rem;
    letter-spacing: 1px;
}


/* FORM CARD */
.volunteer-card {
    backdrop-filter: blur(14px);
    background: linear-gradient(135deg,#73000022,#FDC11533,#fff6d6);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,.3);
}

.form-title {
    font-weight: 700;
    margin-bottom: 25px;
}

.volunteer-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.volunteer-card input,
.volunteer-card textarea {
    border: none;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f7f7f7;
    outline: none;
}

.volunteer-card button {
    background: rgba(115,0,0,.5);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

    .volunteer-card button:hover {
        background: rgba(253, 193, 21,.5);
    }

/*=================== About Us page ====================*/
.inner-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.about-page {
    background: url('/images/banner/aboutUs-banner.jpg') center/cover no-repeat;
}
.contact-page {
    background: url('/images/banner/contact-banner.jpg') center/cover no-repeat;
}
.donate-page {
    background: url('/images/banner/donate-page-banner.jpg') center/cover no-repeat;
}
.inner-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient( to top, rgba(253,193,21,.75) 0%, rgba(253,193,21,.45) 40%, rgba(253,193,21,0) 100% );
    z-index: 1;
}

/*---------------------*/
.tagline {
    color: #FDC115;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

    .about-stats h3 {
        color: var(--primary);
        font-weight: 700;
        margin: 0;
    }

    .about-stats span {
        font-size: 14px;
        color: #777;
    }
    /*--vm --*/
.vm-abstract {
    position: relative;
    background: linear-gradient(135deg,#fff,#fff8e7);
    overflow: hidden;
}

    /* decorative background shapes */
    .vm-abstract::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: #FDC115;
        border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
        top: -120px;
        left: -120px;
        opacity: .25;
    }

    .vm-abstract::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: #730000;
        border-radius: 50%;
        bottom: -120px;
        right: -120px;
        opacity: .08;
    }

/* vision blob */
.vision-shape {
    background: var(--primary);
    color: #fff;
    padding: 60px;
    border-radius: 60% 40% 50% 70% / 60% 30% 70% 40%;
    position: relative;
    z-index: 2;
    transition: .4s;
}

    .vision-shape h3 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .vision-shape:hover {
        transform: scale(1.03);
    }

/* mission glass panel */
.mission-panel {
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(12px);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(253,193,21,.4);
    transition: .4s;
}

    .mission-panel h3 {
        color: #730000;
        margin-bottom: 15px;
        font-weight: 700;
    }

    


.founder-img-wrap {
    width: 280px;
    height: 280px;
    margin: auto;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
}

    .founder-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

/* name */
.founder-name {
    font-family: cursive;
    font-size: 2rem;
    color: var(--primary);
    margin: 10px 0 15px;
}

.founder-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #444;
    border-left: 5px solid var(--secondary);
    padding-left: 20px;
    margin-bottom: 20px;
}

.founder-desc {
    color: #555;
    line-height: 1.7;
}
.why-us {
    background: linear-gradient(135deg,#fff,#fff8e6);
}
/* card */
.why-card {
    background: #fff;
    padding: 40px 25px;
    border-radius:25px;
    transition: .4s;
    height: 100%;
}
    .why-card h5 {
        font-weight: 700;
        margin-bottom: 10px;
    }

.why-us .icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 193, 21, 0.3);
    color: #000;
    font-size: 28px;
}

.cta-img{
    height:440px;
    width:auto;
    object-fit:cover;
}
/*--------------*/
.scope-card {
    background: #ffffff;
    border-radius: 12px;
    background: linear-gradient(325deg,#fff,#fff8e6);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: 0.3s ease;
}

.scope-list {
    padding-left: 18px;
    margin-bottom: 0;
}

    .scope-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }
/*======================== gallery page ===========================*/

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
}
    .gallery-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: .5s;
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.7),transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: .4s;
    pointer-events: none;
}

    .gallery-overlay h5 {
        color: #fff;
        font-weight: 700;
        letter-spacing: 1px;
    }

/* hover effects */
.gallery-card:hover img {
    transform: scale(1.12);
}

/*.gallery-card:hover .gallery-overlay {
    opacity: 1;
}*/
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.9);
    color: #fff;
    border: none;
    font-size: 21px;
    padding: 10px 10px;
    border-radius: 3px;
}

    .lightbox-nav.prev {
        left: -50px;
    }

    .lightbox-nav.next {
        right: -50px;
    }

    .lightbox-nav:hover {
        background: rgba(0,0,0,0.85);
    }

#imageLightbox img {
    max-height: 80vh;
    width: auto;
    object-fit: contain;
}
/*================= Contact page =====================*/

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

    .info-item i {
        font-size: 20px;
        color: var(--secondary);
        margin-top: 5px;
    }

.contact-form {
    background: #fff;
    border-radius: 18px;
    border-left: 2px solid var(--primary);
    border-top: 2px solid var(--primary);
}

    .contact-form .form-control {
        border-radius: 10px;
        padding: 12px;
        border: 1px solid #ddd;
        transition: .3s;
    }

        .contact-form .form-control:focus {
            border-color: var(--primary);
            box-shadow: none;
        }
.map-box {
    border-radius: 20px;
    overflow: hidden;
}

.map-image {
    border-radius: 20px;
    overflow: hidden;
}

    .map-image img {
        height: 400px;
        width: 100%;
        object-fit: cover;
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}
/*========= donate page ============*/
.donation-info
 {
    background: linear-gradient(235deg,#fff,#fff8e6);
    border-radius: 20px;
    height:100%;
}

    .qr-box img {
        border-radius: 12px;
    }
.donate-page .hero-title::after {
    display: none !important;
}

/* Testimonials Carousel Home Page*/
.testimonial-card {
    max-width: 700px;
    height: 400px;
}


.testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.testimonial-card p {
    line-height: 1.6;
    max-height: 180px;
    overflow-y: auto;
    scrollbar-width: none;
}

    .testimonial-card p::-webkit-scrollbar {
        display: none;
    }
