@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}


:root {
    --primary-color: #ED1C24;
    --yellow-color: #FFFF00;
}

body {
    font-family: "Inter Tight", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
}



.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary-color);
}


.header-main.scrolled {
    background-color: #ffffff !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease-in-out;
    z-index: 1000;
}

.header-main.scrolled .nav-link {
    color: rgb(0 0 0 / 74%);
}




.header-main.scrolled .navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary-color);
}

button.navbar-toggler span {
    width: 40px;
    height: 1px;
    color: #0088ff;
    background: bisque;
    opacity: 1;
    display: block;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 1;
    padding-top: 130px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 88%);
    z-index: -1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}


.header-main {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 11;
}

.header-main nav {
    background: white;
    margin: 1rem 0;
    border-radius: 15px;
}

.info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    color: white;
    text-align: left;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 280px;
}

.info-box h5 {
    font-size: 45px;
    font-weight: 700;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    border-right: 2px solid #ffffff75;
    padding: 0 7px;
}


.info-box p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.hero-section h1 {
    font-size: 52px;
    font-weight: 700;
}

.hero-section h1 span {
    color: var(--primary-color);
}

.button-defaults {
    border: 1px solid;
    padding: 8px 20px;
    color: #fff !important;
    border-radius: 29px;
    transition: all .3s;
    background: var(--primary-color);
}

.button-defaults:hover {
    background: transparent;
    color: #000 !important;
}

.btn-group-custom {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    gap: 12px;
}

.btn-group-custom a {
    border: 1px solid;
    color: white;
    border-radius: 26px;
    flex-basis: 140px;
    padding: 8px;
    transition: all .3s;
}

.btn-group-custom a:first-child {
    background: var(--yellow-color);
    color: black !important;
    font-weight: 500;
    border: 1px solid var(--yellow-color) !important;
}

.btn-group-custom a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color) !important;
    color: white !important;
}




.help-section {
    background: #fff;
    text-align: center;
}

.help-header {
    background: var(--yellow-color);
    padding: 4rem 0;
    position: relative;
}

.help-header::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 65px solid transparent;
    border-right: 65px solid transparent;
    border-top: 63px solid var(--yellow-color);
}


.title-wrapper small {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid;
}

.title-wrapper h2 {
    font-size: 45px;
    font-weight: 700;
    color: #000;
    margin: 10px 0;
}

.title-wrapper h2 span {
    color: var(--primary-color);
}

.help-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Circles */
.help-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.help-box {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.help-box.active {
    background: var(--primary-color);
    color: #fff;
    margin: 0 -1rem;
    position: relative;
}

.help-box img {
    width: 60px;
    margin-bottom: 15px;
    color: inherit;
}

.help-box h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: inherit;
}

.help-box p {
    font-size: 13px;
    line-height: 1.5;
    color: inherit;
    margin: 0;
}


.help-buttons {
    margin: 30px 0;
}

.btn-yellow {
    background: var(--yellow-color);
    color: #000;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 15px;
    border: 1px solid #000;
    transition: 0.3s;
}

.btn-outline {
    border: 1px solid #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    transition: 0.3s;
}

.btn-yellow:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

.help-stats {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
    flex-wrap: wrap;
    padding-top: 20px;
    position: relative;
    font-family: "Sora", sans-serif;
    gap: 60px;
}

.help-stats div {
    text-align: center;
    min-width: 150px;
    position: relative;
}

.help-stats div:not(:last-child)::after {
    content: "";
    height: 100%;
    width: 1px;
    background: #D4D4D4;
    position: absolute;
    right: -22px;
    top: 7px;
}

.help-stats strong {
    display: block;
    font-size: 55px;
    color: #D4D4D4;
    margin-bottom: 5px;
}

.help-stats span {
    font-size: 14px;
    color: #333;
}

.who-we-are-section {
    background-color: #000;
    color: white;
    padding: 3rem 0;
}

.who-we-are-section .title-wrapper h2 {
    color: white;
}

.who-we-are-section .button-defaults {
    color: white;
    margin-top: 3rem;
    display: inline-block;
}

.image-wrappper {
    overflow: hidden;
    border-radius: 20px;
}

.image-wrappper img {
    transition: .3s;
    border-radius: 20px;
    width: 100%;

}

.image-wrappper:hover img {
    transform: scale(1.08) rotate(1.5deg);
}

.who-we-content {
    margin-right: 3rem;
}

.title-wrapper>span {
    text-transform: uppercase;
    border-bottom: 1px solid;
}

.project-section {
    padding: 2rem 0;
}

.project-item img {
    width: 100%;
    border-radius: 26px;
}

.project-item {
    text-align: center;
    margin-bottom: 2rem;
}

.project-info {
    margin: 2rem 0;
    padding: 0 3rem;
}

.project-info h3 {
    font-size: 18px;
}

.project-info p {
    color: #737373;
}

.project-info h3 {
    font-size: 22px;
    font-weight: 600;
}

a.read-btn {
    border: 1px solid black;
    padding: 7px 20px;
    display: inline-block;
    color: black;
    border-radius: 28px;
    transition: .3s;
}

.read-btn:hover {
    background: var(--yellow-color);
}


.donate-sections {
    background-color: var(--yellow-color);
}

.donate-sections img {
    width: 100%;
}

.btn-donate {
    border: 1px solid black;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 26px;
    color: black;
    margin-top: 1rem;
    transition: .3s;
}

.btn-donate:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-section {
    padding: 2rem 0;
}

.gallery img {
    border-radius: 21px;
}

.gallery {
    margin: 1rem 0;
}

.team-slider-section {
    background: #000;
    padding: 2rem 0;
    color: white;
}

.team-slider-section .title-wrapper h2 {
    color: white;
}

.team-card {
    background: #1c1c1c;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.team-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    height: 300px;
    object-fit: contain;
}

.team-card h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--yellow-color);
    font-weight: normal;
    margin-bottom: 5px;
}

.team-card .designation {
    font-size: 14px;
    color: #ccc;
}

.owl-carousel .item {
    display: flex;
    align-items: stretch;
}

.team-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-view-more {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-view-more:hover {
    background: #fff;
    color: #000;
}


.team-slider-section .owl-prev {
    transform: translate(-50px, 0);
}

.team-slider-section .owl-next {
    transform: translate(50px, 0);
}

.team-slider-section .owl-nav {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.team-slider-section .owl-nav button {
    pointer-events: all;
    border: none;
    background: none;
}

.team-slider-section .owl-nav i {
    font-size: 20px;
    color: white;
    background: transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.team-slider-section .owl-nav i:hover {
    background: #ffcc00;
    color: #000;
}


.gift-section {
    padding: 5rem;
    text-align: center;
    position: relative;
    color: white;
}

.gift-section::after {
    content: "";
    background: #ed1c24e0;
    inset: 0;
    position: absolute;
}

.gift-section h2 {
    font-size: 34px;
    font-weight: 600;
}

.gift-section p {
    max-width: 800px;
    margin: 0 auto;
}

.gift-section .button-defaults {
    display: inline-block;
    margin: 2rem 0;
    margin-bottom: 0;
    background-color: var(--yellow-color);
    border-color: var(--yellow-color);
}

.gift-section .button-defaults:hover {
    background: white;
    color: black;
    border-color: white;
}


.site-footer {
    background: #000;
    color: #ddcbcb;
    padding: 50px 0 50px;
    font-size: 14px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
    background: white;
    padding: 11px;
    border-radius: 15px;
}


.footer-text {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-direction: column;
}

.footer-form input {
    padding: 10px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    border-radius: 20px;
}

.footer-form button {
    background: var(--yellow-color);
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    max-width: fit-content;
}

.footer-form button:hover {
    background: var(--primary-color);
    color: white;
}

.footer-social a {
    color: #fff;
    margin-right: 12px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a {
    border: 1px solid white;
    padding: 5px;
    display: inline-block;
    width: 37px;
    text-align: center;
    border-radius: 10px;
}


.footer-social a:hover {
    color: white;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}


.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 20px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #ffcc00;
}

.footer-contact p {
    margin-bottom: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-payments img {
    max-height: 25px;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background: var(--yellow-color);
    color: #000;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    z-index: 9999;
    width: 45px;
    height: 45px;
    text-align: center;
}

#backToTop:hover {
    background: var(--primary-color);
    color: #fff;
}


/* New */

.breadcrumb-section {
    padding-top: 150px;
    min-height: 400px;
    display: flex;
    place-content: center;
    padding-bottom: 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    align-items: center;
}

.breadcrumb-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 80%);
    z-index: -1;
}

.breadcrumb-section h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.breadcrumb-section h1 span {
    color: var(--primary-color);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    color: white;
    gap: 10px;
}

.breadcrumb a {
    color: white;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-section .btn-donate {
    color: white;
    border-color: white;
    padding: 12px 25px;
}

.about-sec {
    padding: 2rem 0;
}

.work-with-us {
    padding: 2rem 0;
}

.title-wrapper p {
    color: #737373;
}

.work-with-us .title-wrapper p {
    max-width: 800px;
    margin: 0 auto;
}


.work-with-us .card {
      padding: 23px 23px;
    margin: 2rem 0;
    border-radius: 15px;
    margin-bottom: 0;
    height: 100%;

}

.info-title {
    color: white;
    font-size: 14px;
    background: black;
    display: inline-block;
    width: fit-content;
    padding: 6px;
    transform: translate(0px, -20px);
    border-radius: 7px;
    margin-top: -13px;
}

.work-with-us .card p {
    font-size: 14px;
}

.work-with-us .col-lg-4:nth-child(1) .card .info-title {
    background: var(--primary-color);
}

.work-with-us .col-lg-4:nth-child(2) .card .info-title {
    background-color: var(--yellow-color);
    color: var(--primary-color);
}

.work-with-us .btn-donate {
    background-color: var(--yellow-color);
    color: #000;
    border-color: var(--yellow-color);
    padding: 10px 22px;
    font-weight: 700;
}

.work-with-us .btn-donate:hover {
    background: var(--primary-color);
    color: white;
}

.nav-left-side {
    gap: 20px;
}

.nav-left-side a {
    color: #000;
}

/* ================= DROPDOWN MENU ================= */

.menu-header-menu {
    align-items: center;
}

.menu-header-menu a {
    color: #000;
    text-decoration: none;
}

.navbar-nav li.menu-item-has-children {
    position: relative;
}

/* Arrow Icon */
.navbar-nav li.menu-item-has-children>a::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    /* fa-chevron-down */
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

/* ================= DESKTOP (Hover) ================= */
@media (min-width: 992px) {

    /* Dropdown hidden by default */
    .navbar-nav li ul.sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        padding: 10px 0;
        margin: 0;
        list-style: none;
        min-width: 220px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-radius: 6px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 999;
    }

    /* Show on hover */
    .navbar-nav li:hover>ul.sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Rotate arrow on hover */
    .navbar-nav li.menu-item-has-children:hover>a::after {
        transform: rotate(180deg);
    }
}

/* ================= MOBILE (Click) ================= */
@media (max-width: 991px) {

    /* Reset dropdown for mobile */
    .navbar-nav li ul.sub-menu {
        position: relative;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding-left: 15px;
        margin: 0;
        list-style: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .navbar-nav li.open>ul.sub-menu {
        display: block;
    }

    .navbar-nav li.open>a::after {
        transform: rotate(180deg);
    }
}

/* ================= DROPDOWN LINKS ================= */
.navbar-nav li ul.sub-menu li {
    margin: 0;
}

.navbar-nav li ul.sub-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar-nav li ul.sub-menu a:hover {
    background: var(--primary-color);
    color: #fff;
}

.navbar-nav a {
    color: #000;
}

.noptin-form-footer {
    padding: 20px 0;
}

footer.site-footer form input {
    padding: 10px;
}

input#noptin-form-1__field-email {
    background: #2C2C2C;
    border: 1px solid #80717157;
    color: white;
    border-radius: 9px;
}

input#noptin-form-1__submit {
    width: fit-content;
    font-size: 14px;
    border-radius: 19px;
    color: black;
    font-weight: 600;
    border: none;
}

ul#menu-header-menu {
    flex: 1;
    justify-content: space-around;
}

.wrap-counter {
    display: flex;
    justify-content: center;
}

.gallery-section img {
    height: 400px;
    object-fit: cover;
}

.newgallery img {
    height: 300px;
    object-fit: cover;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.noptin-form-footer {
    padding: 0px 0 !important;
}

.noptin-alert {
    font-size: 16px !important;
}


main.container {
    margin: 2rem auto;
}

.contact-form-wrapper u {
    text-transform: capitalize;
}

.contact-form-wrapper {
    margin-top: 3rem;
}

.contact-form-wrapper input {
    padding: 12px;
}

.contact-form-wrapper textarea {
    max-height: 100px;
}

.footer-contact a:hover {
    color: var(--yellow-color);
}

.noptin-form-header {
    padding: 0 !important;
    text-align: left !important;
}

.noptin-form-description {
    margin: 0 !important;
    margin-bottom: 1rem !important;
}

.page-id-913 main .btn-primary,
.page-id-914 main .btn-success {
    background: var(--primary-color);
    color: white;
    border: none;
}

.page-id-913 main .btn-primary:hover,
.page-id-914 main .btn-success:hover {
    background-color: var(--yellow-color);
    color: #000;
}

.page-id-913 main p a,
.page-id-914 main p a {
    color: green !important;
}
.masonry-item p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}