/* web colour */
/* Removed duplicate .bg-breadcrumb and .footer .footer-gallery .footer-search-icon rules */
/* web colour */
:root {
    --bs-primary: #1a73e8;
    --bs-secondary: #cac4c0; /* keep or adjust your secondary color */
    --bs-white: #64a8bb;
    --bs-dark: #fffdfd;
    --bs-light: #acc5e1;
    --bs-body: #fffafa;
}
/* Force text-primary to be blue */
.text-primary {
  color: #0d6efd !important;
  font-weight: bold !important;
  font-size: 1.6rem !important;
}
.btn, .btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: #e9ebef !important; /* ensures text is white */
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/* Add this to your style.css */
.logo {
    margin-left: 45px; /* Adjust as needed */
    max-height: 100px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Gradient background for body */
html, body {
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 50%, #64b5f6 100%);
    min-height: 100vh;
}

/* ensure fixed nav sits flush */
.fixed-top {
    top: 0 !important;
}

/* Improve trustee carousel caption visibility */
.event-card-lg .carousel-caption {
    background: rgba(0, 0, 0, 0.65);
    color: #fff !important;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 2px #fff;
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 90%;
}

.event-card-lg .carousel-caption h5 {
    color: #fff !important;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 2px #fff;
}

.event-card-lg .carousel-caption p {
    color: #e0f7fa !important;
    font-size: 1rem;
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-hover-bg {
    transition: 0.5s;
}

.btn-hover-bg:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-primary) !important;
}

    /* Floating contact icons (bottom-right) */
    .floating-contact {
        position: fixed;
        left: 18px;
        bottom: 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1100;
    }

    .floating-contact .fc-item {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bs-primary);
        color: #fff;
        border-radius: 50%;
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
        transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
        text-decoration: none;
    }

    .floating-contact .fc-item i { font-size: 18px; }

    .floating-contact .fc-item:hover,
    .floating-contact .fc-item:focus {
        transform: translateY(-3px);
        box-shadow: 0 10px 26px rgba(0,0,0,0.24);
    }

    .floating-contact .fc-fb { background: #1877f2; }
    .floating-contact .fc-wa { background: #25d366; }
    .floating-contact .fc-email { background: #6c63ff; }

    @media (max-width: 576px) {
        .floating-contact { left: 12px; bottom: 18px; }
        .floating-contact .fc-item { width: 44px; height: 44px; }
    }

    /* Hide floating icons on larger screens (desktop/tablet) so topbar icons remain canonical */
    @media (min-width: 768px) {
        .floating-contact {
            display: none !important;
        }
    }

    /* Legacy floating icons used in index.html: make them mobile-only and visually consistent */
    .floating-icons {
        position: fixed;
        left: 18px;
        bottom: 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1100;
    }
    .floating-icons .floating-icon {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bs-primary);
        color: #fff;
        border-radius: 50%;
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
        transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
        text-decoration: none;
    }
    .floating-icons .floating-icon i { font-size: 18px; }
    .floating-icons .floating-icon:hover,
    .floating-icons .floating-icon:focus {
        transform: translateY(-3px);
        box-shadow: 0 10px 26px rgba(0,0,0,0.24);
    }

    @media (min-width: 768px) {
        .floating-icons { display: none !important; }
    }

.btn-hover-color {
    transition: 0.5s;
    color: #0d6efd !important;
}

.btn-hover-color:hover {
    color: var(--bs-secondary) !important;
}
/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

/* Holiday banner (subtle slide + fade) */
#holiday-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #0b6b3a, #f06eaa);
    font-weight: 700;
    z-index: 100000;
    font-size: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 400ms cubic-bezier(.2,.9,.2,1), opacity 400ms ease-in-out;
    will-change: transform, opacity;
    display: block;
    pointer-events: auto;
}
#holiday-banner.visible {
    transform: translateY(0);
    opacity: 1;
}
@media (max-width: 576px) {
    #holiday-banner { font-size: 0.9rem; padding: 0.5rem 0; }
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
} 

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

/* Topbar branded circular icon buttons */
.topbar-info {
    gap: 0.9rem; /* slightly larger spacing to reduce clutter */
}

.topbar-info a,
.topbar-info span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Make all topbar anchors appear as circular touch targets */
.topbar-info a {
    min-width: 44px;
    height: 44px;
    padding: 6px;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.topbar-info a:focus {
    outline: 3px solid rgba(255,255,255,0.12);
    outline-offset: 2px;
}

/* Slight lift on hover/focus */
.topbar-info a:hover,
.topbar-info a:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    opacity: 0.98;
}

/* Branded colors via href patterns where available */
.topbar-info a[href^="mailto:"] { background: #6c63ff; }
.topbar-info a[href^="tel:"] { background: #6c757d; }
.topbar-info a[href*="facebook.com"] { background: #1877f2; }
.topbar-info a[href*="wa.me"] { background: #25d366; }
.topbar-info a[href*="twitter.com"] { background: #1da1f2; }
.topbar-info a[href*="instagram.com"] { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.topbar-info a[href*="linkedin.com"] { background: #0A66C2; }

/* Fall-back using icon class if href is '#' or missing */
.topbar-info a:has(.fa-facebook-f),
.topbar-info a .fa-facebook-f { background: transparent; }
.topbar-info a:has(.fa-twitter),
.topbar-info a .fa-twitter { background: transparent; }

/* If href-based selectors don't match (some icons use '#'), set defaults by inspecting .fab classes */
.topbar-info a .fab.fa-facebook-f { color: #fff; }
.topbar-info a .fab.fa-whatsapp { color: #fff; }
.topbar-info a .fab.fa-twitter { color: #fff; }
.topbar-info a .fab.fa-instagram { color: #fff; }
.topbar-info a .fab.fa-linkedin-in { color: #fff; }

/* Add a visual separator between contact (email/phone) and social icons */
.topbar-info a[href*="facebook.com"] {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .topbar-info a { min-width: 40px; height: 40px; padding:5px; }
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/* Make the topbar's location/map-marker icon red to stand out */
.topbar .fa-map-marker-alt,
.topbar .fa-map-marker {
    color: #dc3545 !important; /* Bootstrap danger red */
}
/*** Topbar End ***/
/* about laro hading */
.about-laro-heading {
    color: #1a73e8 !important;
    font-size: 2rem !important;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 1px 1px 8px #eceef3;
    margin-bottom: 30px;
}


/*** Navbar Start ***/
.navbar {
    padding: 0;
    
}

.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .navbar .collapse.navbar-collapse .btn-hover-bg.btn {
        margin-bottom: 20px;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1a73e8 !important; /* Use your site's primary blue */
    background-color: transparent;
    font-weight: bold;
}
/* Small pointer/underline used in the navbar for active items */
.nav-active-pointer {
    position: relative;
    /* provide a little space so the underline doesn't overlap text */
    padding-bottom: 6px;
}
/* Underline pointer used in the navbar for active items */
.nav-pointer {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bs-primary);
    bottom: -4px;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity .15s ease, transform .15s ease;
}
.nav-active-pointer .nav-pointer,
.nav-active-pointer.active .nav-pointer,
.nav-link.active .nav-pointer {
    opacity: 1;
    transform: translateY(0);
}
/*** Navbar End ***/

/*** Carousel Start ***/
.carousel-header #carouselId .carousel-control-prev,
.carousel-header #carouselId .carousel-control-next {
    background: transparent;
}

.carousel-header #carouselId .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header #carouselId .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header #carouselId .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, 0.4));
    background-size: cover;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
    background: transparent !important;
}

.carousel-header #carouselId.carousel {
    position: relative;
}

.carousel-header #carouselId.carousel .carousel-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.carousel-header #carouselId.carousel .carousel-indicators li,
.carousel-header #carouselId.carousel .carousel-indicators li,
.carousel-header #carouselId.carousel .carousel-indicators li {
    margin-right: 30px !important;
}

.carousel-header #carouselId.carousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 12px !important;
    border: 5px solid transparent;
    transition: 0.5s;
    
}

.carousel-header #carouselId.carousel .carousel-indicators li.active {
    border: 5px solid var(--bs-primary) !important;
    border-radius: 10px;
}
/*** Carousel Start ***/
/* ...existing code... */
.our-impact-container {
    max-width: 480px;
}
/* Join Us Button Custom Style */
.join-us-btn {
    background: linear-gradient(90deg, #ffb347 0%, #ffcc80 100%);
    color: #222 !important;
    border: none;
    border-radius: 32px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(255,179,71,0.18);
    padding: 0.85em 2.5em;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.join-us-btn:hover, .join-us-btn:focus {
    background: linear-gradient(90deg, #ffa726 0%, #ffd580 100%);
    color: #111 !important;
    box-shadow: 0 8px 32px rgba(255,179,71,0.28);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}
/* Floating Contact Icons */
.floating-icons {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.floating-icon {
    width: 24px;
    height: 24px;
    background: transparent;
    color: #1a73e8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: background 0.2s, transform 0.2s;
    font-size: 0.85rem;
    cursor: pointer;
}
.floating-icon.email { background: #ea4335; }
.floating-icon.facebook { background: #1877f3; }
.floating-icon.whatsapp { background: #25d366; }
.floating-icon:hover {
    transform: scale(1.12);
    filter: brightness(1.1);
}
@media (max-width: 768px) {
    .floating-icons {
        top: auto;
        bottom: 16px;
        left: 8px;
        transform: none;
        gap: 10px;
    }
    .floating-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}
/* Animated Recent Workshops Section */
.workshop-animated-bg {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(90deg, #f8fafc 0%, #e3eafc 100%);
    padding: 16px 0;
}
.workshop-animated-track {
    display: flex;
    gap: 32px;
    animation: workshopScroll 40s linear infinite;
    will-change: transform;
}
.workshop-block {
    min-width: 320px;
    max-width: 340px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.08);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.workshop-block img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}
.workshop-block-text {
    padding: 18px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.workshop-block h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 4px;
}
.workshop-block .workshop-date {
    font-size: 0.95rem;
    color: var(--bs-primary);
    margin-bottom: 2px;
}
.workshop-block span {
    font-size: 0.98rem;
    color: #333;
}
.workshop-block:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.16);
    transform: translateY(-4px) scale(1.04);
}
@keyframes workshopScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .workshop-block {
        min-width: 240px;
        max-width: 260px;
    }
    .workshop-block img {
        height: 120px;
    }
    .workshop-animated-track {
        gap: 16px;
    }
}

/* Counter / impact styling: transparent glass cards */
.counter {
    background-color: transparent !important;
}
.counter-glass {
    /* dark-tinted glass for maximum legibility */
    background: linear-gradient(180deg, rgba(10,12,16,0.68), rgba(10,12,16,0.5));
    border: 1px solid rgba(255,255,255,0.06);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding-top: 10px;
    padding-bottom: 10px;
}
.counter-glass p,
.counter-glass h5 { color: rgba(255,255,255,0.98); text-shadow: 0 1px 2px rgba(0,0,0,0.45); }
.counter .counter-counting .text-primary {
    /* solid high-contrast number color for readability */
    background: none !important;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #ffd166 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.counter .counter-item.counter-glass { box-shadow: 0 18px 50px rgba(2,6,23,0.22); }
.counter .join-us-btn { box-shadow: 0 10px 36px rgba(255,179,71,0.16); }

/* Membership box: bordered panel for Become a Member section */
.membership-box {
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff; /* keep white background inside */
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(12,24,48,0.06);
}
.membership-box .membership-card h2 { margin-top: 0; }
@media (max-width: 576px) {
    .membership-box { padding: 18px; margin: 0 12px; }
}

/* Badge inside membership box */
.membership-box { position: relative; }
.membership-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(90deg, #ffb347, #ff7b7b);
    color: #111;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: rotate(-6deg);
}
.membership-badge i { font-size: 0.95rem; }
@media (max-width: 576px) {
    .membership-badge { top: -8px; right: -8px; padding: 6px 10px; font-size: 0.85rem; transform: rotate(-4deg); }
}

/* Make all carousel text white and add fade-in animation */
.carousel-header #carouselId .carousel-caption,
.carousel-header #carouselId .carousel-caption * {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    animation: carouselTextFadeIn 1.2s ease both;
    /* Optional: stagger animation for child elements */
}

@keyframes carouselTextFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Optional: stagger effect for headings, paragraphs, and buttons */
.carousel-header #carouselId .carousel-caption h1,
.carousel-header #carouselId .carousel-caption h4 {
    animation-delay: 0.2s;
}
.carousel-header #carouselId .carousel-caption p {
    animation-delay: 0.4s;
}
.carousel-header #carouselId .carousel-caption a,
.carousel-header #carouselId .carousel-caption .btn {
    animation-delay: 0.6s;
}

/* ...existing code... */
/*** Carousel End ***/





/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 0 0;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .tab-class .nav .nav-item a.active,
.about .tab-class .nav .nav-item a.active span {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

/* Events cards styles */
.events-cards .event-card {
    border: 0;
    border-radius: 12px;
    transition: transform .18s ease, box-shadow .18s ease;
    overflow: hidden;
    background: #fff;
}
.events-cards .event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(10,30,60,0.12);
}
.events-cards .event-card .card-img-top {
    height: 190px;
    object-fit: cover;
}
.events-cards .card-body {
    padding: 20px;
}
.events-cards .card-title {
    color: var(--bs-primary);
    font-weight: 700;
}
.events-cards .card-text {
    color: #6c757d;
}
.card-link { color: inherit; }

/* Larger card variant used on events page */
.event-card-lg { border-radius: 14px; overflow: hidden; }
.event-card-lg .card-img-top,
.event-card-lg .carousel-inner img {
    height: 320px;
    object-fit: cover;
}
.event-card-lg .card-body { padding: 22px; }
.events-cards { padding-bottom: 10px; }

@media (max-width: 767px) {
    .event-card-lg .card-img-top,
    .event-card-lg .carousel-inner img { height: 220px; }
}

/* Carousel caption styling for readability */
.event-card-lg .carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    padding: 12px 18px;
    background: rgba(0,0,0,0.45);
    border-radius: 8px;
}
.event-card-lg .carousel-caption h5 {
    margin: 0;
    color: #fff;
    font-weight: 700;
}
.event-card-lg .carousel-caption p { margin: 0; color: #e9eef6; }




/*** About End ***/


/*** Service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-link {
    position: absolute;
    width: 100%; 
    height: 100%; 
    padding: 20px; 
    bottom: 0; 
    left: 0; 
    display: flex; 
    align-items: end;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.5s; 
}

.service .service-item .service-link:hover {
    background: rgba(0, 0, 0, 0.6);
}

.service .service-item .service-link a {
    color: var(--bs-white);
    transition: 0.5s;
}

.service .service-item img {
    transition: 0.5s;
}

.service .service-item:hover img {
    transform: scale(1.2);
}

.service .service-item .service-link:hover a:hover {
    color: var(--bs-primary);
}
/*** Service End ***/



.donation .donation-item::after {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}


.donation .donation-item .donation-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    padding: 20px; 
    justify-content: end; 
    bottom: -60px; 
    left: 0;
    transition: 0.5s;
    z-index: 3;
}

.donation .donation-item:hover .donation-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    padding: 20px; 
    justify-content: end; 
    bottom: 0px; 
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}

.donation .donation-item .donation-btn {
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.donation .donation-item:hover .donation-btn {
    visibility: visible;
    opacity: 1;
}

/*** Donation End ***/
/* LARO Upcoming Events Section */
.event-card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(26, 115, 232, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    transition: transform 0.22s, box-shadow 0.22s;
    border-top: 4px solid #1a73e8;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}
.event-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.16), 0 3px 12px rgba(0,0,0,0.08);
    z-index: 2;
}
.event-card img {
    border-radius: 18px 18px 0 0;
    width: 100%;
    object-fit: cover;
}
.event-card h5 {
    color: #1a73e8;
    font-weight: 700;
    font-size: 1.15rem;
}
.event-card .btn {
    border-radius: 20px;
    background: linear-gradient(90deg, #1a73e8 60%, #64a8bb 100%);
    border: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.08);
}
.event-card .btn:hover {
    background: linear-gradient(90deg, #0d47a1 60%, #1a73e8 100%);
    color: #fff !important;
    transform: scale(1.06);
}
@media (max-width: 767px) {
    .event-card {
        min-height: 340px;
        padding: 1.2rem;
    }
    .event-card img {
        height: 140px !important;
    }
}


/*** Counter Start ***/
.counter .counter-item .counter-counting {
    width: 100%;
    text-align: center;
    border-style: dotted;
    border-color: var(--bs-white); 
    font-size: 30px;
}
/*** Counter End ***/


/*** causes Start ***/
.causes .causes-item {
    overflow: hidden;
}

.causes .causes-item .causes-img {
    position: relative;
    transition: 0.5s;
}

.causes .causes-item .causes-img .causes-link {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0 !important; 
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: end;
    background: rgba(0, 0, 0, .2);
    transition: 0.5s;
}

.causes .causes-item .causes-img:hover .causes-link {
    background: rgba(0, 0, 0, .6);
}

.causes .causes-item .causes-img img {
    transition: 0.5s;
}

.causes .causes-item .causes-img:hover img {
    transform: scalex(-1);
}

.causes .causes-item .causes-img .causes-dination {
    position: absolute;
    top: 0; 
    right: 0;
}

.causes .causes-item .causes-img .causes-dination a {
    font-size: 14px;
}

.causes .causes-item .causes-content {
    background: var(--bs-secondary);
    border-color: var(--bs-white);
    border-style: dotted;
    border-top: 0;

}

.causes .causes-item .progress {
    height: 10px;
    overflow: visible;
}

.causes .causes-item .progress .progress-bar {
    position: relative;
    width: 0;
    overflow: visible;
    background: var(--bs-primary);
    transition: 2s;
}

.causes .causes-item .progress .progress-bar span {
    position: absolute;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
    padding: 1px 5px;
    font-size: 12px;
    color: var(--bs-white);
    background: var(--bs-dark);
    z-index: 1;
}
.causes-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.causes-img {
    height: 220px; /* Adjust as needed */
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.causes-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.causes-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/*** causes End ***/
.bg-breadcrumb {
    background: linear-gradient(120deg, #0d6efd 60%, #198754 100%);
    background-size: cover;
    background-position: center;
    padding: 60px 0 30px 0;
}
.breadcrumb a {
    color: #fff;
    text-decoration: underline;
}
.breadcrumb-item.active {
    color: #ffd700 !important;
}
/* Blog Card Enhancements */
.blog-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    margin-bottom: 30px;
}
.blog-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.blog-img img {
    transition: transform 0.4s;
}
.blog-item:hover .blog-img img {
    transform: scale(1.08);
}
.blog-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    width: 85%;
}
.search-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}
.search-icon i {
    border-radius: 50%;
    background: #0d6efd;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.2s;
}
.search-icon i:hover {
    background: #198754;
}
.blog-item .text-dark {
    background: #f8f9fa;
    border-radius: 0 0 18px 18px;
    min-height: 260px;
}
.blog-item h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: #0d6efd;
}
.blog-item p {
    color: #444;
}
.btn-hover-bg:hover, .btn-hover-bg:focus {
    background: #198754 !important;
    border-color: #198754 !important;
}

/* Responsive Blog Grid */
@media (max-width: 991px) {
    .blog-item .text-dark {
        min-height: 320px;
    }
}
@media (max-width: 767px) {
    .blog-item {
        margin-bottom: 24px;
    }
    .blog-item .text-dark {
        min-height: unset;
    }
}


/* About Button */
.about-btn {
    background: linear-gradient(90deg, #f9d923 0%, #00a19d 100%);
    color: #222;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.about-btn:hover, .about-btn:focus {
    background: linear-gradient(90deg, #00a19d 0%, #f9d923 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    text-decoration: none;
}



/*** Events Start ***/
.event .event-carousel.owl-carousel {
    position: relative;
}
.event .event-carousel.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -60px;
    left: 0;
    width: 80px;
    height: 40px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.event .event-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: -60px;
    right: 0;
    width: 80px;
    height: 40px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.event .event-carousel.owl-carousel .owl-nav .owl-prev:hover,
.event .event-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}
.event .event-carousel .event-item .event-content {
    border-style: dotted;
    border-top: 0; 
    border-color: var(--bs-white); 
    background: var(--bs-secondary);
}
/*** Events End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    color: var(--bs-white) !important;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
    background: rgba(0, 0, 0, .6);
}


.blog .blog-item .blog-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item .blog-img:hover .search-icon {
    opacity: 1;
}
/*** Blog End ***/

/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0; 
    left: 0;
    background: rgba(249, 195, 123, .4);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
    z-index: 2;
}

.gallery .gallery-item:hover .gallery-content {
    height: 100%;
}

.gallery .gallery-item .gallery-content .gallery-inner {
    transition: 0.5s;
    background: rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.gallery .gallery-item:hover .gallery-content .gallery-inner {
    background: rgba(249, 195, 123, 1);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -80px;
    opacity: 0;
    transition: 0.5s;
    z-index: 3;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}
/*** Gallery End ***/


/*** Volunteer Start ***/
.volunteer {
    background: rgba(249, 195, 123, .1);
}
.volunteer .volunteer-img {
    position: relative;
    overflow: hidden;
}

.volunteer .volunteer-img .volunteer-title {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 10px;
    background: rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: end;
    transition: 0.5s;
}

.volunteer .volunteer-img:hover .volunteer-title {
    background: rgba(0, 0, 0, .5);
}

.volunteer .volunteer-img img {
    transition: 0.5s;
}

.volunteer .volunteer-img:hover img {
    transform: scale(1.2);
}
/*** Volunteer End ***/
@media (max-width: 767.98px) {
  .row.g-4.justify-content-center {
    max-height: none !important;
    overflow: visible !important;
    flex-wrap: wrap !important;
    display: flex !important;
  }
}
/* volunteer mobile view above */


/*** Contact Start ***/
.contact {
    background: rgba(249, 195, 123, .4);
    border-style: dotted;
    border-color: var(--bs-white);
}

/*** Contact End ***/

/* -style Service Card Titles and Read More */
.service .card-title {
    color: #1c2331 !important;
    font-size: 1.1rem !important;
    font-weight: 700;
    margin-bottom: 0.7rem;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.service .card-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background: #1a73e8;
    border-radius: 2px;
    margin-top: 6px;
}

.service .card-text {
    color: #1c2331 !important;
    font-size: 1rem;
}

.service .card a[data-bs-toggle="collapse"] {
    display: inline-block;
    color: #1a73e8 !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0;
    border: none;
    background: none;
    text-decoration: underline;
    transition: color 0.2s;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}
.service .card a[data-bs-toggle="collapse"]:hover {
    color: #0d47a1 !important;
    text-decoration: none;
}

.service .collapse {
    font-size: 0.97rem;
    color: #444 !important;
    background: #f7fafd;
    border-radius: 4px;
    padding: 10px 12px;
    margin-top: 0.5rem;
    border-left: 3px solid #1a73e8;
}



/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/
 p, h1, h2, h3, h4, h5, h6, a, span, li {
    color: #4c4040 !important;
}
/* Recent Workshops (Causes) Card Enhancements */
.causes-item {
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26, 115, 232, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    overflow: hidden;
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}
.causes-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.16), 0 3px 12px rgba(0,0,0,0.08);
    z-index: 2;
}
.causes-img img {
    border-radius: 16px 16px 0 0;
    transition: transform 0.3s;
}
.causes-item:hover .causes-img img {
    transform: scale(1.06);
    filter: brightness(0.92);
}
.causes-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}
.causes-content p {
    color: #1c2331;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}
.causes-content .btn {
    border-radius: 20px;
    background: linear-gradient(90deg, #1a73e8 60%, #64a8bb 100%);
    border: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.08);
}
.causes-content .btn:hover {
    background: linear-gradient(90deg, #0d47a1 60%, #1a73e8 100%);
    transform: scale(1.06);
    color: #fff !important;
}
.causes-dination a.btn {
    border-radius: 12px;
    font-size: 0.95rem;
    padding: 6px 18px;
    background: #e3f0fc;
    color: #fefefe !important;
    font-weight: 600;
    margin-bottom: 8px;
    transition: background 0.5s, color 0.2s;
}
.causes-dination a.btn:hover {
    background: #1a73e8;
    color: #fff !important;
}
/* recent workshop end */
/* Programs & Services Macoda-style Compact */
.programs-header {
    margin-bottom: 2.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.programs-header .programs-border {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    height: 48px;
    background: transparent;
    border: 3px solid #1a73e8;
    border-radius: 30px;
    transform: translate(-50%, -50%);
    z-index: 1;
}
@media (max-width: 500px) {
    .programs-header .programs-border { width: 90vw; }
}
.programs-header h5 {
    background: #f8fafc;
    z-index: 2;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.program-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(220, 220, 223, 0.08), 0 1.5px 6px rgba(157, 151, 151, 0.04);
    transition: transform 0.22s, box-shadow 0.22s;
    border-top: 4px solid #1a73e8;
    position: relative;
    min-height: 220px;
}
.program-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.16), 0 3px 12px rgba(0,0,0,0.08);
    z-index: 2;
}
.program-icon i {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: #e3f0fc;
    color: #1a73e8;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.program-title {
    color: #1a73e8;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}
.program-desc {
    color: #1c2331;
    font-size: 0.95rem;
}
/*** Footer Start ***/
.footer {
    background: linear-gradient(120deg, #1a237e 70%, #283593 100%);
    border-top: 2px dotted #64a8bb;
    padding-top: 22px;
    padding-bottom: 6px;
    color: #e3f0fc !important;
    font-size: 0.98rem;
    box-shadow: 0 -2px 18px rgba(26, 115, 232, 0.13);
}

.footer .footer-item {
    margin-bottom: 14px;
}

.footer .footer-item h5 {
    color: #64a8bb !important;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 6px #0d47a1;
}

.footer .footer-item a,
.footer .footer-item p {
    line-height: 1.7;
    color: #e3f0fc !important;
    transition: color 0.3s, letter-spacing 0.3s;
    font-size: 0.97rem;
}

.footer .footer-item a:hover {
    color: #ffd54f !important;
    letter-spacing: 1px;
    text-decoration: underline;
}

.footer .footer-social {
    margin-top: 8px;
}

.footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 7px;
    background: #283593;
    color: #ffd54f !important;
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(26, 115, 232, 0.13);
    transition: background 0.3s, color 0.2s, transform 0.2s;
}

.footer .footer-social a:hover {
    background: #ffd54f;
    color: #1a237e !important;
    transform: scale(1.12);
}

.footer .footer-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 6px;
}

.footer .footer-gallery img {
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 4px rgba(26, 115, 232, 0.13);
}

.footer .footer-gallery:hover img {
    transform: scale(1.04);
    box-shadow: 0 3px 12px rgba(26, 115, 232, 0.18);
}

.footer .footer-gallery .footer-search-icon {
    opacity: 0;
    background: rgba(26, 115, 232, 0.18);
    transition: opacity 0.3s;
}

.footer .footer-gallery:hover .footer-search-icon {
    opacity: 1;
}

.footer hr {
    border-top: 1px solid #283593;
    margin: 12px 0;
}

.footer .footer-bottom {
    text-align: center;
    color: #64a8bb !important;
    font-size: 0.93rem;
    margin-top: 6px;
    letter-spacing: 0.3px;
}
/*** Footer End ***/
@media (max-width: 576px) {
  .row.g-4.justify-content-center {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
  }
  .row.g-4.justify-content-center > [class^="col-"] {
    flex: 0 0 80%;
    max-width: 80%;
    min-width: 250px;
  }
}
/* Volunteers Section - Amanah Lifeline Members Style */
.volunteer-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e3f0fc;
    background: #fff;
}
.volunteer-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.12);
    border-color: #1a73e8;
}
.volunteer-img img {
    box-shadow: 0 2px 12px rgba(26, 115, 232, 0.10);
    transition: box-shadow 0.2s;
    border-radius: 12px; /* Makes images square with slightly rounded corners */
    /* Remove or comment out border-radius: 50%; if present */
}
.volunteer-card:hover .volunteer-img img {
    box-shadow: 0 4px 24px rgba(26, 115, 232, 0.18);
}
.volunteer-social a {
    display: inline-block;
    font-size: 1.1rem;
    margin: 0 4px;
    color: #1a73e8 !important;
    transition: color 0.2s;
}
.volunteer-social a:hover {
    color: #0d47a1 !important;
}
@media (max-width: 767px) {
    .volunteer-card {
        margin-bottom: 1.5rem;
    }
}
/* Add this to style the header background on hover */
.bg-breadcrumb {
    transition: background 0.5s cubic-bezier(0.4,0,0.2,1);
}
.bg-breadcrumb:hover {
    background: linear-gradient(120deg, #4a00e0 60%, #8e2de2 100%);
}
/* Add this at the end of your style.css file */

/* Animation for activity-item on hover */
.activity-item {
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
    will-change: transform, box-shadow;
}
.activity-item:hover {
    transform: translateY(-12px) scale(1.04) rotateZ(-1deg);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.10);
    z-index: 2;
}
.activity-item .activity-icon {
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), color 0.35s;
}
.activity-item:hover .activity-icon {
    transform: scale(1.18) rotateZ(6deg);
    color: #ffc107 !important; /* highlight icon color on hover */
}
.activity-item h4 {
    transition: color 0.35s;
}
.activity-item:hover h4 {
    color: #ff9800;
}
/* member css for volunteer*/
.member-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
}
.member-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.member-card img {
    object-fit: cover;
    height: 240px;
}
.member-card .card-body {
    border-radius: 0 0 16px 16px;
    padding-bottom: 1.5rem;
}
.member-desc {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
}

.amount-btn {
    min-width: 110px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.amount-btn.active,
.amount-btn:focus {
    background: #0d6efd;
    color: #fff;
}

/* Breadcrumb Background with Overlay */
.bg-breadcrumb {
    position: relative;
}
.bg-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* Adjust opacity as needed */
    z-index: 1;
}
.bg-breadcrumb > .container {
    position: relative;
    z-index: 2;
}
/* Navbar  bold Customization */
.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Modern and neat gallery styles */
.laro-gallery-img {
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
}
.laro-gallery-img img {
  object-fit: cover;
  height: 220px;
  border-radius: 18px;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}
.laro-gallery-img:hover img {
  transform: scale(1.07) rotate(-1deg);
}
.laro-gallery-img:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.12);
  transform: translateY(-4px) scale(1.02);
}
.laro-gallery-overlay {
  background: linear-gradient(120deg, rgba(0,0,0,0.45) 60%, rgba(0,123,255,0.25) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  inset: 0;
}
.laro-gallery-img:hover .laro-gallery-overlay {
  opacity: 1;
}
.gallery-location-title {
  font-size: 1.05rem;
  color: #0d6efd;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  background: rgba(245,245,245,0.85);
  border-radius: 8px;
  padding: 2px 0 2px 0;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  display: inline-block;
  min-width: 80px;
}
@media (max-width: 768px) {
  .laro-gallery-img img {
    height: 140px;
  }
}

/* Causes / Workshops: show only title (hide descriptive paragraphs) */
.causes-content p {
    display: none !important;
}

/* Hidden cards when collapsed */
.collapsed-card {
    display: none !important;
}

/* View all / Show less button styling */
.view-all-btn {
    background: var(--bs-primary);
    color: #fff;
    border: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.view-all-btn:focus {
    outline: 3px solid rgba(13,110,253,0.15);
}

/* Contact page subtle improvements */
.footer-map { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
#contactForm .form-control:focus { box-shadow: 0 0 0 0.15rem rgba(13,110,253,0.12); }
.sticky-top { position: sticky; }

/* News Section Styles */
.news-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.news-card {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #e9ecef;
}

.news-image-wrapper img {
    transition: transform 0.4s ease;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.08);
}

.news-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
}

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

.news-card a {
    margin-top: auto;
    transition: all 0.3s ease;
}

.news-card a:hover {
    color: #0d6efd !important;
    transform: translateX(4px);
    display: inline-block;
}

.transition-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .news-title {
        font-size: 1.1rem;
    }
    
    .news-image-wrapper {
        height: 200px !important;
    }
    
    .news-card {
        margin-bottom: 15px;
    }
}

/* News Category Badges */
.news-category {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Why Choose LARO Styles */
.why-laro-list {
    list-style: none;
    padding: 0;
}

.why-laro-list li {
    display: flex;
    align-items: flex-start;
}

.why-laro-list strong {
    color: #2c3e50;
}

.stat-card {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
}

.stat-icon {
    color: #0d6efd;
}

/* CTA Section Styles */
.cta-section {
    border-radius: 12px;
    margin: 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section {
        margin: 15px;
    }
}

/* Quick Links Navigation */
.quick-links-nav {
    animation: slideIn 0.5s ease-out;
}

.quick-links-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px !important;
    backdrop-filter: blur(10px);
}

.quick-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0d6efd;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.quick-link-btn:hover {
    background: #0a58ca;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .quick-links-nav {
        display: none !important;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 0;
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    border: none;
    background-color: #f8f9fa !important;
    color: #2c3e50;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff !important;
    color: #0d6efd;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background: #ffffff;
    color: #555;
    line-height: 1.8;
}

.accordion-item {
    border: 1px solid #e9ecef !important;
}

/* Workshop Clickable Styles */
.workshop-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.workshop-clickable:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.workshop-link {
    display: inline-block;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.workshop-link:hover {
    color: #0a58ca;
    transform: translateX(5px);
}