* {
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.top-bar {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    font-size: 16px;
    margin-left: 20px;
    margin-right: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

}

.top-left span {
    margin-right: 20px;
    white-space: nowrap;
}

.top-left i {
    color: #fff;
    margin-right: 6px;
    font-size: 18px;
}

.top-left i:hover {
    color: #ff5a00;
}

.top-right {
    display: flex;
    align-items: center;
}

.volunteer {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-right: 20px;
}

.volunteer i {
    margin-right: 6px;
    color: #fff;
}

.loginbtn a {
    margin-left: 12px;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
    background-color: transparent;
    border: 3px solid #fff;
    border-radius: 50px;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    color: #fff;
}

.tf_navbar {
    border-bottom: 1px solid #000;
}

a.navbar-brand img {
    max-width: 186px;
}

.navbar-nav li.nav-item a.nav-link {
    font-size: 18px;
    color: black;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.navbar-nav li.nav-item a.nav-link:hover {
    color: #ff5a00;
}

.navbar-nav li.nav-item {
    padding: 0 6px;
    position: relative;
}

:root {
    --primary-color: #ff5a00;
    --text-color: #ffffff;
    --overlay-bg: rgba(0, 0, 0, 0.4);
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family), sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}


.carousel-hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    color: var(--text-color);
}

.carousel-images {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background-color: var(--overlay-bg);
    border-radius: 5px;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-button {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-color);
    border: none;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    transition: background-color 0.3s ease;
    z-index: 3;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
}


.service-card {
    position: relative;
    background: #fff;
    height: auto;
    border-radius: 18px;
    padding: 70px 30px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* Gradient top bar */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #ff3b30, #ff7a18);
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 59, 48, 0.25);
}

/* Icon circle */
.icon-wrap {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, #ff3b30, #ff7a18); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 25px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4);
}

.icon-wrap img {
    width: 40px;
    /* filter: brightness(0) invert(1); */
}

/* Title */
.service-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 50px;
    color: #1f2937;
}

/* Text */
.service-card p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.7;
}

/* Read more */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #ff5a00;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}


.about-section {
    background: #eceef0;
}

/* LEFT CONTENT */
.about-tag {
    color: #ff5a00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.about-title {
    font-weight: 800;
    margin: 12px 0 18px;
    color: #1f2937;
}

.about-text {
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
}

.abouttag {
    color: #ff5a00;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 15px;
}


/* RIGHT IMAGE SECTION */
.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
}

.about-img {
    position: absolute;
    width: 75%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* First image */
.img-1 {
    top: -30px;
    left: 0;
}

/* Second image */
.img-2 {
    bottom: -90px;
    right: 0;
    height: 280px;
}

/* Logo badge */
.about-logo {
    position: absolute;
    top: 24%;
    left: 90%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 200px;

}

.about-logo img {
    width: 150px;
}


.causes-section {
    padding: 50px 0px;
    background: #f9fafb;
}

/* SECTION TITLE */
.section-title h2 {
    font-weight: 800;
    color: #1f2937;
}

.section-title span {
    display: block;
    width: 60px;
    height: 4px;
    background: #ff5a00;
    margin-top: 8px;
    border-radius: 10px;
}

/* CARD */
.cause-card {
    background: #ffffff;
    padding: 40px 20px 30px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 240px;
}

/* GRADIENT BORDER */
.cause-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #ff3b30, #ff8a00);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* ICON */
.cause-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff3b30, #ff8a00);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s;
}

/* TITLE */
.cause-card h5 {
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

/* HOVER EFFECT */
.cause-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 59, 48, 0.25);
}

.cause-card:hover .cause-icon {
    transform: rotate(10deg) scale(1.1);
}


/* Section */
.donation-section {
    padding: 50px 0;
    background: #eceef0;
}

/* Card */
.donation-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-8px);
}

/* Image */
.donation-image {
    position: relative;
}

.donation-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Date */
.donation-date {
    position: absolute;
    bottom: 12px;
    left: 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Trend Tag */
.donation-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff5a00;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Content */
.donation-content {
    padding: 25px;
}

.donation-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.donation-content h4 a {
    text-decoration: none;
    color: #000;
}

.donation-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Progress */
.donation-progress {
    position: relative;
    height: 6px;
    background: #e5e5e5;
    border-radius: 20px;
    margin-bottom: 22px;
}

.donation-progress-bar {
    height: 100%;
    background: #ff5a00;
    border-radius: 20px;
}

/* Progress % */
.donation-progress span {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff5a00;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Amount */
.expense-amount {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Swiper buttons */
.donation-slider .swiper-button-next,
.donation-slider .swiper-button-prev {
    color: #ff5a00;
}


.emergency-section {
    padding: 0px 0px;
    background: linear-gradient(120deg, #ff3b3b, #ff7b00);
}

.emergency-container {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    padding: 40px;
}

.emergency-image img {
    width: 100%;
    animation: float 4s ease-in-out infinite;
}

.emergency-image.left img {
    animation-delay: 0s;
}

.emergency-image.right img {
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.emergency-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.badgee {
    display: inline-block;
    background: #fff;
    color: #ff3b3b;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.emergency-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.emergency-content h1 span {
    color: #ffe600;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    font-size: 18px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.service-list li:hover {
    transform: translateX(10px);
}

.call-btn {
    padding: 14px 40px;
    font-size: 18px;
    border: none;
    border-radius: 40px;
    background: #ffe600;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.call-btn:hover {
    background: #fff;
    transform: scale(1.05);
}






















.footer {
    background-color: #fff;
    color: #ff5a00;
    padding-top: 60px;
}

.footer-logo {
    max-width: 160px;
}

.footer h5 {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.footer p {
    color: #000;
}

.footer h5::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #ff5a00;
    position: absolute;
    left: 0;
    bottom: -6px;
}

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

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

.footer ul li a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #ff5a00;
    padding-left: 5px;
}

.media-icons a {
    display: inline-flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    margin-left: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.media-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-list i {
    color: #000;
    font-size: 16px;
    min-width: 20px;
}

.contact-list i:hover {
    color: #ff5a00;
}

.contact-list a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.contact-list a:hover {
    color: #000;
}


.footer-bottom {
    background: #000;
    padding: 15px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}



/* about us page */

.about-banner {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
}

.about-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 20, 20, 0.4),
            rgba(20, 20, 20, 0.15));

}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    opacity: 0.9;
}

.breadcrumb {
    background: transparent;
    margin-top: 15px;
}

.breadcrumb a {
    color: #ff7a18;
    text-decoration: none;
}

.breadcrumb .active {
    color: #ffffff !important;
}


.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: rgb(244 246 247 / 75%);
    content: var(--bs-breadcrumb-divider, "/");
}


.about_img {
    text-align: center;
    border: 2px solid #000;
}

.about_img img {
    width: 100%;
}

.about-text-end {
    text-align: center;
    font-size: 18px;
    color: #000;
}

.about-text-end ul {
    list-style: none;
}

.about-text-end ul li span {
    color: #ff7a18;
    font-weight: 600;
}