:root {
--accent: #fe5b2c !important;
--primary: #18333b !important;
--secondary: #67797e !important;
--primary-font: Quicksand, sans-serif;
--secondary-font: Roboto, sans-serif;
--hcf-primary: linear-gradient(45deg, rgb(255 51 51), rgb(237, 143, 3)); !important;
}

.hcf-gradient{
background: linear-gradient(45deg, rgb(255 51 51), rgb(237, 143, 3));
}
/* =========================================
1. RESPONSIVE HERO BANNER
========================================= */
.cause-banner-wrapper {
width: 100%;
position: relative;
overflow: hidden;
background-color: #f0f0f0;
margin-top: 0; /* Adjust if your header covers it */
}
/* Mobile Height */
.cause-banner-wrapper { height: 250px; }
/* Tablet Height */
@media (min-width: 768px) { .cause-banner-wrapper { height: 400px; } }
/* Desktop Height */
@media (min-width: 1200px) { .cause-banner-wrapper { height: 500px; } }

.cause-banner-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

/* =========================================
2. STICKY NAVIGATION BAR
========================================= */
.cause-sticky-nav {
<!-- position: -webkit-sticky; /* Safari support */ -->
<!-- position: sticky; -->
top: 100px;
z-index: 1020;
background-color: #fff;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
border-bottom: 1px solid #eee;
height: 60px;
display: flex;
align-items: center;
margin:20px 0;
}

.cause-sticky-nav .container {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
width: 100%;
}

.cause-nav-list {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 20px;
overflow-x: auto;
white-space: nowrap;
scrollbar-width: none; /* Firefox */
-webkit-overflow-scrolling: touch;
height: 100%;
}
.cause-nav-list::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.cause-nav-item {
font-weight: 600;
font-size: 0.9rem;
color: #555;
cursor: pointer;
display: flex;
align-items: center;
height: 100%;
border-bottom: 3px solid transparent;
transition: all 0.3s ease;
}

.cause-nav-item:hover, .cause-nav-item.active {
color: #ff8c00;
border-bottom-color: #ff8c00;
}

/* Social Widget Wrapper (Desktop Only) */
.nav-social-wrapper {
margin-left: 20px;
padding-left: 20px;
border-left: 1px solid #eee;
display: none;
}
@media (min-width: 992px) { .nav-social-wrapper { display: block; } }


/* =========================================
3. MOBILE DONATION ELEMENTS
========================================= */
/* Top Card (Input) - Visible Mobile Only */
.mobile-donation-card {
background: #fdfdfd;
border: 1px solid #eee;
border-radius: 12px;
padding: 20px;
margin-top: 20px;
box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* Sticky Bottom Footer - Visible Mobile Only */
.mobile-sticky-footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: #fff;
padding: 12px 15px;
box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
z-index: 1030;
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
border-top: 1px solid #f0f0f0;
}

/* Add padding to body on mobile so footer doesn't hide content */
@media (max-width: 991px) {
body { padding-bottom: 80px; }
}

/* Hide these on Desktop */
@media (min-width: 992px) {
.mobile-donation-card,
.mobile-sticky-footer {
display: none !important;
}
}


/* =========================================
4. DESKTOP SIDEBAR DONATION CARD
========================================= */
.sidebar-sticky-wrapper {
position: -webkit-sticky;
position: sticky;
top: 90px; /* Adjust based on header/nav height */
z-index: 10;
}

.donation-card {
background: #ffffff;
border: 1px solid #eee;
border-radius: 16px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
padding: 24px;
overflow: hidden;
}

.donation-card-header { margin-bottom: 20px; text-align: center; }
.donation-card-header h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 5px; color: #222; }

/* Amount Buttons */
.amount-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
margin-bottom: 20px;
}

.amount-btn {
border: 1px solid #e0e0e0;
background: #fff;
color: #555;
padding: 10px 5px;
border-radius: 8px;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.2s ease;
width: 100%;
}
.amount-btn:hover { border-color: #ff8c00; color: #ff8c00; background: #fffaf5; }
.amount-btn.active { background: #ff8c00; color: #fff; border-color: #ff8c00; box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3); }

/* Inputs */
.donation-card .input-group:focus-within,
.mobile-donation-card .input-group:focus-within {
border-color: #ff8c00 !important;
box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15) !important;
}
.donation-card input[type=number]::-webkit-inner-spin-button,
.donation-card input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Donate Button Style */
.btn-donate-lg {
background: linear-gradient(45deg, rgb(255 51 51), rgb(237, 143, 3));
color: white;
border: none;
width: 100%;
padding: 14px;
font-size: 1.1rem;
font-weight: 700;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
transition: transform 0.2s;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.btn-donate-lg:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5); color: white; }
.btn-donate-lg:disabled, .btn-donate-lg.disabled { background: #e0e0e0; color: #999; cursor: not-allowed; box-shadow: none; pointer-events: none; }

/* Trust Badges */
.trust-badges { margin-top: 15px; display: flex; justify-content: center; gap: 15px; font-size: 0.8rem; color: #888; }
.trust-item { display: flex; align-items: center; gap: 5px; }

.sidebar-video-card {
border-radius: 12px;
overflow: hidden;
margin-top: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* =========================================
5. CARDS (GIFTS & PRODUCTS)
========================================= */
.cause-card {
border: 1px solid #eee;
background: #fff;
transition: all 0.3s ease;
border-radius: 12px;
}
.cause-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.08) !important; border-color: #ffdec2; }

.cause-card-img-wrapper {
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.cause-card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cause-card:hover .cause-card-img-wrapper img { transform: scale(1.05); }

.cause-card-title {
font-size: 1rem;
font-weight: 600;
color: #222;
margin-bottom: 0.5rem;
}
.cause-card-price { color: #ff8c00; font-weight: 700; font-size: 1.1rem; }
.cause-card-desc { font-size: 0.85rem; color: #666; margin-bottom: 10px; }

/* Qty Controls */
.qty-control { background: #f8f9fa; border-radius: 50px; padding: 2px; border: 1px solid #e9ecef; }
.qty-btn { width: 30px; height: 30px; border-radius: 50%; border: none; background: #fff; font-weight: bold; color: #333; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.qty-btn:hover:not(:disabled) { background: #ff8c00; color: #fff; }


/* =========================================
6. TRANSPARENCY GALLERY (MIXED MEDIA)
========================================= */
.transparency-gallery-section {
/* Soft Orange Gradient */
background: linear-gradient(135deg, #fff8f3 0%, #ffecd9 100%);
border: 1px solid #ffdec2;
position: relative;
overflow: hidden;
}
.transparency-gallery-section .section-title { color: #333; font-size: 1.75rem; }
.transparency-gallery-section .separator { width: 60px; height: 3px; background-color: #ff8c00; border-radius: 2px; }

/* Video/Iframe Resets */
.transparency-gallery-section iframe,
.transparency-gallery-section video { width: 100%; height: 100%; border: none; object-fit: cover; }
.gallery-card:has(iframe):hover, .gallery-card:has(video):hover { transform: none !important; cursor: default; } /* No zoom on video */


/* =========================================
7. COMPACT MODAL STYLES
========================================= */
.modal-content { border: none; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.modal-header { padding: 1rem 1.25rem; border-bottom: 1px solid #f0f0f0; background: #fff; border-radius: 12px 12px 0 0; }
.modal-body { padding: 1.25rem; }

/* Compact Inputs */
.form-floating > .form-control { height: 45px !important; min-height: 45px !important; font-size: 0.9rem; padding-top: 1.25rem !important; padding-bottom: 0.25rem !important; line-height: 1; }
.form-floating > textarea.form-control { height: 80px !important; padding-top: 1.5rem !important; }
.form-floating > label { padding: 0.5rem 0.75rem; font-size: 0.85rem; color: #888; }
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label { transform: scale(0.85) translateY(-0.5rem) translateX(0.1rem); opacity: 1; color: #ff8c00; }
.form-floating > .form-control:focus { border-color: #ff8c00; box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1); }

/* Payment Grid */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; margin-bottom: 15px; }
.payment-option-card { border: 1px solid #eee; border-radius: 6px; padding: 8px; text-align: center; cursor: pointer; transition: all 0.2s ease; background: #fff; position: relative; height: 100%; }
.payment-option-card:hover { border-color: #ffdec2; background: #fffaf5; }
.payment-option-card.selected { border-color: #ff8c00; background: #fff8f0; }
.payment-check-badge { position: absolute; top: -6px; right: -6px; background: #ff8c00; color: white; border-radius: 50%; width: 18px; height: 18px; font-size: 10px; display: flex; align-items: center; justify-content: center; }
.payment-name { font-weight: 600; font-size: 0.75rem; color: #444; margin-top: 4px; display: block; }
.section-label { font-size: 0.75rem; font-weight: 700; color: #6c757d; text-transform: uppercase; margin-bottom: 8px; display: block; }


/* =========================================
8. RICH CONTENT
========================================= */
.rich-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.5rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.rich-content iframe, .rich-content video { width: 100%; aspect-ratio: 16 / 9; height: auto; border-radius: 12px; margin: 1.5rem 0; }

/* =========================================
TEAM GROUPING & SLIDING HOVER
========================================= */

/* 1. Filter Buttons */
.cs_team_filter_wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.cs_filter_btn {
    padding: 8px 22px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid #eee;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cs_filter_btn:hover { border-color: #ff8c00; color: #ff8c00; }
.cs_filter_btn.active {
    background: linear-gradient(45deg, rgb(255 51 51), rgb(237, 143, 3));
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* 2. Team Card & Sliding Overlay */
.cs_team.cs_style_2 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    transition: transform 0.3s ease;
}

.cs_team_hover_description {
    position: absolute;
    bottom: -100%; /* Hidden at bottom */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 140, 0, 0.97); /* Solid Aesthetic Orange */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.cs_team_hover_description p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

/* 3. Interaction */
.cs_team.cs_style_2:hover .cs_team_hover_description {
    bottom: 0; /* Slide Up */
    opacity: 1;
    visibility: visible;
}
.cs_team.cs_style_2:hover .cs_team_hover_description p { opacity: 1; }

/* Simple fade animation for filter switching */
.col-xl-3.col-sm-6 {
    animation: csFadeUp 0.4s ease-out forwards;
}
@keyframes csFadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

 /* Gallery Filter Buttons */
.cs_gallery_filter_wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.cs_filter_btn {
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid #eee;
    background: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cs_filter_btn.active {
    background: linear-gradient(45deg, rgb(255 51 51), rgb(237, 143, 3));
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

/* 4-Column Item Styling */
.cs_gallery_item.cs_type_mixed {
    height: 280px; /* Fixed height for consistent 4-column look */
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Video Play Icon */
.cs_video_play_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff3333;
    font-size: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

.cs_gallery_item:hover .cs_video_play_icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff3333;
    color: #fff;
}

/* Hover Content */
.cs_gallery_text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cs_gallery_item:hover .cs_gallery_text {
    transform: translateY(0);
    opacity: 1;
}

.cs_video_container {
    width: 80vw;
    height: 80vh;
    max-width: 1000px;
    max-height: 560px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .cs_video_container {
        width: 95vw;
        height: 50vh;
    }
}

/* Custom Floating Tooltip Style */
.custom-floating-tooltip {
    position: absolute;
    bottom: 30px; /* Space above the icon */
    left: 50%;
    transform: translateX(-50%);
    background: #fff4e6; /* Light Professional Orange */
    color: #000000;      /* Pure Black Text */
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    width: 240px;
    z-index: 999;
    text-align: center;
    font-weight: 500; /* Medium weight for clarity */
    border: 1px solid #ffe8cc; /* Subtle border for definition */
    animation: fadeInTooltip 0.2s ease-out;
}

/* Tooltip Animation: Smooth slide up */
@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Tooltip Arrow pointing down */
.tooltip-arrow-down {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #fff4e6 transparent transparent transparent;
}

/* Definition for cleaner UI */
.cursor-pointer { cursor: pointer; }


/* Square Social Buttons */
.cs_social_square {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent white */
    color: #fff !important;
    border-radius: 6px; /* Professional rounded square */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cs_social_square:hover {
    background: #fff; /* Flip to white on hover */
    color: var(--accent-color, #ff8c00) !important; /* Use your brand orange */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Ensure the top header aligns them properly */
.cs_top_header_right {
    display: flex;
    align-items: center;
}
.cs_site_branding img {
    height: 60px;
}
.cs_cause_details_wrap .cause-card-img-wrapper
 {
    height: 110px;
}
.cause-card-img-wrapper
 {
    height: 350px;
}
.cs_header_contact_list li:nth-child(3) {
    display: none;
}
.cause-card-img-wrapper img{
height: 100% !important;
    border-radius: 30px;
    padding: 10px;
    margin-top: 10px;
    object-fit: scale-down ;
    }

.cause-card-img-wrapper {
    object-fit: contain;
    width: 100%;
    min-height: 100px;
    border-radius: 1rem;
    border: 1px solid #e5e5e5;
    aspect-ratio: 3 / 2;
    padding: 10px;
    background-color: #ffffff;
}
.rich-content b, strong img {
    display: none;
}
.rich-content ul li img {
    display: none;
}
.amount-btn {
    border-color: #ff8c00;
    color: #ff8c00;
    background: #fffaf5;
}
@media (min-width: 1200px) {
    .cause-banner-wrapper {
        margin-top: 100px;
    }
}
li.cause-nav-item {
    background-color: #fff;
    color: #000;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0;
    padding: 22px 28px;
    line-height: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    display: -moz-box;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    grid-gap: 16px;
    gap: 0px;
    position: relative;
    text-transform: uppercase;
    border-radius: 19px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}
.cause-card-title {height: 35px;}
.glass {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100%;
    padding: 30px 10px;
    background: linear-gradient(#fff2, transparent);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s;
    border-radius: 10px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    transform: rotate(calc(var(--r) * 1deg));
    transition: all 1.5s ease;
}
media screen and (max-width: 991px) { .cs_height_lg_80 {
        height: 35px;
    }
}

.cs_hero.cs_style_4 {
    height: 100%;
    max-height: 1028px;
    min-height: 466px;
    padding: 3px 0 0px;
}
@media (max-width: 991px) {
    .cs_hero.cs_style_4 {  
        height: 100%;
        min-height: 150px;
         padding: 10px 0 0px;
    }
}
@media screen and (min-width: 992px) {
    .cs_height_120 {
        height: 35px;
    }
}
#content-section .rich-content.bg-white
 {
    background: #fff;
    box-shadow: 0 15px 30px hsla(0, 0%, 48%, .18);
    border-radius: 40px;
    padding: 1.5rem;
}
.cs_video_section .container {
    background: linear-gradient(107deg, rgb(255, 67, 5) 11.1%, rgb(245, 135, 0) 95.3%);
    padding: 20px;
    border-radius: 20px;
    color: #fff;
}
#hero-1770394405049 .cs_hero.cs_style_4 {
    min-height: 718px;
}

section#about-1745055748456 {
    background-position: 100%;
    background-repeat: repeat;
    background-size: contain;
}
#about-1745055748456 p.cs_cta_subtitle {
    color: white;
}
#about-1745055748456  .cs_cta.cs_style_2 .cs_cta_uptitle{
color: white;
font-size: 50px;
}
div#content-section .rich-content
 {
    background: #fff;
    box-shadow: 0 15px 30px hsla(0, 0%, 48%, .18);
    border-radius: 40px;
    padding: 1.5rem;
}
.cause-card-title {
    line-height: 18px;
}
.qty-btn {
background: linear-gradient(107deg, rgb(255, 67, 5) 11.1%, rgb(245, 135, 0) 95.3%);
}
.qty-control {
    float: right;
    margin-top: -15px;}
    .cs_team.cs_style_2 {
    padding: 16px;
    border: 0 solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    text-align: center;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    min-height:100%;
}
img.cs_team_member_thumb {
    max-height: 100%;
    border-radius: 24px;
    height:235px;
    width:235px;
}
.cs_site_header.cs_style_1.cs_size_md .cs_main_header_in, .cs_site_header.cs_style_2.cs_size_md .cs_main_header_in
 {
    height: 70px;
}
.cs_brand.cs_style_2 img
 {
    height: 150px;
}
.cs_address_title {
    font-size: 11px !important;
}
.cs_address_text.cs_ternary_color.small.d-flex.align-items-start {
    font-size: 11px;
    color: white;
    text-align: left !important;
}
.cs_footer_grid_item {
    color: white;
    font-size: 13px;
}
p.cs_section_subtitle.cs_fs_18.text-muted.mx-auto {
    max-width: 100% !important;
}
.cs_main_header_in {
    height: 65px !important;
}
.cs_top_header_in {
    height: 35px !important;
    color: #fff;
}
.cause-card-img-wrapper .shadow-sm {
    background: linear-gradient(107deg, rgb(255, 67, 5) 11.1%, rgb(245, 135, 0) 95.3%) !important;
    font-size: 16px !important;
    border-radius: 1rem 1rem 0 0;
}
svg.me-2.text-primary.mt-1.iconify.iconify--mdi {
    color: #ffffff !important;
}
 .cs_height_150 {
        height: 20px;
    }
    .cs_bottom_footer {
    padding: 7px 0;
}
#cause-1765809142610 .cs_gap_y_30 {
    justify-content: center;
}

.rich-content:empty {
    display: none;
}
.rich-content:not(:empty) {
    display: block;
}
