/* =========================================
   FOREST & HOPE DESIGN SYSTEM (FINAL POLISH)
   Theme: "Professional, Readable, Emotional"
   ========================================= */

:root {
    /* --- STRICT PALETTE (Cream & Teal/Navy Gradient) --- */
    --color-primary: #276ec5;
    /* Navy Blue */
    --color-primary-light: #2c9caf;
    /* Teal Blue */
    --color-primary-dark: #1c4980;
    --color-secondary: #2c9caf;

    --color-accent: #2c9caf;
    --color-accent-hover: #0f3057;

    /* Gradients */
    --gradient-primary: linear-gradient(90deg, #2c9caf 0%, #154785 100%);
    --gradient-btn: linear-gradient(90deg, #2c9caf 0%, #0f3057 100%);
    --gradient-section: linear-gradient(180deg, #FFFDD0 0%, #FFF8DC 100%);
    --gradient-card: #FFFFFF;
    --gradient-accent: linear-gradient(120deg, #2c9caf 0%, #0f3057 100%);

    --color-gradient-main: var(--gradient-primary);

    --color-gold: #C9A24D;
    /* True Gold */
    --color-bg: #ffffff;
    /* Cream */
    --color-surface: #FFFFFF;

    --color-text: #0f3057;
    /* Navy Text for contrast on Cream */
    --color-text-body: #333333;
    --color-text-muted: #6B7280;
    --color-white: #FFFDD0;
    /* Cream Text for Dark Backgrounds */

    --font-main: 'Poppins', sans-serif;


    /* --- Metrics --- */
    --radius-btn: 50px;
    --radius-card: 12px;

    --shadow-soft: 0 10px 30px rgba(31, 61, 43, 0.08);
    --shadow-nav: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* =========================================
   1. BASE STYLES
   ========================================= */

/* --- Lenis Smooth Scroll Recommended CSS --- */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-main) !important;
    background-color: var(--color-bg) !important;
    color: var(--color-text) !important;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    padding-top: 0 !important;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/assets/images/bg/v935-aum-16.jpg?v=4') !important;
    background-repeat: repeat !important;
    background-position: top center !important;
    background-size: 600px !important;
    /* Blur removed to fix scrolling performance issues */
    filter: none !important;
    z-index: -1;
    pointer-events: none;
    opacity: 1 !important;
    will-change: transform;
}

html {
    background-color: transparent !important;
}

/* Force transparency on potentially blocking containers */
/* Main Content Wrapper - semi-transparent white overlay */
.page-content-wrapper {
    background-color: var(--page-bg-color, rgba(255, 255, 255, 0.88)) !important;
    /* backdrop-filter removed for smoother scrolling performance */
    position: relative;
    z-index: 10;
    /* box-shadow: 0 0 20px rgba(236, 64, 64, 0.05); */
    /* Added shadow for better separation */
}

/* Ensure sections inside are transparent so the wrapper background shows */
section.section-pad,
main {
    background-color: transparent !important;
    background: transparent !important;
}

/* Hide Scrollbar Globally */
/* Chrome, Safari, Opera */
::-webkit-scrollbar {
    display: none;
}

/* Firefox, IE, Edge */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    overflow-y: scroll;
    /* Ensure scrolling is still enabled */
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-main) !important;
    color: #2c9caf;
    font-weight: 500;
    line-height: 1.25;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

/* =========================================
   2. TOPBAR & NAVBAR
   ========================================= */
/* Apply to ALL pages */
.navbar-charity:not(.header-fixed) {
    position: fixed;
    /* Changed from relative to fixed so it doesn't take space? Or absolute? */
    /* If relative, it pushes content down. If invisible, we see white space? 
       Actually, `home-page` body usually has `padding-top: 0` and hero is huge.
       If I hide it, I should likely make it absolute so content goes up if it wasn't already.
       Wait, line 148 said "position: relative; Placed normally in flow".
       If I hide it, the hero slider (which is under it?) moves up?
       Actually, `hero-slider-section` is usually `position: relative; top: 0;`.
       If navbar is relative, it pushes hero down.
       If user wants it HIDDEN, they probably want full screen hero.
       So I'll make it absolute/fixed and invisible.
    */
    position: absolute;
    width: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
    background: transparent !important;
    border-bottom: none;
    box-shadow: none;
}

.top-bar-charity {
    background: var(--color-gradient-main) !important;
    /* Gradient Background */
    color: var(--color-white);
    /* Cream Text */
    font-size: 0.85rem;
    padding: 8px 0;
    position: relative;
    z-index: 2100;
    display: block !important;
    pointer-events: auto;
    /* Ensure clickable */
    /* Force Show on Mobile */
}

@media (max-width: 991px) {
    .top-bar-charity .container>div {
        flex-direction: row !important;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        /* Compact gap */
        padding: 5px 0 5px 0;
        padding-right: 40px;
        /* Generous space for end of scroll */
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    /* Hide scrollbar */
    .top-bar-charity .container>div::-webkit-scrollbar {
        height: 0px;
        background: transparent;
        display: none;
    }

    .top-bar-charity .top-left {
        justify-content: flex-start;
        width: auto;
        margin-bottom: 0;
        font-size: 0.7rem;
        /* Slightly smaller */
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .top-bar-charity .top-right {
        justify-content: flex-start;
        width: auto;
        display: flex !important;
        flex-shrink: 0;
        padding-right: 5px;
    }

    /* Reduce padding on social icons for mobile to fit better */
    .top-bar-charity .top-right a {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    /* Scroll To Top Mobile Position */
    .scrollToTop {
        left: 20px !important;
        right: auto !important;
        bottom: 85px !important;
        /* Above bottom nav */
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
}

.text-gradient-primary {
    color: var(--color-secondary) !important;
    /* Using distinct Hex of gradient */
}

/* Ensure footer allows clicking beneath fixed nav */
@media (max-width: 991px) {
    body {
        padding-bottom: 150px !important;
        /* Increase space for fixed bottom nav */
    }

    .footer-charity {
        padding-bottom: 150px !important;
    }
}

.text-real-gold {
    color: var(--color-gold) !important;
}

.navbar-charity:not(.header-fixed) .nav-link-charity {
    color: #fff !important;
}

/* Remove scoped home-page rule if it exists or override it */
.home-page .top-bar-charity:not(.header-fixed) {
    background: var(--color-gradient-main) !important;
    position: relative;
}


/* Sticky Header Override */
header.navbar-charity.header-fixed {
    position: fixed !important;
    top: 40px !important;
    width: 100%;
    height: 80px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    /* Semi-transparent white */
    backdrop-filter: blur(15px) !important;
    /* Strong blur effect */
    -webkit-backdrop-filter: blur(15px) !important;
    /* Safari support */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1) !important;
    animation: fadeInDown 0.4s ease-out !important;
}

.top-bar-charity.top-bar-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2100;
    animation: fadeInDown 0.4s ease-out;
}

header.navbar-charity.header-fixed .nav-link-charity {
    /* color: var(--color-primary-dark) !important; */
}

.logo-charity {
    height: 60px;
    transition: all 0.3s ease;
    width: auto;
    display: block;
    border-radius: 50%;
    /* Clip square background */
}

header.navbar-charity.header-fixed .logo-charity {
    height: 50px;
}

/* --- Central Pill Nav --- */
/* --- Central Pill Nav --- */
.nav-pill-container {
    /* background: var(--color-gradient-main) !important; */
    /* User Requested Gradient */
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 25px;
    /* Slightly taller pill */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Home Page: Transparent/White Pill */
.home-page .navbar-charity:not(.header-fixed) .nav-pill-container {
    background: var(--color-gradient-main) !important;
    /* User Requested Gradient */
    border-color: rgba(255, 255, 255, 0.2);
}

.header-fixed .nav-pill-container {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link-charity {
    color: var(--color-white) !important;
    /* Apple Cream */
    font-weight: 600;
    font-size: 0.8rem !important;
    padding: 8px 16px !important;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    margin: 0 2px;
}

.header-fixed .nav-link-charity {
    color: var(--color-primary-dark) !important;
}

.nav-item.active .nav-link-charity,
.nav-link-charity:hover {
    background: var(--color-gradient-main) !important;
    background-size: 200% auto !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(152, 122, 34, 0.3);
    transform: none;
    transition: 0.5s;
}

.nav-link-charity:hover {
    background-position: right center !important;
}

.header-fixed .nav-item.active .nav-link-charity,
.header-fixed .nav-link-charity:hover {
    background: var(--color-gradient-main) !important;
    color: #fff !important;
}


/* --- Right Side Buttons --- */
.btn-nav-dark {
    background: #0d1e29;
    /* Dark Navy */
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-nav-dark:hover {
    background: #1a2f3f;
    color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-nav-red {
    background: var(--color-gradient-main) !important;
    background-size: 200% auto !important;
    color: var(--color-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: 0.5s;
    border: none;
    box-shadow: 0 4px 15px rgba(228, 161, 27, 0.3);
}

.btn-nav-red:hover {
    background-position: right center !important;
    color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-cta-gold {
    background-color: var(--color-primary) !important;
    color: #fff !important;
    font-weight: 500;
    padding: 14px 34px;
    border-radius: var(--radius-btn);
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-cta-gold:hover {
    background-color: var(--color-accent-hover) !important;
    transform: translateY(-2px) scale(1.02);
    color: #fff !important;
    text-decoration: none;
}

/* Mobile Navbar Alignment */
@media (max-width: 991px) {
    .navbar-charity .navbar {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar-charity .navbar-toggler {
        order: 3;
        margin-left: auto;
        margin-right: 0;
    }

    .navbar-charity .navbar-brand {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    .navbar-charity .navbar-collapse {
        order: 4;
        width: 100%;
    }
}

/* =========================================
   3. PAGE BANNERS
   ========================================= */
.page-header.bg_img {
    background-position: center center !important;
    padding: 100px 0 100px !important;
    /* Reduced padding for relative layout */
    position: relative;
    /* Base color matching brand */
}

/* Premium smooth overlay */
/* Premium smooth overlay - REMOVED PER USER REQUEST */
.page-header.bg_img::before {
    display: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .title {
    font-size: 4rem !important;
    font-weight: 500 !important;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .page-header.bg_img {
        padding: 160px 0 80px !important;
    }

    .page-header .title {
        font-size: 2.5rem !important;
    }

    /* Mobile navbar adjustments */
    .navbar-charity {
        height: 70px;
    }

    .logo-charity {
        height: 45px;
    }

    .btn-cta-gold {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    /* Mobile menu: Hide standard top elements */
    .navbar-charity .navbar-toggler,
    .navbar-charity .navbar-collapse {
        display: none !important;
    }

    .navbar-charity {
        height: auto;
        padding: 10px 0;
        justify-content: center;
        background: #fff !important;
        /* Mobile White */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar-charity .navbar-brand {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    /* 2x2 Grid for Content Containers on Mobile */
    .row>[class*='col-'] {
        /* This is risky global, let's target specific sections if possible, 
           User said "show containes in 2x2 grid". 
           Standard bootstrap cols are 100% on mobile. 
           To make them 50%, we target col-12 or col-md-X inside specific wrappers.
        */
    }

    /* Specific target for 2x2 grid on mobile for features/galleries */
    /* Specific target for 2x2 grid on mobile for features/galleries */
    .mobile-2x2 .col-12,
    .mobile-2x2 .col-md-4,
    .mobile-2x2 .col-lg-4,
    .mobile-2x2 .col-md-3,
    .mobile-2x2 .col-lg-3,
    .mobile-2x2 .col-lg-6,
    .mobile-2x2 .masonary-item {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        float: left;
        /* Ensure masonry/float layouts obey */
    }
}

/* --- Hero Slider (Static Layout) --- */
/* --- Hero Slider (Static Layout) --- */
.hero-slider-section {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px !important;
    /* Fixed height per 1900x600 ratio request */
    overflow: hidden;
    background: #000;
    z-index: 1;
}

@media (max-width: 991px) {
    .hero-slider-section {
        height: 500px !important;
        /* Adjusted for mobile/tablet */
    }
}

.page-content-wrapper {
    position: relative;
    z-index: 10;
    margin-top: 0;
    background: var(--color-bg);
    box-shadow: none;
}

.hero-slide-item {
    height: 100%;
    /* Inherit 100vh from parent */
    background-size: cover;
    background-position: center center;
    /* Center image */
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Balanced darker overlay for centered text readability */
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
}

.hero-content-inner {
    max-width: 850px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1s forwards 0.3s;
    margin: 0 auto;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-weight: 400;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.35rem;
    margin: 0 auto 2rem;
    color: #F0F0F0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

/* =========================================
   4. SECTIONS & CONTENT
   ========================================= */
.section-pad {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.bg-forest {
    background-color: var(--color-primary);
    color: #fff;
}

.bg-cream {
    background-color: var(--color-bg);
}

.bg-white {
    background-color: #fff;
}

.text-gold {
    color: var(--color-accent) !important;
}

.hover-text-gold:hover {
    color: var(--color-accent) !important;
}

/* Service Cards */
.card-charity {
    background: var(--gradient-card);
    border-radius: var(--radius-card);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #E9E9E9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    top: 0;
}

.card-charity:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(31, 61, 43, 0.12);
    border-color: var(--color-secondary);
}

.icon-box-charity {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    /* Gradient Accent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    /* White icon on gradient */
    transition: 0.3s;
}

.card-charity:hover .icon-box-charity {
    background: var(--color-primary);
    color: var(--color-accent);
}

/* Impact Stats */
.stat-number {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--color-accent);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

/* Testimonials / Stories */
.story-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--color-accent);
}

.story-text {
    font-style: italic;
    color: var(--color-text-body);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-author {
    font-weight: 700;
    color: var(--color-primary);
}

/* =========================================
   5. FOOTER (High Contrast)
   ========================================= */
.footer-charity {
    background: var(--color-gradient-main) !important;
    /* Force Brand Gradient */
    color: var(--color-white);
    /* Apple Cream */
    padding-top: 50px;
    /* Reduced/Compressed spacing */
    padding-bottom: 0;
    position: relative;
    z-index: 900;
    /* Increased heavily to ensure above content wrappers */
    pointer-events: auto !important;
    /* Ensure footer links are clickable */
}

.footer-cta-ribbon {
    background: var(--color-primary);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 70px;
    width: 70px;
    /* Force square for circle */
    object-fit: cover;
    /* Cover ensuring no stretch */
    border-radius: 50%;
    /* Clip square background */
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    /* Reduced margin */
    font-size: 0.9rem;
    position: relative;
    z-index: 901;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffffff;
}

.footer-menu {
    padding-left: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 902;
}

.footer-menu li {
    margin-bottom: 6px;
    /* Compressed list spacing */
    list-style: none;
    position: relative;
}

.footer-menu li a {
    color: rgb(253 253 253);
    /* Transparent Cream */
    font-size: 0.95rem;
    transition: 0.3s;
    text-decoration: none;
    display: block !important;
    /* Force block for full-width click area */
    padding: 5px 0;
    /* Increase touch target size */
    cursor: pointer !important;
    position: relative;
    z-index: 905;
    pointer-events: auto !important;
}

.footer-menu li a:hover,
.footer-menu li a:active {
    color: var(--color-accent);
    padding-left: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-gradient-main) !important;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
    position: relative;
    z-index: 905;
    pointer-events: auto !important;
}

.footer-social-links a:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gold {
    color: var(--color-accent) !important;
}

/* =========================================
   6. LOADER & ANIMATIONS
   ========================================= */
.loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-screen.fade-out-loader {
    opacity: 0;
    visibility: hidden;
}

.loader-logo-pulse {
    width: 140px;
    animation: warmPulse 2s infinite ease-in-out;
}

@keyframes warmPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   7. SPLIT SERVICE CARDS (Requested Update)
   ========================================= */
.service-split-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: var(--radius-card);
    /* 12px */
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 280px;
}

.service-split-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(31, 61, 43, 0.15);
}

.service-split-content {
    width: 50%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.service-split-image {
    width: 50%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-split-card:hover .service-split-image {
    transform: scale(1.05);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.service-icon-large {
    font-size: 3rem;
    color: var(--color-accent);
}

.service-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-headline {
    font-size: 1.75rem;
    font-weight: 500;
    color: #2c9caf;
    /* Forest Green */
    line-height: 1.2;
    margin-bottom: 0;
}

/* Mobile adjust */
@media (max-width: 768px) {
    .service-split-card {
        flex-direction: column-reverse;
    }

    .service-split-content,
    .service-split-image {
        width: 100%;
        height: 250px;
    }

    .service-split-content {
        height: auto;
    }
}


/* =========================================
   8. GALLERY & VIDEO SLIDERS
   ========================================= */
.gallery-section {
    overflow: hidden;
    padding-bottom: 4rem;
}

/* Circular/Marquee Gallery */
.gallery-slider .gallery-item {
    margin: 0 10px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.gallery-slider .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slider .gallery-item:hover img {
    transform: scale(1.1);
}

/* Video Shorts Slider */
.shorts-slider {
    padding: 20px 0;
}

.short-card {
    margin: 0 15px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16;
    /* Vertical Video */
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.short-card:hover {
    transform: translateY(-10px);
}

.short-card iframe,
.short-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    opacity: 0.8;
    pointer-events: none;
}


/* =========================================
   9. TESTIMONIALS (Dark Overlay)
   ========================================= */
.testimonials-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/banner/banner-03.jpg');
    /* Fallback image */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    position: relative;
}

.testimonial-heading-wrap {
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
}

.testimonial-label {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.testimonial-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
}

.testimonial-quote-icon {
    font-size: 5rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.testimonial-slider .slick-dots {
    bottom: -40px;
    text-align: left;
}

.testimonial-slider .slick-dots li button:before {
    color: #fff;
    font-size: 10px;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--color-accent);
}


/* Custom Geometric Quote Icon (Aligned Row) */
.custom-quote-wrap {
    display: flex;
    align-items: flex-start;
}

.custom-quote-mark {
    width: 25px;
    height: 50px;
    background-color: var(--color-accent);
    margin-right: 8px;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    display: inline-block;
}

/* Decorative Gold Frames */
.focus-frame {
    position: absolute;
    border: 4px solid var(--color-accent);
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.focus-frame-1 {
    top: 25%;
    left: 15%;
    width: 140px;
    height: 180px;
}

.focus-frame-2 {
    top: 35%;
    left: 45%;
    width: 100px;
    height: 130px;
}

/* --- Scroll To Top Gold Theme --- */
.scrollToTop {
    background: var(--color-gradient-main) !important;
}

.scrollToTop:hover {
    background: var(--color-accent-hover) !important;
    color: #fff !important;
}

/* White Box Container for readability on patterned backgrounds */
.white-content-box {
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Specific adjustment for section titles */
.section-title-box {
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 50px;
    padding: 15px 40px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}