@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap");

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

html {
    scroll-behavior: smooth;
}

:root {
    /* --bg-color: #d66853; */
    --bg-color:#4A90E2;
    --pre-header-bg: #0d1b2a;
    --footer-bg: #4A90E2;
    /* --cta-button-bg: #f26444; */
    --cta-button-bg: #4A90E2;
    /* --cta-button--hover-bg: #d95336; */
    --cta-button--hover-bg:#011627;
    --section-bg: #f0f4f8;
    --breadcrumb-bg: #f0f4f8;
    /* --bredcrumb-not-active-text-color: #ffffff; */
    --bredcrumb-not-active-text-color: #2a3b4d;
    /* --bredcrumb-active-text-color: #f26444; */
    /* --bredcrumb-active-text-color:#4A90E2; */
    --bredcrumb-active-text-color:#011627;
    /* --bredcrumb-page-title-color: #f0f4f8; */
    --bredcrumb-page-title-color:#011627;
    --custom-color: #011627;
    --font-header: "Montserrat", sans-serif;
    --font-body: "Open Sans", sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
}

.home-custom-title h3,
.navbar-nav .nav-link,
.custom-bttn {
    font-family: var(--font-header);
}

.plr {
    padding-left: 5%;
    padding-right: 5%;
}

.ptb {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

hr {
    border-top: 1px solid transparent;
    border-image: var(--bg-color);
    border-image-slice: 1;
}

.custom-title {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
}

.custom-title::before {
    position: absolute;
    content: "";
    max-width: 70%;
    width: 100%;
    height: 2px;
    background: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.custom-title > h3 {
    margin-bottom: 0rem;
    font-weight: 800;
    display: inline-block;
    background: rgba(248, 249, 250);
    padding: 0rem 0.5rem;
    z-index: 2;
    position: relative;
}

.home-custom-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.home-custom-title > h3 {
    margin-bottom: 0rem;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding-bottom: 0.3rem;
    font-size: 2.5rem;
    color: var(--custom-color);
}

.home-custom-title > h3 > span {
    color: var(--bg-color);
}

.sep-line {
    width: 50px;
    height: 6px;
    margin: auto;
    background: var(--bg-color);
    position: relative;
    text-align: center;
}

.sep-line::before {
    position: absolute;
    content: "";
    max-width: 100px;
    width: 100%;
    background: #eee;
    height: 3px;
    top: 50%;
    right: 55px;
    transform: translateY(-50%);
}

.sep-line::after {
    position: absolute;
    content: "";
    max-width: 100px;
    width: 100%;
    background: #eee;
    height: 3px;
    top: 50%;
    left: 55px;
    transform: translateY(-50%);
}

.main-title-wrapper {
    margin-bottom: 3rem;
}
.main-title-wrapper .main-title {
    font-family: var(--font-header);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--custom-color);
    padding-bottom: 15px;
    position: relative;
}
.main-title-wrapper .main-title .title-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--cta-button-bg);
    border-radius: 2px;
}
.custom-bttn {
    background: var(--cta-button-bg);
    color: #fff;
    border: 0;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 1;
}

.custom-bttn > a {
    text-decoration: none;
    color: #fff;
}

/* .custom-bttn::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background:#FC466B;
    background: var(--bg-color);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
} */

.custom-bttn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    /* background: #FC466B; */
    background: var(--cta-button--hover-bg);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.custom-bttn:hover::after,
.custom-bttn:hover::before {
    width: 0;
}

/* --- Donate Button Styling --- */
.donate-now-btn {
    background-color: var(--custom-color) !important;
    color: #fff !important;
    padding: 10px 28px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 15px rgba(214, 104, 83, 0.3);
    border: none !important;
    text-decoration: none !important;
}

.donate-now-btn:hover {
    background-color: var(
        --cta-button-bg
    ) !important; /* Changes to Navy for high contrast */
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.2);
    color: #fff !important;
}

/* start-header */

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 1px 1px #000;
    z-index: 1000;
}

header .top-header-container {
    background: var(--bg-color);
}
header .top-header-wrapper {
    display: flex;
    display: -webkit-flex;
    display: -moz-box;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px;
}

.top-header-container .header-content > ul {
    list-style: none;
    padding-left: 0rem;
    margin-bottom: 0rem;
}

.left-top-header > ul > li {
    display: inline-block;
    color: #fff;
    font-size: 0.95rem;
}

/* First li */
.left-top-header > ul > li:first-child {
    padding-right: 1rem;
    padding-left: 0.5rem;
}

/* Second li */
.left-top-header > ul > li:nth-child(2) {
    padding-left: 1rem;
}

.left-top-header > ul > li:first-child {
    border-right: 0.2px solid #fff;
}

.left-top-header > ul > li > span {
    padding-right: 0.5rem;
    vertical-align: middle;
}

.right-top-header > ul > li {
    display: inline-block;
}

.right-top-header > ul > li:nth-child(2) {
    margin: 0rem 0.4rem;
}

.right-top-header > ul > li > a {
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 20px;
    display: inline-block;
    background: #fff;
}

.right-top-header > ul > li > a > i {
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    font-size: 0.95rem;
}

.right-top-header > ul > li > a:hover i {
    transform: rotate(360deg);
}

.right-top-header > ul > li > a.facebook > i {
    color: #4267b2;
}

.right-top-header > ul > li > a.twitter > i {
    color: #1da1f2;
}

.right-top-header > ul > li > a.instagram > i {
    color: #e1306c;
}

/* start-navbar */

.navbar {
    /* padding-left: 5%; */
    /* padding-right: 5%; */
    background: #fff;
}

.navbar .navbar-brand > img {
    /* height: 70px; */
    /* width: auto; */
    object-fit: contain;
    /* width: 230px; */
    width: auto;
    height: 70px;
}

.navbar .navbar-toggler {
    background: var(--bg-color);
    box-shadow: none;
    color: #fff;
    border-radius: 0;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    border: none;
}

.navbar-nav .nav-item > .nav-link {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    color: #000;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
}

.dropdown .dropdown-menu {
    border: 0;
    padding: 0;
    border-radius: 0;
    top: 142%;
}

.dropdown-menu .dropdown-item {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 0.2px solid rgba(128, 128, 128, 0.576);
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.dropdown-menu > li > :last-child a {
    border-bottom: 0px;
}

.dropdown-menu .dropdown-item:focus {
    background: transparent;
    color: #000;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--bg-color);
    color: #fff;
}

/* end-navbar */

/* start-offcanvas */

.offcanvas-header {
    background: var(--bg-color);
    color: #fff;
    padding: 0.4rem 1.7rem;
}

.offcanvas-header > button {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.2rem;
}

/* end-offcanvas */
/* end-header */

/* home banner section */
/* Banner Container */
.home-banner {
    background-color: var(--bg-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

/* Large Background Typography for Decoration (No Shadow) */
.home-banner::after {
    content: "ANAHAT";
    position: absolute;
    right: -5%;
    bottom: -5%;
    font-family: var(--font-header);
    font-size: 20vw;
    color: rgba(13, 27, 42, 0.05); /* Very subtle flat overlay */
    font-weight: 800;
    pointer-events: none;
}

.banner-content {
    max-width: 700px;
    z-index: 2;
}

.banner-tagline {
    font-family: var(--font-header);
    color: var(--pre-header-bg);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    display: block;
}

.banner-content h1 {
    font-family: var(--font-header);
    color: white;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.banner-content p {
    font-family: var(--font-body);
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* --- CUSTOM ATTRACTIVE BUTTON CLASSES --- */

.btn-group-custom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Base Custom Button */
.banner-btn {
    position: relative;
    padding: 18px 40px;
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    cursor: pointer;
    border: none;
}

/* Primary Button Style (Solid to Slide) */
.btn-filled {
    background-color: var(--pre-header-bg);
    color: #ffffff;
    border-bottom: 4px solid rgba(0, 0, 0, 0.2);
}

.btn-filled:hover {
    background-color: var(--custom-color);
    transform: translateY(-3px);
    letter-spacing: 3px;
    border-bottom: 4px solid var(--cta-button-bg);
}

.btn-filled:active {
    transform: translateY(-1px);
    border-bottom: 2px solid var(--cta-button-bg);
}

/* Outline/Ghost Button Style */
.btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-ghost:hover {
    background-color: #ffffff;
    color: var(--bg-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .home-banner {
        padding: 60px 5%;
        text-align: center;
        justify-content: center;
    }
    .btn-group-custom {
        justify-content: center;
    }
    .anahat-btn {
        width: 100%;
    }
}

/* end home banner section */

.scheme-section.image-background {
    padding-top: 0;
    padding-bottom: 0;
}

.scheme-section .home-about-card {
    background: #fff;
    border: 0;
}

/* end-scheme-section */

/* start-home-about-section */

.home-about-card,
.blog-section .blog-card {
    border-radius: 0;
    background: transparent;
    height: 100%;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    cursor: pointer;
    border: 1px solid transparent;
    border-image: var(--bg-color);
    border-image-slice: 1;
}

.home-about-card:hover {
    transform: translateY(10px);
}

.home-about-card > img,
.blog-card > a > img {
    padding: 1rem;
    max-width: 100%;
    width: 100%;
}

.home-about-card.founder-card {
    border-image: none;
    border-style: dotted !important;
    border-width: 3px !important;
    border-color: #fc466b !important;
}

.home-about-card.founder-card > img {
    width: 130px;
    height: 130px;
    border-radius: 100%;
    padding: 0.3rem;
    border: 2px dashed #2f5c89 !important;
    margin: 3rem auto 0rem auto;
}

/* end-home-about-section */

/* start campaigns-section */

.campaigns-section {
    background:
        linear-gradient(
            to left,
            rgba(252, 70, 107, 0.5) 30%,
            rgb(63, 94, 251, 0.9) 100%
        ),
        url("../image/slider/slide2.jpg");
}

.campaigns-section img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.campaigns-section h3 {
    color: #fff;
    font-weight: 800;
}

.campaigns-section p {
    color: #fff;
}

.donated-goals > p {
    display: inline-block;
}

.donated-goals > p > i {
    color: #008552;
}

.donated-goals > p:first-child {
    padding-right: 1rem;
}

.campaigns-section .progress {
    overflow: inherit;
}

.campaigns-section .progress > .progress-bar {
    position: relative;
    overflow: inherit;
}

.campaigns-section .progress > .progress-bar > span {
    position: absolute;
    content: "";
    height: 35px;
    width: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    background: var(--custom-color);
    color: #fff;
    top: 50%;
    left: 89%;
    transform: translateY(-50%);
    z-index: 100;
    display: block;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.campaigns-section .progress > .progress-bar > span::before {
    position: absolute;
    content: "";
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid #5499c7bb;
    z-index: -1;
    border-radius: 50px;
}

/* end campaigns-section */

/* start-volunteer */

.volunteer-section {
    cursor: pointer;
}

.volunteer-section ul {
    list-style: none;
    margin-bottom: 0rem;
}

.volunteer-section ul > li {
    padding: 0.4rem 0rem 0.4rem 2rem;
    position: relative;
}

.volunteer-section ul > li::before {
    position: absolute;
    content: "\f061";
    font-family: "fontAwesome";
    top: 7px;
    left: 0;
    font-size: 0.8rem;
    background: var(--bg-color);
    color: #fff;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50px;
}

.volunteer-section .vol-card {
    border-radius: 0;
    background: transparent;
    padding: 0rem !important;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    border-image: var(--bg-color);
    border-image-slice: 1;
}

.vol-card > .card-body {
    overflow: hidden;
    padding: 0rem;
}

.vol-card > .card-body > img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.vol-card:hover img {
    transform: scale(1.2);
}

.vol-card > .card-overlay {
    position: absolute;
    width: 0;
    height: 70px;
    background: var(--bg-color);
    opacity: 0;
    bottom: 0;
    left: 0;
    padding: 0.5rem 0rem;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.vol-card:hover .card-overlay {
    opacity: 1;
    left: unset;
    right: 0;
    width: 100%;
}

.card-overlay > p {
    color: #fff;
    margin-bottom: 0rem;
}

/* end-volunteer */

/* start counter-section */

.image-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    z-index: -1;
}

.counter-section {
    background-color: var(--section-bg);
}

.counter-section .counter-card {
    background: transparent;
    border-radius: 0;
    border: 0px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    position: relative;
    border: 3px solid var(--custom-color);
}

.counter-card > span > i {
    box-shadow: 0 0 5px #eee;
    height: 70px;
    width: 70px;
    line-height: 70px;
    margin: auto;
    font-size: 2rem;
    color: var(--bg-color);
}

.counter-card > .card-body {
    text-align: center;
    color: var(--custom-color);
}

.counter-card > .card-body > h1 {
    font-weight: 800;
    letter-spacing: 1px;
}

.counter-card > .card-body > p {
    font-size: 1.2rem;
    color: var(--custom-color);
}

/* end counter-section */

/* start-client-testimonials */

.home-section {
    position: relative;
    overflow: hidden;
}

.home-section::before {
    position: absolute;
    content: "";
    width: 600px;
    height: 600px;
    background: var(--bg-color);
    bottom: -300px;
    left: -250px;
    opacity: 0.2;
    z-index: -1;
    border-radius: 100%;
}

.home-section::after {
    position: absolute;
    content: "";
    width: 450px;
    height: 350px;
    background: var(--bg-color);
    top: -100px;
    right: -70px;
    opacity: 0.2;
    z-index: -1;
    border-radius: 100%;
    transform: skew(3deg, 10deg);
}

.home-section .testimonial {
    margin-top: 3rem;
}

.testimonial .testimonial-item {
    background: #f4f6f7;
    padding: 1.5rem;
    position: relative;
    border-top: 4px solid #2f5c89;
    border-top: 4px solid transparent;
    border-image: var(--bg-color);
    border-image-slice: 1;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
}

.testimonial .testimonial-item:hover {
    transform: translateY(10px);
}

.testimonial .testimonial-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f4f6f7;
    transform: skew(10deg);
    transform-origin: top right;
    z-index: -1;
}

.testimonial .testimonial-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: #f4f6f7;
    transform: skew(-10deg);
    transform-origin: top left;
    z-index: -1;
}

.testimonial-item .testi-client img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    object-fit: cover;
    border: 2px dotted #fc466b;
    padding: 0.2rem;
}

.testimonial-item > p {
    text-align: left;
}

.testimonial-item .testi-quotes {
    position: absolute;
    content: "";
    top: 5px;
    right: 5px;
}

.testimonial-item .testi-quotes > i {
    font-size: 1.5rem;
}

/* end-client-testimonials */

/* start-footer */

footer {
    /* background: linear-gradient(to left, rgba(252, 70, 107, 0.9) 30%, rgb(63, 94, 251, 0.9) 100%), url('../image/footerbg.jpg'); */
    background: var(--footer-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
}

footer .top-footer {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-title {
    margin-bottom: 1.5rem;
}

.footer-title > h4 {
    color: #fff;
    text-transform: uppercase;
    padding-left: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    border-left: 4px solid #fff;
}

.footer-list > ul {
    list-style: none;
    padding-left: 0rem;
    margin-bottom: 0rem;
}

.footer-list > ul > li {
    padding: 0.7rem 0rem;
}

.footer-list > ul > li .foot-text {
    letter-spacing: 0.5px;
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-list > ul > li .foot-icons > i {
    outline: 2px solid #fff;
    height: 22px;
    width: 22px;
    line-height: 22px;
    text-align: center;
    color: #fff;
    font-size: 0.95rem;
}

.footer-list > .footer-links > li {
    padding: 0.4rem 0rem;
}

.footer-list > .footer-links > li > a {
    color: #fff;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    display: block;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.footer-list > .footer-links > li > a:hover {
    transform: translate(10px);
    text-decoration: underline;
    color:#fff;
}

.footer-list > .footer-links > li > a > span {
    padding-right: 0.2rem;
}

.footer-content > p {
    color: #fff;
    font-size: 0.95rem;
}

footer .bottom-footer {
    border-top: 0.2px solid #ffffffba;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.bottom-footer > p {
    color: #fff;
    margin-bottom: 0rem;
    letter-spacing: 0.5px;
    font-size: 0.93rem;
}

.bottom-footer > p > a {
    color: whitesmoke;
    text-decoration: none;
}

.footer-list .social-icons {
    margin-top: 1rem;
}

.footer-list .social-icons > a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    display: inline-block;
    margin-right: 0.4rem;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.footer-list .social-icons > a > i {
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.footer-list .social-icons > a:hover i {
    transform: rotate(360deg);
}

.footer-list .social-icons > a:hover {
    border-radius: 50px;
}

.footer-list .social-icons > a.facebook > i {
    color: #4267b2;
}

.footer-list .social-icons > a.youtube > i {
    color: #ff0000;
}

.footer-list .social-icons > a.twitter > i {
    color: #1da1f2;
}

.footer-list .social-icons > a.instagram > i {
    color: #e1306c;
}

/* end-footer */

/* start-back-top */

.back-top {
    background: var(--bg-color);
    display: block;
    color: #fff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    scroll-behavior: smooth;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 2px #000;
}

.back-top {
    position: fixed;
    bottom: 4rem;
    right: 3rem;
}

.back-top:hover {
    background: var(--custom-color);
    color: #fff;
}

.To-top.back-top {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
}

/* end-back-top */

/* start-breadcrumb */

.breadcrumb-banner {
    width: 100%;
    height: 200px;
    /* background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)
        ),
        url("../image/logo-hi.jpg"); */
        background-image:
    linear-gradient(
        rgba(74, 144, 226, 0.45),
        rgba(74, 144, 226, 0.45)
    ),
    url("../image/logo-hi.jpg");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    overflow: hidden;
}

.breadcrumb-banner .container {
    display: flex;
    flex-direction: column-reverse;
    gap: 25;
}

.breadcrumb-banner h3 {
    color: var(--bredcrumb-page-title-color);
    font-weight: 800;
    font-family: var(--font);
    letter-spacing: 1px;
    font-size: 3.5rem;
    text-transform: uppercase;
}

.breadcrumb {
    margin-bottom: 0rem;
    padding: 0.4rem 1rem;
    /* box-shadow: -3px -3px 2px #000; */
}

.breadcrumb .breadcrumb-item > a,
.breadcrumb .breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bredcrumb-not-active-text-color);
}

/* ACTIVE (Photo Gallery) */
.breadcrumb .breadcrumb-item.active {
    color: var(
        --bredcrumb-active-text-color
    ); /* Pure White for the current page */
    font-size: 0.95rem;
    font-weight: 700;
}

/* Hover Effect */
.breadcrumb .breadcrumb-item > a:hover {
    color: #f26444; /* Turns Coral when moused over */
    opacity: 1;
}

.breadcrumb .breadcrumb-item,
.breadcrumb-item + .breadcrumb-item::before {
    /* color: #778da9; */
    color: #5c6b7a;
}

/* end-breadcrumb */

/* start-aboutus */

.about-content > p > img,
.project-section > p > img {
    float: right;
    max-width: 600px;
    width: 100%;
    height: auto;
    padding: 1rem;
}

.about-content .work-container {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
}

.about-content .work-container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--custom-color);
    z-index: -1;
    right: 15px;
    bottom: 15px;
}

.about-content .image-box {
    overflow: hidden;
    cursor: pointer;
}

.about-content .image-box > img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
}

.about-content .image-box > img:hover {
    transform: scale(1.3);
}

.about-content .image-caption {
    text-align: center;
    background: var(--bg-color);
    text-align: center;
    color: #fff;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.image-caption > p {
    margin-bottom: 0rem;
}

/* end-aboutus */

/* start-contact us */

.contact-section .form-control {
    border-radius: 0px;
    resize: none;
}

.contact-section .required-label::after {
    position: relative;
    content: "*";
    right: 0;
    vertical-align: top;
    color: orangered;
    margin-left: 0.3rem;
}

.contact-section .form-control::placeholder {
    font-size: 0.9rem;
}
/* --- Form Header Style --- */
.contact-form-section .form-title {
    font-family: var(--font-header);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--custom-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
}

/* --- Title Styling --- */
.contact-section h5 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--custom-color);
    font-family: var(--font-header);
    position: relative;
    padding-bottom: 15px;
}

/* Adding a subtle decorative line under the title */
.contact-section h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--cta-button-bg);
    border-radius: 2px;
}

/* --- Icon Styling (Using your provided base) --- */
.contact-section .cont-icons > i {
    background: var(--footer-bg);
    height: 50px;
    width: 50px;
    border-radius: 12px;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

/* --- Text Styling --- */
.contact-section h5 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--custom-color);
    margin-bottom: 3rem;
    position: relative;
}

.title-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--cta-button-bg);
    border-radius: 2px;
}

/* --- Contact Items Layout --- */
.contact-item {
    margin-bottom: 1.5rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* --- Icon Styling --- */
.contact-section .cont-icons > i {
    background: var(--footer-bg);
    height: 50px;
    width: 50px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

/* --- Text Formatting (via CSS, not Bootstrap) --- */
.contact-section .cont-text {
    margin-left: 1rem;
    font-family: var(--font-body);
}

.contact-section .cont-text small {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--custom-color);
    opacity: 0.5;
    margin-bottom: 0.25rem;
}

.contact-section .cont-text span {
    display: block;
    font-size: 1rem;
    color: #444;
    font-weight: 500;
}

/* Special styling for the phone number */
.contact-section .phone-highlight {
    color: var(--cta-button-bg) !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
}

/* --- Hover Effects --- */
.contact-item:hover {
    transform: translateX(8px);
}

.contact-item:hover .cont-icons > i {
    background-color: var(--cta-button-bg);
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 10px 20px rgba(242, 100, 68, 0.2);
}

/* end-contact us */

/* start-project-section */

.project-section > p > img {
    float: right;
    max-width: 500px;
    width: 100%;
    height: auto;
    padding: 1rem;
}

/* end-project-section */

/* start-gallery-section */

.gallery-section {
    margin-top: 2rem;
}

.gallery-section .gallery-card {
    border-radius: 0;
    border: 0;
}

.gallery-card > .card-body {
    padding: 0.5rem;
    overflow: hidden;
}

.gallery-card > .card-body > a > img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.gallery-card:hover img {
    filter: hue-rotate(90deg);
}

.gallery-card > .card-footer {
    background: var(--custom-color);
    border-radius: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.gallery-card > .card-footer > a {
    text-decoration: none;
    color: #fff;
}

.gallery-card > .card-footer > a > p {
    text-align: left;
    margin-bottom: 0rem;
}

.gallery-section > ul {
    margin-bottom: 0;
    padding-left: 0;
}

.gallery-section > ul > li {
    margin-bottom: 15px;
    max-width: 100%;
    display: inline-block;
    list-style: outside none none;
}

.gallery-section > ul > li a {
    border: 3px solid transparent;
    border-image: var(--bg-color);
    border-image-slice: 1;
    display: block;
    overflow: hidden;
    position: relative;
}

.gallery-section > ul > li a > img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    /* height: 100%; */
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.gallery-section > ul > li a:hover > img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.gallery-section > ul > li a:hover .gallery-poster > img {
    opacity: 1;
}

.gallery-section > ul > li a .gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.gallery-section > ul > li a .gallery-poster > img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.gallery-section > ul > li a:hover .gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery-section .justified-gallery > a > img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}

.gallery-section .justified-gallery > a:hover > img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.gallery-section .justified-gallery > a:hover .gallery-poster > img {
    opacity: 1;
}

.gallery-section .justified-gallery > a .gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.gallery-section .justified-gallery > a .gallery-poster > img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.gallery-section .justified-gallery > a:hover .gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery-section .video .gallery-poster img {
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    opacity: 0.8;
    width: 48px;
}

.gallery-section.dark > ul > li a {
    border: 3px solid #04070a;
}

/* end-gallery-section */

/* start-form-section */

.form-section .form-control,
.form-section .form-select {
    border-radius: 0;
}

.form-section .form-control::placeholder {
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-section .form-select {
    font-size: 0.9rem;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

.form-section .required-label::after {
    position: relative;
    content: "*";
    right: 0;
    vertical-align: top;
    margin-left: 0.1rem;
    color: orangered;
}

.form-section .form-label {
    font-size: 0.95rem;
    font-weight: 590;
    color: #000;
}

/* end-form-section */

/* start-blog-section */

.blog-section .blog-card {
    background-color: #fff;
    cursor: auto;
    border: 0;
}

.blog-card > .card-body > p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card > .card-body > small {
    color: orangered;
    margin-bottom: 0.3rem;
    display: block;
}

.post-right-section > .card-header {
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #fff;
}

.post-right-section > .card-header::before {
    position: absolute;
    content: "";
    background: var(--custom-color);
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    transform: skew(30deg);
    transform-origin: left bottom;
}

.post-right-section > .card-body > ul {
    list-style: none;
    padding-left: 0rem;
    margin-bottom: 0rem;
}

.post-right-section > .card-body > ul > li > a {
    text-decoration: none;
    color: orangered;
    display: inline-block;
    padding: 0.2rem 0rem 0.2rem 1rem;
}

.post-right-section > .card-body > ul > li > a:hover {
    text-decoration: underline;
}

/* end-blog-section */

/* modal */

.modal-close-btn {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    z-index: 2;
}

.modal-close-btn {
    height: 35px;
    width: 35px;
    text-align: center;
    border-top-right-radius: 3px;
}

/* modal */

/* added on 10-03-2026 */

/* --- Background & Layout Classes --- */
.volunteer-info-pane {
    background-color: var(--pre-header-bg);
    color: #ffffff;
    min-height: 100%;
    display: flex;
    align-items: center;
}

.volunteer-form-pane {
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.pane-padding {
    padding: 10% 12%; /* Generous spacing without boxes */
}

/* --- Typography Classes --- */
.brand-text {
    color: var(--cta-button-bg);
}

.custom-label {
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--custom-color);
}

.info-link {
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.info-link i {
    color: var(--cta-button-bg);
}

/* --- Bootstrap 5 Form Class Overrides --- */
.custom-input {
    border: none !important;
    border-bottom: 2px solid #dee2e6 !important; /* Flat line */
    border-radius: 0 !important; /* No rounded corners */
    padding: 10px 0 !important;
    background-color: transparent !important;
    font-family: var(--font-body);
    transition: border-color 0.3s ease-in-out;
}

.custom-input:focus {
    box-shadow: none !important; /* Remove Bootstrap Blue Glow */
    border-bottom-color: var(--cta-button-bg) !important;
}

/* --- Button Class --- */
.volunteer-btn {
    background-color: var(--cta-button-bg);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.volunteer-btn:hover {
    background-color: var(--cta-button--hover-bg);
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- Gallery Section Styles --- */
.gallery-category-section {
    background-color: var(--section-bg);
}

.category-main-title {
    font-family: var(--font-header);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--custom-color);
}

.accent-text {
    color: var(--cta-button-bg);
}

.title-line {
    width: 50px;
    height: 4px;
    background-color: var(--cta-button-bg);
    margin-top: 10px;
}

/* --- Category Item Styling --- */
.category-item {
    cursor: pointer;
    border-radius: 0; /* Keeping it flat and sharp */
}

.category-img {
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Overlay Styling using --pre-header-bg */
.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.85); /* var(--pre-header-bg) with opacity */
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.category-details {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.category-count {
    display: block;
    color: var(--cta-button-bg);
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.category-name {
    color: #ffffff;
    font-family: var(--font-header);
    font-weight: 700;
    margin-bottom: 15px;
}

.category-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 2px solid var(--cta-button-bg);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

/* --- Hover States --- */
.category-item:hover .category-img {
    transform: scale(1.1);
}

.category-item:hover .category-overlay {
    opacity: 1;
}

.category-item:hover .category-details {
    transform: translateY(0);
}

.category-link:hover {
    color: var(--cta-button-bg);
}

.ngo-gradient-bg {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.vision-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.vision-card:hover {
    transform: translateY(-10px);
}

.divider {
    width: 60px;
    height: 4px;
    background: #27ae60;
    margin: 15px auto;
}

/* --- EXTERNAL CLASS: objective-wrapper --- */
.objective-wrapper {
    background-color: #fff;
    margin: 0 auto;
}

/* --- INTERNAL CLASS: objective-item --- */
.objective-wrapper .objective-item {
    position: relative;
    padding: 20px 0 20px 40px;
    border-left: 2px solid #e9ecef;
    transition: all 0.3s ease;
    margin-left: 20px;
}

/* The dot on the line */
.objective-wrapper .objective-item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 28px;
    width: 12px;
    height: 12px;
    background-color: #005f73;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Hover Effect */
.objective-wrapper .objective-item:hover {
    border-left-color: #005f73;
    background-color: #f8f9fa;
    padding-left: 50px;
}

.objective-wrapper .objective-item:hover::before {
    transform: scale(1.5);
    background-color: #0a9396;
}

.objective-wrapper .objective-item p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .objective-wrapper {
        padding: 40px 20px;
    }
}

/* Card Layout Styling */
.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.member-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--accent-color);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.member-img-container {
    width: 120px;
    height: 120px;
    background: #f0f0f0;
    border-radius: 50%;
    margin: 30px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-color);
    overflow: hidden; /* ensures image stays inside the circle */
}

.member-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps image properly cropped */
    border-radius: 50%;
    object-position: center top;
}

.member-info {
    padding: 0 20px 30px;
}

.member-name {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-badge {
    display: inline-block;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: 10px;
    color: #666;
}

/* The Main Wrapper */
.donation-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Top Header inside wrapper */
.donation-header {
    background: var(--soul-teal);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.donation-header h1 {
    margin: 0;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.donation-header p {
    opacity: 0.9;
    margin-top: 10px;
}

/* Left Side: QR and UPI */
.qr-card {
    background: var(--bg-soft);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px dashed var(--soul-gold);
}

.qr-placeholder {
    background: white;
    padding: 15px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.upi-id {
    display: block;
    background: var(--soul-teal);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: none;
}

/* Right Side: Bank Details */
.bank-info {
    padding: 30px;
}
.bank-info h3 {
    color: var(--soul-teal);
    margin-top: 0;
    border-bottom: 2px solid var(--soul-gold);
    display: inline-block;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-row span:first-child {
    color: #777;
    font-weight: 500;
}

.info-row span:last-child {
    color: var(--primary-color);
    font-weight: 700;
}

/* Footer inside wrapper */
.donation-footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
}

.btn-home {
    text-decoration: none;
    color: var(--soul-teal);
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* Custom Founder Styles */

.founder-section {
    background: var(--section-bg);
}
.founder-wrapper {
    background: var(--section-bg);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.founder-wrapper:hover {
    transform: translateY(-5px);
}

.founder-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 8px solid #f8f9fa;
}

.founder-content .blockquote p {
    font-style: italic;
    font-size: 1.25rem;
    color: #444;
    line-height: 1.6;
    position: relative;
}

/* Optional: Adding decorative quotation marks */
.founder-content .blockquote p::before {
    content: "\201C";
    font-size: 4rem;
    color: #0d6efd;
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: -20px;
}

/* media queries */

@media screen and (min-width: 991px) and (max-width: 1200px) {
    .navbar-nav .nav-item > .nav-link {
        padding-left: 0.6rem;
        padding-right: 0.6rem;
        font-size: 0.82rem;
    }

    .donate-now-btn {
        padding: 10px 15px !important;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 991px) {
    .breadcrumb-banner h3 {
        font-size: 2rem;
        display: none;
    }
    .breadcrumb-banner {
        height: 80px;
    }
    .main-title-wrapper .main-title,
    .contact-section h5,
    .contact-form-section .form-title {
        font-size: 1.85rem;
    }
    .home-custom-title > h3 {
        font-size: 2rem;
    }

    /* First li */
    .left-top-header > ul > li:first-child {
        padding-right: 0.5rem;
    }

    /* Second li */
    .left-top-header > ul > li:nth-child(2) {
        padding-left: 0.5rem;
    }
    .left-top-header > ul > li > span {
        padding-right: 0.2rem;
    }
}
