@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/garet');

:root {
    /* --- Brand Colors: Primary (Blue Palette) --- */
    --ch-primary: #2D5CA0;          /* Vibrant Blue - Primary brand color */
    --ch-dark: #304180;             /* Dark Navy Blue - Rich accents and stability */
    --ch-light-blue: #CFDEF8;       /* Pastel Blue - Soft, gentle calm */
    --ch-mobile-header: #304180;    /* Using the dark blue for structural stability */
    
    /* --- Brand Colors: Secondary (Accent Palette) --- */
    --cf-purple: #CFDEF8;           /* Replaced with Brand Light Blue */
    --cf-green: #aba8ff49;            /* Cool Pale Blue - Clean background alternative */
    --cf-yellow: #EBFDFF;           /* Warm Playful Yellow - Joy and hope */
    --cf-pink: #a6c7ff;              /* Vibrant Red - Energy (Used sparingly) */
    
    /* --- Text & UI Colors --- */
    --cf-text-dark: #1a1a1a;         /* Primary dark blue for readable text */
    --cf-text-muted: rgba(26, 26, 26, 0.7); /* Muted shade of brand dark blue */
    
    /* --- Partner & Specific Section Colors --- */
    --cf-sp-bg-color: #EBFDFF;      /* Pale cool blue shade */
    --cf-sp-text-color: #304180;    /* Dark navy for high contrast */
    --cf-sp-border-color: #2D5CA0;  /* Vibrant blue border */
    
    /* --- Parallax & Stat Colors --- */
    --cf-px-yellow: #B07E09;        /* Dark Gold - Regal tone for stats */
    --cf-px-text-light: #EBFDFF;    /* Pale blue for text on dark backgrounds */
    
    /* --- Testimonial Section --- */
    --cf-testi-bg: #ffffff;
    --cf-testi-badge-bg: #CFDEF8;   /* Light blue badge */
    --cf-testi-text-dark: #1a1a1a;  /* Navy text */
    --cf-testi-text-muted: rgba(26, 26, 26, 0.7);
    --cf-testi-border: #CFDEF8;     /* Light blue border */
    
    /* --- News Section --- */
    --cf-news-bg: #cfdef8;          /* Lightest blue background */
    --cf-news-badge-bg: #FFE497;    /* Soft light yellow badge */
    --cf-news-text-dark: #1a1a1a;   /* Navy dark text */
    --cf-news-text-muted: rgba(26, 26, 26, 0.7);
    --cf-news-border: #CFDEF8;      /* Pastel blue border */
    
    /* --- Typography (Retained as per previous instructions) --- */
    --font-heading: 'League Spartan', sans-serif;
    --font-body: 'Garet', sans-serif;
}

        body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, .ch-brand-logo, .ch-column-title {
    font-family: var(--font-heading);
}

a { 
    text-decoration: none; 
    font-family: var(--font-body);
}
        a { text-decoration: none; }
/* Custom smooth slide for the mobile menu */
.offcanvas-end.ch-mobile-menu {
    /* 0.5s duration with a 'decelerate' curve for a smoother feel */
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
    border-left: none; /* Removes the harsh border if present */
    box-shadow: -5px 0 25px rgba(0,0,0,0.1); /* Adds a soft shadow to depth */
}

/* Ensure the backdrop also fades in smoothly to match */
.offcanvas-backdrop.show {
    opacity: 0.5 !important;
    transition: opacity 0.5s ease;
}
        /* --- Top Bar --- */
        .ch-topbar { background-color: #CFDEF8; font-size: 0.85rem; font-weight: 500; }
        .ch-topbar-link { color: var(--ch-primary); font-weight: 500; }

        /* --- Navbar Base --- */
        .ch-navbar {
            position: absolute; top: 0px; width: 100%; z-index: 1040; padding-top: 15px;
        }
        .ch-nav-link {
            color: rgba(255, 255, 255, 0.9) !important; font-weight: 500; font-size: 0.95rem; margin: 0 12px; transition: 0.2s;
        }
        .ch-nav-link:hover { color: white !important; }
        .ch-nav-link i { font-size: 0.65rem; margin-left: 4px; vertical-align: middle; }
        
        .ch-cart-icon { color: white; font-size: 1.3rem; position: relative; margin-right: 25px; }
        .ch-cart-badge {
            position: absolute; top: -5px; right: -10px; background: white; color: black; font-size: 0.65rem; padding: 2px 6px; border-radius: 50px; font-weight: bold;
        }
        .ch-btn-white {
            background:  #2D5CA0; border: 1px solid  #2D5CA0; color: white; border-radius: 50px; padding: 10px 24px; font-weight: 500; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s;
        }
        .ch-btn-white:hover { background: #f0f0f0; color:  #2D5CA0; border: 1px solid  #2D5CA0;     }

        /* --- Desktop Dropdowns (Hover functionality) --- */
        @media (min-width: 992px) {
            .ch-dropdown-hover:hover > .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; }
            .ch-navbar-container { position: relative; } /* For mega menu absolute positioning */
        }
        .dropdown-menu {
            border: none; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 12px; display: block; opacity: 0; visibility: hidden; transition: all 0.2s ease-in-out; margin-top: 15px;
        }

        /* 1. Simple Dropdown (Home) */
        .ch-simple-dropdown { min-width: 160px; }
        .ch-simple-dropdown .dropdown-item {
            padding: 8px 16px; font-size: 0.95rem; color: #555; border-radius: 6px; font-weight: 500;
        }
        .ch-simple-dropdown .dropdown-item:hover { background-color: #f8f9fa; color: #111; }
        .ch-simple-dropdown .dropdown-item.active-link { color: #5a7461; background: transparent; } /* Specific color from screenshot */

        /* 2. Mega Menu (Pages) */
        .ch-mega-menu {
            width: 850px; max-width: 95vw; left: 50% !important; transform: translateX(-50%) !important; padding: 24px;
        }
        .ch-mega-title { font-weight: 700; color: #111; margin-bottom: 20px; font-size: 1.1rem; }
        .ch-mega-link { color: #444; font-size: 0.95rem; margin-bottom: 14px; display: block; transition: 0.2s; }
        .ch-mega-link:hover { color: var(--ch-primary); padding-left: 4px; }
        .ch-mega-img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; }
        
        /* Banner inside Mega Menu & Mobile */
        .ch-promo-banner { background-color: var(--ch-light-blue); border-radius: 12px; padding: 24px; margin-top: 24px; }
        .ch-promo-badge { background: white; color: #111; font-size: 0.8rem; font-weight: 500; padding: 6px 12px; border-radius: 50px; display: inline-block; margin-bottom: 12px; }
        .ch-promo-text { font-size: 1rem; font-weight: 500; color: #111; line-height: 1.4; margin: 0; }
        .ch-promo-subtext { font-size: 0.9rem; color: #444; margin-bottom: 16px; }
        .ch-btn-dark { background: black; color: white; border-radius: 50px; padding: 10px 24px; font-weight: 500; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }
        .ch-btn-dark:hover { background: #333; color: white; }

        /* --- Mobile Offcanvas Menu --- */
        .ch-mobile-menu { width: 380px !important; max-width: 100vw; border-left: none; }
        .ch-mobile-header { background-color: var(--ch-mobile-header); padding: 20px 24px; }
        .ch-mobile-header .btn-close { filter: invert(1) grayscale(100%) brightness(200%); opacity: 1; font-size: 1.1rem; }
        .ch-mobile-body { padding: 0; }

        /* Mobile Accordion Overrides */
        .ch-accordion .accordion-item { border: none; border-bottom: 1px solid #f0f0f0; border-radius: 0; }
        .ch-accordion .accordion-button {
            padding: 20px 24px; font-weight: 600; color: #111; background: transparent; box-shadow: none; font-size: 1.05rem;
        }
        /* Custom + and - icons */
        .ch-accordion .accordion-button::after { display: none; } /* Hide default SVG */
        .ch-accordion .accordion-button::before {
            content: '+'; float: right; font-size: 1.5rem; font-weight: 400; color: #111; line-height: 1; position: absolute; right: 24px;
        }
        .ch-accordion .accordion-button:not(.collapsed)::before { content: '-'; }
        
        /* Mobile Dropdown Links */
        .ch-accordion .accordion-body { padding: 0 24px 20px 24px; }
        .ch-mobile-sublink { color: #333; display: block; padding: 10px 0; font-size: 0.95rem; }
        .ch-mobile-sublink.active-link { color: #5a7461; }
        
        /* Mobile Single Links (No Dropdown) */
        .ch-mobile-single-link {
            display: block; padding: 20px 24px; font-weight: 700; color: #111; font-size: 1.05rem; border-bottom: 1px solid #f0f0f0;
            font-family: var(--font-heading);
        }
        .navbar-brand img{
            width: 200px
        }

        /* Mobile Footer area */
        .ch-mobile-footer { padding: 24px; text-align: center; }
        .ch-social-circle {
            width: 36px; height: 36px; background: #f4f4f4; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #111; margin: 0 6px; font-size: 0.9rem; transition: 0.3s;
        }
        .ch-social-circle:hover { background: #e0e0e0; }
        .ch-copyright { font-size: 0.85rem; color: #666; margin-top: 10px; }

        /* --- Hero Section Background --- */
        .ch-hero-section {
            background-size: cover; min-height: 100vh; position: relative; display: flex; align-items: center; padding-top: 80px;
        }
        .ch-hero-title { font-size: 4rem; font-weight: 600; color: white; line-height: 1.1; margin-bottom: 1.5rem; font-family: var(--font-heading);}
        .ch-hero-subtitle { color: #f0f0f0; font-size: 1.1rem; line-height: 1.6; max-width: 90%; margin-bottom: 2.5rem; }

        /* --- Responsive Tweaks --- */
        @media (max-width: 991px) {
            .ch-hero-title { font-size: 2.5rem; line-height: 1; }
            .ch-navbar { top: 0; position: absolute; padding: 15px 0; }
            .ch-hero-subtitle{
                font-size: 0.9rem;
                line-height: 1.4;
            }
               .ch-hero-section {
        padding-top: 200px;
        min-height: auto;
        padding-bottom: 80px;
    }
     .navbar-brand img{
            width: 150px
        }

        }
        @media (min-width: 992px) {
    /* 1. Prevent the container box from trapping flyouts */
    .ch-simple-dropdown {
        overflow: visible !important;
    }

    /* 2. Setup the reference alignment box */
    .dropdown-submenu {
        position: relative;
    }

    /* 3. Build styling defaults without using Bootstrap class collisions */
    .ch-nested-dropdown {
        display: block;
        position: absolute;
        top: -12px; /* Aligns smoothly with the margin adjustments of your theme box */
        left: 100%;
        min-width: 180px;
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 12px;
        list-style: none;
        margin: 0;
        
        /* Mirroring your parent menu hidden properties */
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease-in-out;
    }

    /* 4. Trigger state visibility changes on link selection */
    .dropdown-submenu:hover > .ch-nested-dropdown {
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 992px) {
    /* 1. Force the level-2 box to allow elements to fly out to the right */
    .ch-nested-dropdown {
        overflow: visible !important;
    }

    /* 2. Style and lock the level-3 Flyout to the right of Field Team */
    .dropdown-deep-submenu {
        position: relative !important;
    }

    .ch-deep-nested-dropdown {
        display: block;
        position: absolute !important;
        top: -12px; /* Pulls it up to align beautifully with the Field Team item */
        left: 100% !important; /* Pushes it completely to the right side */
        min-width: 160px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 12px;
        list-style: none; /* Removes the black bullet squares seen in image_c431e9.png */
        margin: 0;
        
        /* Initial hidden state */
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease-in-out;
    }

    /* 3. Reveal the level-3 dropdown cleanly on hover */
    .dropdown-deep-submenu:hover > .ch-deep-nested-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
    }
}
/* ==========================================================
   MOBILE NESTED ACCORDION STYLES
   ========================================================== */
@media (max-width: 991px) {
    /* Indentation and formatting for nested structures */
    .ch-mobile-nested-wrapper {
        width: 100%;
        display: block;
    }
    
    /* Clean up the arrow transition engine */
    .ch-arrow-toggle {
        font-size: 0.75rem;
        transition: transform 0.2s ease-in-out;
    }

    /* Rotate the arrow dynamically when the parent is expanded */
    .ch-mobile-sublink:not(.collapsed) .ch-arrow-toggle {
        transform: rotate(180deg);
    }
    
    /* Ensure child wrapper links don't inherit layout breaking items */
    .ch-mobile-nested-wrapper .collapse {
        list-style: none !important;
        padding-left: 15px !important;
    }
}
/* --- Mobile UI Rotations --- */
.ch-mobile-nested-wrapper [data-bs-toggle="collapse"] i {
    transition: transform 0.2s ease;
}
.ch-mobile-nested-wrapper [data-bs-toggle="collapse"]:not(.collapsed) i {
    transform: rotate(180deg);
}
.ch-sector-text{
     
    font-size: 20px;
    font-weight: 600;
}

        .ch-about-section {
            background-color: #ffffff;
            padding: 70px 0;
            overflow: hidden;
        }

        /* --- Layered Images (Left Side) --- */
        .ch-layered-images {
            position: relative;
            padding-bottom: 40px; /* Space for the overlapping image */
        }
        .ch-img-main {
            width: 85%;
            border-radius: 20px;
            object-fit: cover;
            aspect-ratio: 4/5;
        }
        .ch-img-overlap {
            /* width: 55%; */
            /* position: absolute; */
            /* bottom: 0; */
            right: 0;
            border-radius: 16px;
            border: 8px solid #ffffff;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            object-fit: cover;
            aspect-ratio: 1/1;
        }

        /* --- Text Content (Right Side) --- */
        .ch-about-badge {
            color: #111111;
            background-color: #CFDEF8; /* Light purple tint from design */
            padding: 8px 18px;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            border-radius: 50px;
            margin-bottom: 24px;
        }
        .ch-badge-dot {
            color: #111111;
            font-size: 0.4rem;
            margin-right: 8px;
        }
        
        .ch-about-headline {
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.15;
               color: #304180;
            margin-bottom: 24px;
        }
        
        .ch-about-paragraph {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #666666;
            margin-bottom: 32px;
        }

        /* --- List Items --- */
        .ch-about-list {
            margin-bottom: 32px;
            padding: 0;
            list-style: none;
        }
        .ch-about-list li {
            font-size: 1.1rem;
            font-weight: 500;
            color: #111111;
            padding: 20px 0;
            border-bottom: 1px solid #eaeaea;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .ch-about-list li:first-child {
            border-top: 1px solid #eaeaea;
        }
        .ch-about-list li i {
            color: #111111;
            transition: transform 0.3s ease;
        }
        .ch-about-list li:hover {
            padding-left: 10px;
        }
        .ch-about-list li:hover i {
            transform: translateX(5px);
        }

        /* --- Buttons --- */
        .ch-btn-purple {
            background-color: #CFDEF8;
            color: #111111;
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 50px;
            padding: 12px 28px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.3s;
        }
        .ch-btn-purple:hover {
            background-color: #d6d6f5;
            color: #111111;
        }

       
        /* --- Responsive Breakpoints --- */
        @media (max-width: 991px) {
            .ch-about-headline { font-size: 2rem; }
            .ch-stat-number { font-size: 3rem; justify-content: center; }
            .ch-stat-plus { font-size: 1.5rem; }
            .ch-stat-item { border-right: none; margin-bottom: 40px; text-align: center; padding: 0; }
            .ch-stat-item:last-child { margin-bottom: 0; }
            .ch-layered-images { margin-bottom: 0px; }
            .ch-img-main { width: 100%; }
            .ch-img-overlap { width: 65%; }
            .new-column { width: auto!important; }
        }

        /* --- Left Column: Thin Bordered List --- */
        .ch-exact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            max-width: 420px; /* Constrain width to match design */
        }

        .ch-exact-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0; /* Lots of breathing room */
            border-bottom: 1px solid #dcdcdc; /* Exact light gray line */
            font-size: 1.35rem; /* ~22px */
            font-weight: 500;
            color: #000000;
        }

        .ch-exact-list li .arrow {
            font-weight: 300;
            font-size: 1.4rem;
            color: #000000;
            line-height: 1;
        }

        /* --- Right Column: Massive 25+ Block --- */
        .ch-exp-block {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
        }

        .ch-massive-number-wrapper {
            position: relative;
            display: inline-block;
            line-height: 0.8; /* Crops extra space top and bottom */
            margin-bottom: 16px;
        }

        .ch-massive-number {
            font-size: 180px; /* Huge font */
            font-weight: 700;
            color: #000000;
            margin: 0;
        }

        .ch-circle-badge {
            position: absolute;
            top: 25px; /* Pushed down the side of the 5 */
            right: -35px; /* Pushed out past the edge */
            width: 54px;
            height: 54px;
            background-color: #f2f5ce; /* Exact pale yellow */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 300;
            color: #000000;
        }

        .ch-exp-label {
            font-size: 0.85rem; /* ~14px */
            font-weight: 700;
            text-transform: uppercase;
            color: #000000;
            margin: 0;
            text-align: center;
        }

        /* --- Responsive rules --- */
        @media (max-width: 991px) {
            .ch-exact-list {
                max-width: 100%;
                margin-bottom: 60px;
            }
            .ch-massive-number {
                font-size: 140px;
            }
            .ch-circle-badge {
                width: 45px;
                height: 45px;
                font-size: 24px;
                right: -25px;
                top: 20px;
            }
        }

        .ch-stats-wrapper {
                padding: 40px 0;
    border-radius: 12px;
    margin-top: 40px;
    background: #2D5CA0;
        }

        .ch-stat-box {
            padding: 10px 30px;
            border-right: 1px solid #dcdcdc; /* Exact light gray divider */
            text-align: center;
        }

        /* Remove left padding from the very first item to align it with container edge */

        /* Remove the right border and padding from the last item */
        .ch-stat-box.last-item {
            border-right: none;
            padding-right: 0;
        }

        .ch-stat-num {
            font-size: 3.8rem; /* Large font size matching the design */
            font-weight: 500; /* Medium weight, not too bold */
            color: #fff;
            line-height: 1;
            margin-bottom: 10px;
        }

        .ch-stat-text {
            font-size: 1.1rem;
            color: #eee; /* Medium-dark gray */
            margin: 0;
            font-weight: 400;
        }

        /* --- Responsive Behavior --- */
        @media (max-width: 991px) {
            /* On tablets, switch to a 2x2 grid */
            .ch-stat-box {
                padding: 30px 15px;
                border-right: none; /* Remove vertical borders on mobile */
                text-align: center; /* Center text on smaller screens */
                width: 160px;
            }
            .ch-stat-text {
    font-size: 14px;
            }
            .uwy.userway_p1 .userway_buttons_wrapper {
    bottom: 70px!important;
    right: auto;
    top: auto !important;
    left: calc(100vw - 21px);
    transform: translate(-100%);
}

            .ch-stat-num {
    font-size: 3rem;
            }
        }

        .resource-section {
            padding: 70px 0;
            background-color: #fdfaf9;
        }

        /* --- THE MAGIC: Staggered Row --- */
        .staggered-row {
            display: flex;
            /* This perfectly centers the short 2nd card vertically against the tall 1st card */
            align-items: center; 
            gap: 1.5rem;
        }

        .resource-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 1. The White Box (Info Pill) */
.info-pill {
    position: relative;
    background-color: #FFFFFF; /* Initial white background */
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease; /* Smooth text color change */
    display: flex;
    align-items: center;
    border-radius: 12px; /* Matching your image style */
    padding: 15px;
}

/* 2. The Blue Layer (Hidden in center) */
.info-pill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2D5CA0; /* Your primary blue */
    z-index: -1;
    
    /* Start at 0 width in the center */
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease-in-out;
}

/* 3. The Hover Trigger */
.resource-col:hover .info-pill::before {
    transform: scaleX(1); /* Expands to left and right */
}

/* 4. Icon/Text Contrast adjustment */
.resource-col:hover .info-pill {
    color: #FFFFFF; /* Makes text white when background turns blue */
}


        .resource-col:hover .pill-text {
            color:  #fff;
        }

        /* --- Image Sizing --- */
        .resource-img {
            width: 100%;
            object-fit: cover;
            border-radius: 1.5rem; /* Big, smooth rounded corners */
        }

        /* 1st Card Layout (Tall) */
        .img-tall {
            aspect-ratio: 3 / 4;
        }

        /* 2nd Card Layout (Short) */
        .img-short {
            aspect-ratio: 1 / 1; 
        }

        /* --- The White Text Pills Below Images --- */
        .info-pill {
            background: #ffffff;
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            width: 90%; /* Slightly narrower than the image above it */
            margin-top: 1rem; /* The gap between the image and the pill */
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }

        .icon-box {
            width: 40px;
            height: 40px;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .pill-text {
            font-size: 0.95rem;
            font-weight: 500;
            color: #111;
            margin: 0;
            line-height: 1.2;
        }

        /* Exact pill icon colors from your screenshot */
        .icon-blue { background-color: #eaf5ff; color: #3b82f6; }
        .icon-green { background-color: #f0fdf4; color: #65a30d; }
        .icon-purple { background-color: #faf5ff; color: #a855f7; }
        .icon-mint { background-color: #ecfdf5; color: #10b981; }

        /* Responsive stacking */
        @media (max-width: 991px) {
            .staggered-row { flex-wrap: wrap; }
            .resource-col { flex: 0 0 calc(50% - 0.75rem); }
        }
        @media (max-width: 767px) {
            .resource-col { flex: 0 0 100%; margin-bottom: 2rem; }
            .staggered-row { align-items: flex-start; } /* Reset centering on mobile */
        }

        :root {
            
        }


        .cf-section {
            padding: 70px 0;
        }

        .cf-title {
            font-size: 2.5rem;
            font-weight: 600;
            color:#304180;
            line-height: 1.2;
            margin-bottom: 3.5rem;
        }

        /* The flex column ensures the cards space out evenly */
        .cf-card-col {
            display: flex;
            flex-direction: column;
            gap: 1.5rem; /* Gap between top and bottom cards */
        }

        /* Card Layout */
        .cf-card {
            border-radius: 1.5rem;
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1; /* Allows cards to stretch equally */
            border: none;
        }

        .cf-bg-purple { background-color: var(--cf-purple); }
        .cf-bg-green { background-color: var(--cf-green); }
        .cf-bg-yellow { background-color: var(--cf-yellow); }
        .cf-bg-pink { background-color: var(--cf-pink); }

        .cf-icon-box {
            width: 52px;
            height: 52px;
            background-color: #ffffff;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: var(--cf-text-dark);
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        }

        .cf-card-title {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--cf-text-dark);
            margin-bottom: 0.75rem;
        }

        .cf-card-text {
            font-size: 0.95rem;
            color: var(--cf-text-muted);
            line-height: 1.6;
            margin-bottom: 2rem;
            flex-grow: 1; /* Pushes the 'Learn more' link to the bottom */
        }

        .cf-card-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--cf-text-dark);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: opacity 0.2s ease;
        }

        .cf-card-link:hover {
            opacity: 0.7;
        }

        /* Middle Image Layout */
        .cf-image-wrapper {
            height: 100%;
            border-radius: 1.5rem;
            overflow: hidden;
        }

        .cf-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .cf-title {
                font-size: 2rem;
            }
            .cf-image-wrapper {
                height: 400px; /* Fixes height when columns stack on mobile */
                margin: 1.5rem 0;
            }
        }

        /* --- Unique Class Scoping --- */

        .cf-news-section {
            background-color: var(--cf-news-bg);
            padding: 70px 0;
        }

        /* Header Styles */
        .cf-news-header {
            text-align: center;
         
            margin-bottom: 4rem;
        }

        .cf-news-badge {
            background-color: var(--cf-news-badge-bg);
            color: var(--cf-news-text-dark);
            padding: 6px 16px;
            border-radius: 50rem;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 1.5rem;
        }

        .cf-news-badge .dot {
            width: 6px;
            height: 6px;
            background-color: var(--cf-news-text-dark);
            border-radius: 50%;
            display: inline-block;
        }

        .cf-news-title {
            font-size: 2.5rem;
            font-weight: 600;
               color: #304180;
            line-height: 1.2;
        }

        /* Card Styles */
        .cf-news-card {
            background-color: #ffffff;
            border-radius: 1.25rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            transition: transform 0.3s ease;
        }

        .cf-news-card:hover {
            transform: translateY(-5px);
        }

        .cf-news-img-wrapper {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .cf-news-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cf-news-body {
            padding: 1rem 1.75rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .cf-news-meta {
            font-size: 0.85rem;
            color: var(--cf-news-text-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .cf-news-meta i {
            font-size: 1rem;
        }

        .cf-news-card-title {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--cf-news-text-dark);
            line-height: 1.4;
            /* margin-bottom: 1.5rem; */
        }
        a:hover .cf-news-card-title{
            color:#002d5b;
        }

        .cf-news-divider {
            border: 0;
            border-top: 1px solid var(--cf-news-border);
            margin: auto 0 1.25rem 0; /* 'auto' pushes everything below it to the bottom */
            opacity: 1;
        }

        .cf-news-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cf-news-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .cf-news-author img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }

        .cf-news-author-name a{
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--cf-news-text-dark);
        }

        .cf-news-arrow {
            color: var(--cf-news-text-dark);
            font-size: 1.2rem;
            text-decoration: none;
            transition: transform 0.2s ease;
        }
        
        .cf-news-card:hover .cf-news-arrow {
            transform: translateX(4px);
        }

        /* Swiper Fixes */
        .swiper-slide {
            height: auto; /* Ensures cards stretch to equal height */
        }

        @media (max-width: 767.98px) {
            .cf-news-title {
                font-size: 2rem;
            }
        }

       

        .cf-testi-section {
            background-color: var(--cf-testi-bg);
            padding: 70px 0;
            overflow: hidden; /* Prevent swiper bleed from breaking layout */
        }

        /* Header Styles */
        .cf-testi-header {
            margin-bottom: 3.5rem;
        }

        .cf-testi-badge {
            background-color: var(--cf-testi-badge-bg);
            color: var(--cf-testi-text-dark);
            padding: 6px 16px;
            border-radius: 50rem;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 1.5rem;
        }

        .cf-testi-badge .dot {
            width: 6px;
            height: 6px;
            background-color: var(--cf-testi-text-dark);
            border-radius: 50%;
            display: inline-block;
        }

        .cf-testi-title {
            font-size: 2.75rem;
            font-weight: 500;
            color: var(--cf-testi-text-dark);
            line-height: 1.2;
            max-width: 600px;
        }

        /* Card Styles */
        .cf-testi-card {
            background-color: #ffffff;
            border: 1px solid var(--cf-testi-border);
            border-radius: 1.25rem;
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
            transition: box-shadow 0.3s ease;
        }

        .cf-testi-card:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
        }

        .cf-testi-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.75rem;
        }

        .cf-testi-text {
            font-size: 0.95rem;
            color: var(--cf-testi-text-muted);
            line-height: 1.7;
            flex-grow: 1; /* Pushes signature to the bottom */
            margin-bottom: 2.5rem;
        }

        /* Signature & Footer Styles */
        .cf-testi-footer {
            margin-top: auto;
        }

        .cf-testi-signature {
            font-family: 'Great Vibes', cursive;
            font-size: 1.75rem;
            color: var(--cf-testi-text-dark);
            line-height: 1;
            margin-bottom: 0.25rem;
            opacity: 0.8;
        }

        .cf-testi-role {
            font-size: 0.85rem;
            color: var(--cf-testi-text-muted);
            font-weight: 500;
            margin: 0;
        }

        /* Swiper Overrides */
        .swiper-slide {
            height: auto; /* Ensures flex cards stretch to equal height */
        }
        
        .cf-testi-swiper {
            overflow: visible; /* Allows next slides to peek outside the container */
            padding-bottom: 2rem; /* Give shadow room */
        }

        @media (max-width: 767.98px) {
            .cf-testi-title {
                font-size: 2rem;
            }
            .cf-testi-card {
                padding: 2rem 1.5rem;
            }
        }

        /* --- Parallax Section Wrapper --- */
        .cf-parallax-section {
            position: relative;
            padding: 70px 0;
            /* The image used for the background */
            background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            /* THIS IS THE MAGIC PARALLAX PROPERTY */
            background-attachment: fixed; 
            background-repeat: no-repeat;
            color: #ffffff;
        }

        /* Dark overlay to make text readable */
        .cf-parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(17, 17, 17, 0.75); /* Dark semi-transparent overlay */
            z-index: 1;
        }

        /* Make sure content sits above the overlay */
        .cf-parallax-content {
            position: relative;
            z-index: 2;
        }

        /* --- Left Column Styles --- */
        .cf-parallax-badge {
            background-color: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 50rem;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(4px);
        }

        .cf-parallax-badge .dot {
            width: 6px;
            height: 6px;
            background-color: #ffffff;
            border-radius: 50%;
            display: inline-block;
        }

        .cf-parallax-title {
            font-size: 3rem;
            font-weight: 500;
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .cf-parallax-text {
            font-size: 1.1rem;
            color: var(--cf-px-text-light);
            line-height: 1.6;
            margin-bottom: 2.5rem;
            /* max-width: 90%; */
        }

        .cf-parallax-btn {
            background-color: #ffffff;
            color: #111111;
            padding: 14px 28px;
            border-radius: 50rem;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .cf-parallax-btn i {
            font-size: 1.25rem;
            transition: transform 0.2s ease;
        }

        .cf-parallax-btn:hover {
            background-color: #f1f1f1;
            color: #111111;
        }

        .cf-parallax-btn:hover i {
            transform: translateX(4px);
        }

        /* --- Right Column (Stats) Styles --- */
        .cf-parallax-stat-item {
            margin-bottom: 1rem;
        }

        .cf-parallax-stat-num {
            font-size: 3.5rem;
            font-weight: 500;
            color: var(--cf-px-yellow);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .cf-parallax-stat-desc {
            font-size: 1rem;
            color: var(--cf-px-text-light);
            font-weight: 400;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 991.98px) {
            .cf-parallax-section {
                padding: 70px 0;
                /* On some mobile devices, fixed attachment causes issues, so we disable it for smooth scrolling */
                background-attachment: scroll; 
            }
            .cf-parallax-title {
                font-size: 2.5rem;
            }
            .cf-parallax-text {
                max-width: 100%;
            }
            .cf-parallax-stat-num {
                font-size: 3rem;
            }
        }

       

        .cf-sp-section {
  padding: 70px 0;
  text-align: center;
  background-color: #ffffff;
}

.cf-sp-title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #081933; /* --title-color */
  margin-bottom: 2.5rem;
}

.cf-sp-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* The Partner Card */
.cf-sp-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 3px solid #e3efff;
  border-radius: 8px;
  padding: 30px 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  max-width: 100%;
  transition: border-color 0.3s ease;
}

.cf-sp-card:hover {
  border-color: #f8b71e; /* --theme-color2 */
}

.cf-sp-logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin-bottom: 15px; /* Space between logo and text */
}

/* Title of the Partner */
.cf-sp-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1A194E; /* --theme-color */
  margin: 0;
  padding-top: 5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 575.98px) {
  .cf-sp-section {
    padding: 50px 15px;
  }
  .cf-sp-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  .cf-sp-card {
    padding: 20px 30px;
    width: 100%;
  }
  .cf-sp-logo {
    max-width: 150px;
  }
  .cf-sp-name {
    font-size: 1rem;
  }
}
        /* Base Styles */
.ch-footer {
    background-color: #2D5CA0; /* Dark background as seen in image */
    color: #ffffff;
    padding: 70px 0 10px 0;
    /* font-family: 'Inter', sans-serif; Clean sans-serif */
}

.ch-brand-logo {
    font-size: 5rem;
    font-weight: 500;
    margin: 0;
}

/* Social Icons */
.ch-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #e7e7e7;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    margin-right: 8px;
    font-size: 14px;
    transition: 0.3s;
}.custom-info .ch-contact-item {
    display: flex;
    align-items: flex-start; /* Aligns icon with the first line of text */
    margin-bottom: 15px;
}

.custom-info .ch-contact-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Shape & Size */
    min-width: 35px;
    max-width: 35px;
    height: 35px;
    border: 1px solid #e7e7e7;
    border-radius: 50%;
    
    /* Icon Styling */
    color: #fff;
    font-size: 14px;
    margin-right: 15px; /* Space between icon and text */
    flex-shrink: 0;     /* Prevents circle from squishing */
}

/* Adjusting the text to align vertically with the circle center */
.custom-info .ch-text {
    margin: 0;
    line-height: 1.5;
    padding-top: 5px; /* Fine-tunes alignment with the icon */
    color: #e7e7e7;
}

.ch-column-title {
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.ch-social-icon:hover {
    background: #fff;
    color: #000;
}

/* Newsletter Input styling */
.ch-input-group {
    position: relative;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.ch-input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    padding: 5px 0;
    outline: none;
}

.ch-submit-btn {
    position: absolute;
    right: 0;
    bottom: 5px;
    background: #d1f1d1; /* Mint green from the image */
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Typography & Lists */
.ch-column-title {
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.ch-link-list {
    list-style: none;
    padding: 0;
}

.ch-link-list li {
    margin-bottom: 12px;
}

.ch-link-list a, .ch-footer-link {
    color: #e7e7e7;
    text-decoration: none;
    transition: 0.2s;
}

.ch-link-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.ch-text {
    color: #e7e7e7;
    line-height: 1.6;
}

.ch-divider {
    border-color: #e7e7e7;
    opacity: 1;
}

.ch-copyright {
    font-size: 0.85rem;
    color: #e7e7e7;
}
.ch-copyright a{
 color: #fff;
}

.border-secondary
 {
    --bs-border-opacity: 1;
    border-color: rgb(204 204 204 / 48%) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ch-brand-logo {
        font-size: 3rem;
    }
    .ch-social-wrapper {
        text-align: left;
        margin-top: 20px;
    }
}

#nxl-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px; /* Slightly larger for better clickability */
  height: 50px;
  display: flex; /* Using flex to center the icon perfectly */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  border: none;
  outline: none;
  background-color: #304180;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  opacity: 0; /* Use opacity + visibility for smoother JS transitions */
  visibility: hidden;
}

#nxl-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#nxl-back-to-top:hover {
  background-color: #B07E09;
  color: #EBFDFF;
  transform: translateY(-5px);
}

.breadcrumb-banner{
    min-height: 500px;
}

.breadcrumb-banner .ch-hero-title{
    padding-top: 200px;
}
@media (max-width: 1399px) {
    .ch-nav-link{
            font-size: 14px !important;
    margin: 0 8px !important;
    }

    .navbar-brand img {
    width: 170px !important;
}
.ch-hero-title{
    font-size: 3rem !important;
}
}
/* Mobile Responsiveness */
@media (max-width: 576px) {
  #nxl-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px; /* Slightly smaller on mobile to save screen real estate */
    height: 45px;
  }
}

/* Section Typography */
.np-section-heading {
    font-size: 40px;
    font-weight: 600;
    color: #304180;
    line-height: 1.2;
}

.np-main-tag {
    background-color: #f7f9e1;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* Card Styling */
.np-cause-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    height: 100%;
    transition: transform 0.3s ease;
}

.np-cause-card:hover {
    transform: translateY(-5px);
}

.np-img-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 230px;
}

.np-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category Badges */
.np-cat-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.badge-food { background-color: #f7f9e1; }
.badge-edu { background-color: #e1f5f9; }
.badge-health { background-color: #f0effc; }

/* Text Content */
.np-card-content {
    padding: 20px 10px 10px 10px;
}
.np-card-content a:hover .np-card-title {
    color: #304180;
}

.np-card-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #000;
}

.np-card-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Stats Row - Perfect Alignment */
.np-stats-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
    margin-top: auto;
}

.np-stat-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.np-label {
    font-size: 12px;
    color: #999999;
    font-weight: 500;
    text-transform: capitalize;
}

.np-val {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-top: 4px;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .np-section-heading { font-size: 30px; }
    .quote-content{
        padding: 20px !important;
    }
}

.partners-section {
    padding: 70px 0;
}

/* Typography Improvements */
.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
    color: #304180;
    margin-bottom: 1.5rem;
}

.section-title span {
    color: #333;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Button Styling */
.btn-custom {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* Partner Logo Cards */
.partner-card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-img {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    /* Keeps the aesthetic clean like your image */
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.partner-card:hover .partner-img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.partner-tagline {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .partners-section {
        text-align: center;
        padding: 60px 0;
    }
    .section-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .ch-copyright{
        padding: 0 10px;
    }
}

/* Vertical Line Styling */
.divider-line {
    width: 2px;
    height: 200px; /* Adjust this to match your text height */
    background-color: #c4c4c4; /* Solid black to match your font */
}
.impact-section-v3{
    padding: 70px 0;
    background-color: #f9f9f9;
}
 .badge-process {
    background: #f1f4d8;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.main-heading {
    font-size: 42px;
    font-weight: 500;
    margin: 25px 0 50px;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Nav Title & Line (Inside Slide) */
.nav-title {
    font-weight: 800;
    font-size: 16px;
    white-space: nowrap;
}

.nav-line {
    flex-grow: 1;
    height: 1px;
    background: #e0e0e0;
    margin-left: 20px;
    margin-right: 120px; /* Leaves space for the fixed arrows */
}

/* Fixed Arrows (Outside Slide) */
.fixed-nav-controls {
    position: absolute;
    right: 15px;
    top: 0; /* Adjust based on your text height */
    z-index: 100;
    display: flex;
    gap: 10px;
}

.btn-prev-fix, .btn-next-fix {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-next-fix {
    background: #000;
    border-color: #000;
}

/* The Pink Card */
.pink-impact-card {
    background: var(--cf-news-bg);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-content p { color: #555; font-size: 15px; line-height: 1.5; margin: 0; }
.btn-discover {
    background: #dee2f3;
    padding: 10px 22px;
    border-radius: 40px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}
.card-thumb img { width: 150px; height: 180px; object-fit: cover; border-radius: 20px; }
.hero-img-box img { width: 100%; height: 480px; object-fit: cover; border-radius: 40px; }

@media (max-width: 991px) {
    .fixed-nav-controls { position: relative; top: 0; right: 0; margin-bottom: 20px; }
    .nav-line { margin-right: 0; }
    .hero-img-box img { height: 400px; margin-top: 30px; }
}

/* Card Layout - Exact Match to Screenshot */
.profile-card-wrapper {
  position: relative;
  padding-bottom: 40px; 
  text-align: center;
  cursor: pointer;
}

.profile-card-img {
  height: 400px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.profile-info-tag {
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  background: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* Frosted effect */
  -webkit-backdrop-filter: blur(10px);
  padding: 22px 10px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-name {
  font-weight: 600;
  font-size: 1.3rem;
  color: #1e272e;
  margin-bottom: 0;
}

.profile-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #7f8c8d;
  margin: 0;
}

/* Popup/Modal Styling */
.custom-popup {
  border-radius: 20px;
  border: none;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.form-control:focus {
  box-shadow: none;
  border-color: #000;
}

.btn-dark {
  border-radius: 8px;
  padding: 12px;
  font-weight: 500;
}

.modal.show .modal-dialog {
    transform: none;
    max-width: 700px;
}
.team-section{
    padding: 70px 0;
}

/* Image Styling in Popup */
.modal-profile-img-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%; /* Makes it circular */
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.modal-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the photo isn't stretched */
}

/* Close Button Styling */
.btn-close:focus {
  box-shadow: none; /* Removes the blue outline */
}

/* Optional: Description Text Styling */
.modal-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  text-align: justify;
}

/* Ensuring the popup looks consistent */
.custom-popup {
  border-radius: 20px !important;
  overflow: hidden;
}

.testimonial-section {
    background-color: #f5f3f0; /* Light off-white background */
    padding: 70px 0;
}

.testimonial-container {
    position: relative;
    /* Only top and left borders */
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: none;
    border-bottom: none; /* We will use a pseudo-element instead */
    padding: 0;
    background: transparent;
}

/* Creating the half border-bottom */
.testimonial-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%; /* Adjust this percentage to your exact need */
    height: 1px;
    background-color: #ccc;
}

/* Optional: Adding the grey dot at the end of the half border */
.testimonial-container::before {
    content: "";
    position: absolute;
    bottom: -5px; /* Centers the dot on the line */
    left: 50%;    /* Matches the width of the line above */
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    transform: translateX(-50%);
}

/* The blue header bar */
.blue-header-bar {
    background-color: #004a7c;
    color: white;
    padding: 10px 40px;
    margin-top: 20px;
}

.blue-header-bar h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Quote styles */
.quote-content {
        padding: 40px 40px 40px 40px;
    position: relative;
}

.quote-text {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.author-name {
    display: block;
    font-size: 1.1rem;
    color: #666;
}

/* Container positioning */
.testimonial-hexagon-container {
       /* position: absolute;
    right: -95px; */
    /* top: 0; */
    /* transform: translateY(-86%); */
    /* width: 485px; */
    height: 450px;
    z-index: 10;
}

/* The Main Hexagon (with the blue border) */
.hexagon-main-body {
    position: relative;
    width: 100%;
    height: 100%; /* Main Border Color */
    /* clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); */
    padding: 18px; /* This creates the consistent blue border around the image */
    display: flex;
}
.hexagon-main-body img{
    border-radius: 12px;
}

/* The actual image tag */
.hexagon-image-tag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* We clip the image itself so it fits the border perfectly */
    /* clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); */
    background-color: #fff; /* White background if image fails to load */
}

/* Responsive fix */
@media (max-width: 991px) {
    .testimonial-hexagon-container {
               position: relative;
        right: 0;
        margin: 0px auto;
        transform: none;
        width: 350px;
        height: 300px;
    }
}
/* Decorative top lines */

/* Icons (Using simple CSS shapes for quote marks) */


.quote-icon-start { left: 40px; top: 30px; }
.quote-icon-end { right: 40px; bottom: 30px; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .hexagon-wrapper {
        position: relative;
        right: 0;
        margin: 20px auto;
        transform: none;
        top: 0;
    }
    .testimonial-container {
        border: none;
    }
}

/* Project Facts Card */
.project-facts-card {
    background: #fff;
    border-top: 4px solid #e2a08c; /* Subtle coral accent from the UI */
    position: sticky;
    top: 2rem;
}

.project-facts-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    border-width: 0 40px 40px 0;
    border-style: solid;
    border-color: #fcfcfc #fcfcfc #e9e9e9 #e9e9e9; /* Dog-ear fold effect */
}

.custom-list li {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-left: 15px;
    position: relative;
}

.custom-list li::before {
    content: "•";
    color: #d97d60;
    position: absolute;
    left: 0;
}

/* Before/After Comparison Simulation */
.comparison-container {
    height: 500px;
    width: 100%;
    overflow: hidden;
    background: #eee;
}

.image-before, .image-after {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.image-before {
    width: 50%; /* Initial split */
    border-right: 2px solid #fff;
    z-index: 2;
}

/* Labels & Slider UI */
.label-wrapper {
    position: absolute;
    top: 50%;
    right: -75px; /* Center over the split */
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.label {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    color: white;
    font-size: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.slider-button {
    background: #ff6b4a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid white;
}

/* Responsiveness */
@media (max-width: 991px) {
    .comparison-container {
        height: 350px;
    }
    h1 {
        font-size: 2rem;
    }
}

/* Banner Container */
.gn-banner-wrapper {
    width: 100%;
}

.gn-clickable-slide {
    height: 80vh; /* Full Viewport Height */
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: filter 0.2s ease;
}

/* The Image Overlay */
.gn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Darker at bottom, slight tint at top */
   background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    transition: background 0.4s ease;
    z-index: 1;
}
/* Hover effect to hint at clickability */
.gn-clickable-slide:hover {
    filter: brightness(0.9);
}

/* Modal Styling */
.gn-gallery-modal .modal-xl {
    max-width: 1000px !important; /* Keeps image large but within screen */
}
.gn-popup-img {
    max-height: 90vh; /* Prevents vertical scrolling */
    object-fit: contain; /* Keeps image aspect ratio perfect */
    background-color: rgba(0, 0, 0, 0.884);
}

/* Custom Close Button Position */
.btn-close-white {
    margin-bottom: 10px !important;
    opacity: 0.8;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .gn-clickable-slide {
        height: 60vh;
    }
    .gn-popup-img {
        max-height: 50vh;
    }
}

.heritage-section {
    padding: 70px 0;
        margin-top: -150px;
    z-index: 99;
    position: relative;
}

.project-bg{
        background: aliceblue;
    padding: 40px;
    border-radius: 12px;
}

strong{
    font-family: (var(--bs-font-sans-serif));
}


/* Container and General Text */
.alegis-law-section {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.alegis-hero-img {
    border-radius: 20px; /* Matching the rounded corners in the image */
    width: 100%;
    object-fit: cover;
}

.alegis-law-section p{
    color: #555;
    font-size: 1.05rem;
    padding: 20px 0;
}

.alegis-law-section h2, .alegis-law-section h3, .alegis-law-section h4 {
    font-weight: 500;
    font-size: 1.8rem;
    color: #111;
    margin: 20px 0;
}

/* The Gold Quote Box */
.alegis-law-section blockquote {
    background-color: #2D5CA0; /* Warm Gold */
    border-radius: 15px;
    padding: 40px 40px 40px 90px;
    position: relative;
     font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0;
    margin: 0;
    z-index: 1;
    color: #ffffff;
}

.alegis-law-section blockquote::before {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.767);
    position: absolute;
    top: 0px;
    content:"“";
    left: 40px;
    font-family: serif;
}

/* Custom Bullets */
.alegis-law-section ul li {
        /* margin-bottom: 10px; */
    line-height: 25px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.alegis-law-section ul li::before {
    background: #222;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-right: 15px;
    flex-shrink: 0;
    content: "➔";
}

/* Responsiveness */
@media (max-width: 768px) {
    blockquote {
        padding: 30px 20px;
        font-size: 1.2rem;
    }
    .alegis-heading {
        font-size: 1.5rem;
    }
}

/* Typography for the Main Title */
.alegis-main-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
}

/* Meta Information Styles */
.alegis-meta-wrapper {
    color: #333;
    font-size: 1rem;
}

.alegis-meta-text {
    font-weight: 400;
}

/* Icon Styling (Matches the thin-line style in image) */
.alegis-icon {
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
}

/* Responsive adjustments for mobile title */
@media (max-width: 768px) {
    .alegis-main-title {
        font-size: 1.8rem;
    }
    .alegis-meta-wrapper {
        gap: 1.5rem !important;
    }
}

/* Sidebar Container */
.alegis-sidebar {
    background: #fff;
    border: 1px solid #dee2e6 !important;
    border-radius: 12px;
}

/* Sidebar Title and Underline */
.alegis-sidebar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #002d5b; /* Deep blue from image */
    margin-bottom: 5px;
}

.alegis-title-separator {
    width: 100%;
    height: 2px;
    background-color: #e9ecef; /* Light gray line */
    position: relative;
}

.alegis-title-separator::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50px; /* Length of the dark accent */
    height: 3px;
    background-color: #1a1a3a; /* Dark accent color */
}

/* Post Items */
.alegis-post-thumb img {
    min-width: 100px;
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #eee;
}

.alegis-post-title {
    font-size: 0.95rem;
    line-height: 1.4;
}

.alegis-post-title a {
    text-decoration: none;
    color: #002d5b;
    transition: color 0.3s;
}

.alegis-post-title a:hover {
    text-decoration: underline; /* Hover color matches your quote box */
}

.alegis-post-date {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
}

.alegis-post-date i {
    color: #002d5b; /* Blue icon to match the text */
    font-size: 0.8rem;
}
.alegis-gallery-section{
    padding : 70px 0;
}
.alegis-gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.alegis-gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.alegis-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 45, 91, 0.7); /* Matching your sidebar blue */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.alegis-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.alegis-gallery-overlay i, .alegis-video-overlay i {
    color: #fff;
    font-size: 2.5rem;
    background: #002d5b; /* Matching your gold accent color */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


.alegis-gallery-item:hover .alegis-gallery-overlay {
    opacity: 1;
}

/* Section Background & Fonts */
.elect-contact-section {
    background-color: #ffffff;
    color: #1a1a3a;
    padding: 70px 0;
}

/* Typography */
.elect-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
}

.elect-description {
    font-size: 1rem;
    color: #555e70;
    max-width: 450px;
    line-height: 1.6;
}

/* Icons */
.elect-icon {
    color: #2D5CA0; /* Matching the red button */
    font-size: 1.2rem;
}

/* Form Card */
.elect-form-card {
    background-color: #f9f6f2; /* Soft off-white/beige background */
    padding: 50px;
    border-radius: 30px;
}

/* Inputs */
.elect-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
    color: #333;
}

.elect-input::placeholder {
    color: #8c92a0;
}

.elect-input:focus {
    box-shadow: none;
    border-color: #2D5CA0;
}

/* Button */
.elect-submit-btn {
    background-color: #2D5CA0;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 12px;
    border: none;
    transition: background 0.3s ease;
}

.elect-submit-btn:hover {
    background-color: #fff;
    color: #2D5CA0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .elect-title {
        font-size: 2.5rem;
    }
    .elect-form-card {
        padding: 30px;
    }
}

.elect-map-container {
    border-radius: 20px; /* Matching the rounded style of your layout */
    overflow: hidden;    /* Clips the iframe corners to the border-radius */
    border: 5px solid #f9f6f2; /* Optional: matches the beige form background */
}

/* On mobile, we switch to a taller ratio so the map is easier to use */
@media (max-width: 768px) {
    .elect-map-container .ratio {
        --bs-aspect-ratio: 75%; /* Becomes a 4:3 ratio on small screens */
    }
    #acc-toggle{
bottom: 75px !important;
    right: 20px !important;
    }
}

/* Utility class to hide the menu */
    .acc-hidden { display: none !important; }

    /* Button styles inside the menu */
    .acc-action-btn {
        display: block; 
        width: 100%; 
        padding: 10px; 
        margin-bottom: 8px; 
        border: 1px solid #ddd; 
        background: #f8f9fa; 
        color: #333; 
        border-radius: 8px; 
        font-size: 14px; 
        font-weight: 500; 
        cursor: pointer;
        text-align: center;
    }
    .acc-action-btn:hover { background: #e9ecef; }
    #acc-toggle{
            position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 9999999;
    background: #002d5b;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    }
    #acc-menu{
            position: fixed;
    bottom: 145px;
    right: 30px;
    z-index: 9999999;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    width: 240px;
    border: 2px solid #002d5b;
    font-family: sans-serif;
    }

    .donation-area {
        padding: 70px 0;
    }

    /* Minimalist Vertical Info List */
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color:#222;
    font-weight: 500;
}

.info-value {
    font-size: 0.95rem;
    color: #333;
    text-align: right;
}

/* Subtle QR Container */
.qr-container {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.4s ease;
}
.qr-container img{
    width: 400px;
}
.qr-container:hover {
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
    border-color: #e0e0e0;
}
.donation-detail{
    margin-left: 40px;
}
/* Mobile Adjustments */
@media (max-width: 991px) {
    .info-row {
        flex-direction: column;
        text-align: left;
    }
    .info-value {
        text-align: left;
        margin-top: 5px;
        font-weight: 600;
    }
    .qr-container {
        margin-top: 2rem;
    }
}

/* Ensure the container is ready for absolute positioning */
.alegis-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none; /* Removes underline from title link */
}

/* Styling the title card */
.alegis-video-title {
    width: 100%;
    padding: 15px;
    background: #cfdef8;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    z-index: 3; /* Keeps it above the image but usually below the play icon */
}

/* Hover effect: Subtle lift */
.alegis-gallery-item:hover .alegis-video-title {
    color: #002d5b
}
.charity-card-section{
    padding: 70px 0;
}
/* Card Container */
.charity-card {
    background-color: #e2e4f3; /* The soft lavender background */
    border-radius: 30px;
    overflow: hidden;
}

/* Heading Styling */
.card-title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #000;
    max-width: 90%;
}

/* Description Styling */
.card-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Button Styling */
.btn-discover {
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.btn-discover:hover {
    background-color: #222;
    color: #fff;
    transform: translateY(-2px);
}

.btn-discover i {
    margin-left: 8px;
    font-size: 0.9rem;
}
/* Styling for Chairman Info Section */
.chairman-info {
    border-left: 3px solid #002d5b; /* Subtle accent line */
    padding-left: 15px;
}

.chairman-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #002d5b;
    margin-bottom: 2px;
}

.chairman-designation {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image Container with Rounded Corners */
.card-image-wrapper {
    display: inline-block;
}

.card-image-wrapper img {
    display: block;
    width: auto;
    height: 500px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .card-title {
        font-size: 1.8rem;
        max-width: 100%;
    }
    .card-description {
        max-width: 100%;
    }
    .charity-card {
        margin: 0 10px;
    }
}

/* =========================================
   ONLINEKHABAR FOOTER BAR CUSTOM CSS
   ========================================= */
.ok-footer-bar {
    background-color: #e8eff7; /* Light blue-gray tint from image */
    padding: 20px 0;
    border-top: 1px solid #d1d9e2;
}

.ok-footer-col {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vertical Dividers */
.ok-border-left {
    border-left: 1px solid #b8c3d0;
}

/* Logo Styling */
.ok-footer-logo {
    max-height: 45px;
    width: auto;
}

/* Info Blocks */
.ok-info-block {
    text-align: center;
}

.ok-label {
    display: block;
    font-size: 11px;
    color: #666;
    margin-bottom: 2px;
}

.ok-value {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.ok-email {
    font-size: 12px;
    color: #444;
    text-decoration: none;
}

/* Social & Copyright */
.ok-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 5px;
}

.ok-social-links a {
    color: #555;
    font-size: 16px;
    transition: color 0.3s;
}

.ok-social-links a:hover {
    color: #cd1d24; /* OK Red */
}

.ok-copyright-text {
    font-size: 10px;
    color: #777;
    margin: 0;
    white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .ok-border-left {
        border-left: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .ok-footer-col {
        padding: 15px 0;
    }
}.ts-section-wrapper {
    padding: 80px 0;
    background-color: #f4f6f4;
}


/* Testimonial Section */

.rt-testimonial-section {
    padding: 70px 0;
}


/* Headings */
.rt-main-heading {
    color: #032B24; /* Exact dark forest green shade from original design */
    font-weight: 700;
    font-size: 52px;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.rt-sub-heading {
    color: #55605A; /* Deep slate muted text */
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    font-weight: 400;
}

/* Card Wrapper Layout */
.rt-card-container {
    position: relative;
    margin-bottom: 24px;
    padding: 0 10px;
}

/* Header Container */
.rt-user-header {
    display: flex;
    justify-content: space-between; /* Pushes details to the left, stars to the right */
    align-items: center;            /* Perfectly centers everything vertically */
    width: 100%;
    margin-bottom: 15px;            /* Spacing between header and the text bubble */
}

/* Left Side Wrapper (Avatar + Text) */
.rt-user-details {
    display: flex;
    align-items: center;
    gap: 12px;                      /* Clean modern spacing between avatar picture and text */
}
.rt-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
}

.rt-user-name {
    font-size: 24px;
    font-weight: 600;
    color: #032B24;
    margin: 0 0 4px 0;
}

.rt-user-role {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #55605A;
}

/* White Bubble Card Container */
.rt-bubble-card {
    /* background: #e7e7e7; */
    border-radius: 20px; /* Matching the smooth card corners */
    padding: 30px;
    position: relative;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.01);
}


/* The Pointing Triangle pointing directly up to the avatar center */
.rt-bubble-card.cf-bg-green::before {
    content: "";
    position: absolute;
    top: -10px; /* Pulls triangle perfectly upward */
    left: 40px; /* Keeps pointer centered with avatar */
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--cf-green); /* Matches card body color */
}

/* The Pointing Triangle pointing directly up to the avatar center */
.rt-bubble-card.cf-bg-yellow::before {
    content: "";
    position: absolute;
    top: -10px; /* Pulls triangle perfectly upward */
    left: 40px; /* Keeps pointer centered with avatar */
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--cf-yellow); /* Matches card body color */
}

/* The Pointing Triangle pointing directly up to the avatar center */
.rt-bubble-card.cf-bg-purple::before {
    content: "";
    position: absolute;
    top: -10px; /* Pulls triangle perfectly upward */
    left: 40px; /* Keeps pointer centered with avatar */
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--cf-purple); /* Matches card body color */
}
/* The Pointing Triangle pointing directly up to the avatar center */
.rt-bubble-card.cf-bg-pink::before {
    content: "";
    position: absolute;
    top: -10px; /* Pulls triangle perfectly upward */
    left: 40px; /* Keeps pointer centered with avatar */
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--cf-pink); /* Matches card body color */
}


/* Testimonial Text Structure */
.rt-testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin:0;
    /* CHANGED & ADDED: Height and Scroll configurations */
    min-height: 100px;       /* Forces a consistent layout baseline */
    max-height: 100px;       /* Cuts off text exactly at the min-height limit */
    overflow-y: auto;        /* Adds a scrollbar ONLY when the text is too long */
    padding-right: 8px;      /* Adds breathing room so text doesn't touch the scrollbar */
}

/* Custom Scrollbar Styles for the Testimonial Text Box */
/* 1. Chrome, Safari, Edge, and Opera */
.rt-testimonial-text::-webkit-scrollbar {
    width: 4px; /* Ultra-thin profile */
}

/* Keeps the track transparent so there are no distracting background blocks */
.rt-testimonial-text::-webkit-scrollbar-track {
    background: transparent; 
}

/* Smooth, rounded modern pill handle */
.rt-testimonial-text::-webkit-scrollbar-thumb {
    background: rgba(0, 77, 61, 0.2); /* Semi-transparent version of your brand green */
    border-radius: 100px;
    transition: background 0.2s ease;
}

/* Snaps to focus and becomes darker when the user interacts with it */
.rt-testimonial-text::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 77, 61, 0.6); 
}

/* 2. Firefox Fallback */
.rt-testimonial-text {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 77, 61, 0.2) transparent;
}
/* Stars Alignment directly on bottom right */
.rt-stars {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
}

.rt-stars i {
    color: #f1af1f; /* Solid original primary deep green */
    font-size: 15px;
}

/* Responsive Scaling fixes */
@media (max-width: 991px) {
    .rt-main-heading {
        font-size: 38px;
    }
    .rt-bubble-card {
        padding: 30px;
    }
    .rt-testimonial-text {
        min-height: auto;
        margin-bottom: 25px;
    }
}

/* Force the swiper container to hide the overflowing cards */
.cf-testi-swiper {
    overflow: hidden !important;
    position: relative;
    width: 100%;
}

/* Force the wrapper to align items horizontally */
.cf-testi-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
}

/* Force the cards to match Swiper's calculated widths */
.cf-testi-swiper .swiper-slide {
    flex-shrink: 0 !important;
    width: 100%; /* Default fallback */
}

/* Add padding to the container so cards don't sit on top of the bullets */
.cf-testi-swiper {
    padding-bottom: 40px !important; 
}

/* Style the active bullet color (matches your brand) */
.cf-testi-swiper .swiper-pagination-bullet-active {
    background: #004d3d !important; /* Deep dark green */
    width: 24px; /* Optional: gives a nice modern pill shape to the active bullet */
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Style the inactive bullets */
.cf-testi-swiper .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom:30px!important;
}

/*  */
/* Header Styling */
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header h2 {
            font-size: 2.25rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 12px;
            letter-spacing: -0.025em;
        }

        .section-header p {
            font-size: 1.125rem;
            color: #6b7280;
        }

        /* 3-Column Responsive Grid */
        .updates-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        @media (min-width: 1024px) {
            .updates-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Column Component Styling */
        .column-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            padding-bottom: 8px;
            border-b: 2px solid #e5e7eb;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Social Feed Iframe Wrapper Wrapper */
        .feed-container {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid #f3f4f6;
            padding: 8px;
            height: 500px; /* Fixed standard height for alignment */
            overflow: hidden;
        }

        .feed-iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 6px;
        }
        /* The Card Container */
        .feed-card-container {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            padding: 24px;
            width: 100%; 
            height: 500px; 
            /* Flex layout centering the content horizontally */
            display: flex;
            justify-content: center; 
            align-items: center;
        }

        /* Inner container restricted to FB's max supported limits */
        .fb-iframe-wrapper {
            width: 100%;
            max-width: 500px; /* Aligns with FB's maximum layout width */
            height: 100%;
        }

        .feed-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /*  */
:root {
            --hub-bg: #dce6f6;
            --hub-card-radius: 12px;
            --btn-green: #2D5CA0;
        }

        /* Filter bar matching image 2 layout */
        .hub-filter-bar {
            border-radius: 6px;
            padding: 12px 20px;
            margin-bottom: 25px;
        }

        .hub-section-title {
            font-size: 1.4rem;
            font-weight: 500;
            color: #1e293b;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* --- Content Cards --- */
        .hub-content-card {
            background: #ffffff;
            border-radius: var(--hub-card-radius);
            padding: 24px;
            height: 100%;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255,255,255,0.8);
            
            /* ADDED: Turns the card container into a flexbox layout */
            display: flex;
            flex-direction: column;
        }

        /* --- Publication Items Layout --- */
        .pub-item-row {
            display: flex;
            flex-direction: column-reverse; /* Matches your layout structure */
            gap: 15px;
        }

        @media (min-width: 768px) {
            .pub-item-row {
                flex-direction: row;
                align-items: flex-start;
            }
        }

        .pub-text-side {
            flex: 1;
            /* ADDED: Turns the text box into a flex column to handle internal alignment */
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .pub-image-side {
            width: 100%;
            /* max-width: 180px; */
            align-self: center;
        }

        @media (min-width: 768px) {
            .pub-image-side {
                align-self: flex-start;
            }
        }

        .pub-img {
            width: 100%;
            height: auto;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
            object-fit: cover;
        }

        .pub-title {
            font-size: 20px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 12px;
        }


        /* Buttons style matching image 2 */
        .btn-pub-action {
            color: var(--btn-green);
            border: 1.5px solid var(--btn-green);
            background: transparent;
            font-weight: 500;
            font-size: 0.85rem;
            padding: 8px 16px;
            width: 100%;
            border-radius: 4px;
            transition: all 0.2s;
            justify-content: center;
            text-align: center;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-pub-action:hover {
            background-color: var(--btn-green);
            color: #ffffff;
        }

        
        .sda-jobs-section {
    background-color: #ffffff;
    padding: 70px 0;
}

/* Card base matching the exact soft blue tint and corner profile */
.sda-job-card {
    background-color: #EBF4FC; 
    border-radius: 24px;
    padding: 35px 40px;
    height: 100%;
    border: 1px solid #cfe3ff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Subtle hover effect for interactive feedback */
.sda-job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(45, 92, 160, 0.06);
}

/* Badge 'Full Time' styling */
.sda-job-badge {
    color: #4A5E7A;
    background-color: transparent;
    border: 1px solid #99AABF;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

/* Location pin styling */
.sda-job-location {
    color: #384860;
    font-size: 0.9rem;
    font-weight: 500;
}
.sda-job-location i {
    color: #2E3E58; /* Deep color for the map pin icon */
}

/* Bold dark slate titles */
.sda-job-title {
    color: #1A2E4C;
    font-weight: 700;
    font-size: 1.65rem;
}

/* Clean line-height matching for description paragraph */
.sda-job-description {
    color: #2F425E;
    font-size: 0.98rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
}

/* The distinct deep royal blue action capsule button */
.sda-job-btn {
    background-color: #2d5ca0;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 11px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    transition: background-color 0.2s ease-in-out;
}

.sda-job-btn:hover {
    background-color: #00127C;
}

/* Make sure arrow aligns centered perfectly inside flex context */
.sda-job-btn i {
    font-size: 1rem;
    line-height: 1;
}

/* Responsive spacing optimizations for mobile viewports */
@media (max-width: 767px) {
    .sda-job-card {
        padding: 25px 25px;
    }
    .sda-job-title {
        font-size: 1.4rem;
    }
    .sda-job-description {
        max-width: 100%;
        font-size: 0.92rem;
    }
}

/* ==========================================================
   JOB DESCRIPTION DETAILS & SIDEBAR LAYOUT (sda-jd- prefixes)
   ========================================================== */

.sda-jd-section {
    background-color: #ffffff;
    padding: 70px 0;
}

/* --- Left Side Typography Rules --- */
.sda-jd-main-title {
    color: #1A2E4C;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.sda-jd-section-title {
    color: #1A2E4C;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.sda-jd-pillar-title {
    color: #1A2E4C;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.sda-jd-intro {
    color: #4A5E7A;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: justify;
}

/* --- Styled Bullet List UI --- */
.sda-jd-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sda-jd-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #2F425E;
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Exact small square list marker reproduction */
.sda-jd-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 5px;
    height: 5px;
    background-color: #1A2E4C;
    border-radius: 1px;
}

/* --- Sidebar Container Cards Layout --- */
.sda-jd-sidebar-wrapper {
    position: sticky;
    top: 30px; /* Keeps widget locked in place when users scroll text */
}

.sda-jd-side-card {
    background-color: #F7FAFE;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #cfe3ff;
}

.sda-jd-side-title {
    color: #1A2E4C;
    font-weight: 700;
    font-size: 1.05rem;
}

/* --- Interaction Filter Capsule Badges --- */
.sda-jd-filter-badge {
    color: #4A5E7A;
    background-color: #ffffff;
    border: 1px solid #D5E2F2;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.2s ease-in-out;
}

.sda-jd-filter-badge:hover, 
.sda-jd-filter-badge.sda-active {
    background-color: #ffffff;
    color: #1A2E4C;
    border-color: #1A2E4C;
    box-shadow: 0 4px 10px rgba(26, 46, 76, 0.05);
}

/* --- Core Blueprint Information Meta List --- */
.sda-jd-meta-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sda-jd-meta-list li {
    display: flex;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #EAEFF7;
    color: #2F425E;
    font-weight: 500;
    font-size: 0.95rem;
}

.sda-jd-meta-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sda-jd-meta-list i {
    color: #2d5ca0;
    font-size: 1.1rem;
}

/* --- Action Accent Button --- */
.sda-jd-action-btn {
    background-color: #2d5ca0;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border: none;
    transition: background-color 0.2s ease-in-out;
}

.sda-jd-action-btn:hover {
    background-color: #00127C;
}

/* --- Responsive Layout Optimization Tweak rules --- */
@media (max-width: 991px) {
    .sda-jd-main-title {
        font-size: 1.85rem;
    }
    .sda-jd-sidebar-wrapper {
        position: static;
        margin-top: 20px;
    }
    .sda-jd-side-card {
        padding: 24px;
    }
}


/* ==========================================================
   EXACT EVENTS CARDS GRID SYSTEM (sda-ev- prefixes)
   ========================================================== */

.sda-ev-section {
    background-color: #fff;
    padding: 70px 0;
}

/* Container frame styling with exact soft gray profile border and rounded corners */
.sda-ev-card {
    background-color: #F7FAFE;
    border-radius: 18px;
    border: 1px solid #cfe3ff;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sda-ev-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Enforces a structured thumbnail aspect ratio container */
.sda-ev-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.sda-ev-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 15px;
    border-radius: 24px; /* Inner rounding profile matching original image context */
}

/* Info metadata text and color tokens */
.sda-ev-meta-item {
    font-size: 0.88rem;
    color: #2d5ca0; /* Vivid clean emerald green icon details */
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.sda-ev-meta-item i {
    font-size: 1rem;
}

/* Card main context headings typography */
.sda-ev-title {
    color: #222222;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Emerald pill dynamic CTA action button */
.sda-ev-btn {
    background-color: #2d5ca0;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 6px 20px 6px 6px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    transition: background-color 0.2s ease-in-out;
}

.sda-ev-btn:hover {
    background-color: #008f4c;
}

/* Internal embedded circle containing the chevron shape */
.sda-ev-icon-circle {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    color: #2d5ca0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sda-ev-icon-circle i {
    font-size: 0.75rem;
    line-height: 1;
    -webkit-text-stroke: 0.5px; /* Matches line thickness weight */
}

/* Responsive formatting adjustments across tablet/mobile break points */
@media (max-width: 575px) {
    .sda-ev-img-wrapper {
        min-height: 220px;
    }
    .sda-ev-img {
        padding: 12px 12px 0 12px;
    }
    .sda-ev-title {
        font-size: 1.15rem;
    }
}

/* ==========================================================
   EVENT SINGLE DETAIL VIEW STYLES (sda-ed- prefixes)
   ========================================================== */

.sda-ed-section {
    background-color: #ffffff;
    padding: 70px 0;
}

/* --- Hero Frame Banner Container Layout --- */
.sda-ed-hero-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.sda-ed-hero-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* Dynamic overlay badge tracking exact image template setup */
.sda-ed-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #00a859;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
}

/* --- Content & Typography Configurations --- */
.sda-ed-content-block h2{
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.65rem;
    margin-bottom: 20px;
}

.sda-ed-content-block p {
    color: #555555;
    font-size: 0.96rem;
    line-height: 1.65;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 20px;
}


/* --- Styled Checkmark List Stack --- */
.sda-ed-content-block ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.sda-ed-content-block ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #333333;
    font-size: 0.94rem;
    font-weight: 500;
}

.sda-ed-content-block ul li:before{
    color: #1a1a1a;
    font-size: 1.1rem;
    content: "\2713"; /* Unicode checkmark character */
    font-weight: 500;
}

/* --- Sidebar Panels Formatting Layout Blocks --- */
.sda-ed-sidebar-sticky {
    position: sticky;
    top: 30px;
}

/* Metadata Parameters Panel Setup Box */
.sda-ed-sidebar-card {
    background-color: #F7FAFE;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #cfe3ff;
}

.sda-ed-meta-table tr {
    border-bottom: 1px dashed #e5e7eb;
}

.sda-ed-meta-table tr:last-child {
    border-bottom: none;
}

.sda-ed-meta-table td {
    padding: 14px 0;
    font-size: 0.86rem;
    vertical-align: middle;
}

.sda-ed-meta-icon {
    width: 32px;
    color: #666666;
    font-size: 1rem;
}

.sda-ed-meta-label {
    color: #666666;
    font-weight: 500;
    width: 120px;
}

.sda-ed-meta-value {
    color: #333333;
    font-weight: 500;
    text-align: right;
}

/* Deep Green Call-to-action Donation Widget Card Box */
.sda-ed-cta-card {
    background-color: #0f2d26; /* Dark slate green branding hue */
    border-radius: 12px;
    color: #ffffff;
}

.sda-ed-cta-title {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.2px;
}

.sda-ed-cta-desc {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Emerald green dynamic badge tracking button context link loop */
.sda-ed-cta-btn {
    background-color: #00a859;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 6px 22px 6px 6px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    transition: background-color 0.2s ease-in-out;
}

.sda-ed-cta-btn:hover {
    background-color: #008f4c;
}

.sda-ed-cta-icon-circle {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    color: #00a859;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sda-ed-cta-icon-circle i {
    font-size: 0.7rem;
    line-height: 1;
}

/* --- Responsive Adjustments Overriding Native Fluidity Grid Mechanics --- */
@media (max-width: 991px) {
    .sda-ed-sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
    .sda-ed-heading {
        font-size: 1.45rem;
    }
}
/* Backdrop overlay styling */
.custom-search-modal.modal {
    background-color: rgba(14, 43, 61, 0.4); /* Dark translucent tinted glass background */
    backdrop-filter: blur(5px);
}

/* Base modal positioning setup */
.custom-search-modal .modal-dialog {
    max-width: 100% !important;
    width: 100%;
}

/* Handles the hidden state pushing it completely offscreen above */
.custom-search-modal .modal-content {
    border: none;
    border-radius: 0;

    background-color: #2d5ca0; /* Dark theme matching your nav theme color */
    padding: 25px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Slides down smoothly into view when Bootstrap shows the element */
.custom-search-modal.show .modal-content {
    transform: translateY(0);
}

/* Layout alignment for the bar interior */
.search-box-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.modal-backdrop{
    z-index: 100; /* Places the backdrop just below the modal */
}

/* Custom Search Bar Formatting */
.search-input-group {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    transition: border-color 0.3s ease;
}

.search-input-group:focus-within {
    border-color: #ffffff; /* Bright highlights on typing focus */
}

.search-input-group .input-group-text {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    padding-left: 0;
}

.search-input-group .form-control {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 300;
    padding: 12px 15px;
    box-shadow: none !important;
}

.search-input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Sleek Minimal Close Button Styling */
.search-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Mobile responsive optimization */
@media (max-width: 768px) {
    .search-input-group .form-control {
        font-size: 1.1rem;
        padding: 8px 10px;
    }
    .search-input-group .input-group-text {
        font-size: 1.2rem;
    }
    .search-close-btn {
        font-size: 1.3rem;
    }
}
.menu-footer-widget-first-container ul,
.menu-footer-widget-seond-container ul {
    padding-left: 0 !important;
}
.ch-link-list li {
    list-style: none !important;

}


/* Minimalist 404 Section Style */
.brand404-section {
    background-color: #ffffff;
    min-height: 75vh;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Exact big 404 typography */
.brand404-section .brand404-number {
    font-size: clamp(6.5rem, 16vw, 13rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

/* Page Not Found text */
.brand404-section .brand404-title {
    font-size: clamp(2.5rem, 7vw, 5.2rem);
    font-weight: 400;
    color: #111111;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

/* Small detail sentence */
.brand404-section .brand404-text {
    font-size: 0.95rem;
    color: #6c757d;
    max-width: 580px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    padding-left: 15px;
    padding-right: 15px;
}

/* Dark pill button */
.brand404-section .brand404-btn {
    background-color: #1e252b;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.brand404-section .brand404-btn:hover {
    background-color: #0f1316;
    color: #ffffff;
}

.brand404-section .brand404-btn:active {
    transform: scale(0.98);
}
/* Base Parent Wrapper Style */
.brand-content-wrapper {
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
    padding: 3rem 1.5rem;
}

/* Headings Styling via Parent Class */
.brand-content-wrapper h1,
.brand-content-wrapper h2,
.brand-content-wrapper h3,
.brand-content-wrapper h4,
.brand-content-wrapper h5,
.brand-content-wrapper h6 {
    color: #111111;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* Individual Heading Adjustments */
.brand-content-wrapper h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; margin-top: 0; }
.brand-content-wrapper h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-bottom: 1px solid #f0f0f0; padding-bottom: 0.5rem; }
.brand-content-wrapper h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 600; }
.brand-content-wrapper h4 { font-size: 1.3rem; font-weight: 600; }
.brand-content-wrapper h5 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.brand-content-wrapper h6 { font-size: 0.9rem; color: #6c757d; text-transform: uppercase; letter-spacing: 1px; }

/* Paragraphs & Divider */
.brand-content-wrapper p {
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.brand-content-wrapper hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 3rem 0;
    opacity: 1;
}

/* Lists Styling via Parent Class */
.brand-content-wrapper ul,
.brand-content-wrapper ol {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    color: #2d3748;
}

.brand-content-wrapper ul li,
.brand-content-wrapper ol li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Unordered List specific token */
.brand-content-wrapper ul {
    list-style-type: square;
}

/* Nested lists logic */
.brand-content-wrapper ul ul,
.brand-content-wrapper ol ol {
    list-style-type: circle;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: #292929;
}
.sda-jd-block h1{
    color: #1A2E4C;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.sda-jd-block h2{
    color: #1A2E4C;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.sda-jd-block h3 {
    color: #1A2E4C;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.sda-jd-block p{
    color: #4A5E7A;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: justify;
}

/* --- Styled Bullet List UI --- */
.sda-jd-block ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.sda-jd-block ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #2F425E;
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Exact small square list marker reproduction */
.sda-jd-block ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 5px;
    height: 5px;
    background-color: #1A2E4C;
    border-radius: 1px;
}
.project-facts-card ul{
    padding-left: 0;
    list-style: none;
}

.project-facts-card ul li {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-left: 15px;
    position: relative;
}

.project-facts-card ul li::before {
    content: "•";
    color: #d97d60;
    position: absolute;
    font-size: 30px;
    left: 0;
        top: -17px;
}

/* Search results — grouped by type */
.search-type-section {
    margin-bottom: 3rem;
}

.search-type-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--cf-news-border);
}

.search-type-count {
    background-color: var(--cf-news-badge-bg);
    color: var(--cf-news-text-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 1px 7px;
    border-radius: 20px;
}
.custom-info .ch-text a{
    color: #e7e7e7;
    text-decoration : none;
}
.custom-info .ch-text a:hover{
   text-decoration: underline;
}
.elect-contact-info a span{
   color: #1a1a3a;
}
.elect-contact-info a:hover span{
color: #2D5CA0;
}