/* Intro / loading overlay */
:root {
    --intro-brand: #d10503;
    --intro-bg: #FAFAF7;
    --intro-duration: 3.2s;
    --intro-size: clamp(63px, 9vw, 112px);
}

#intro {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: var(--intro-bg);
    pointer-events: all;
    transition: opacity .55s ease, visibility 0s linear .55s;
}

#intro.intro--out {
    opacity: 0;
    visibility: hidden;
}

html.intro-on body {
    overflow: hidden;
}

#intro .stage {
    position: relative;
    width: var(--intro-size);
    aspect-ratio: 1 / 0.95;
    display: grid;
    place-items: center;
}

#intro svg {
    width: 100%;
    height: auto;
    display: block;
    transform-origin: 50% 50%;
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
    animation:
        intro-logo-reveal .55s .05s cubic-bezier(.2, .8, .2, 1) forwards,
        intro-logo-beat   1.1s .65s ease-in-out infinite;
    will-change: transform, clip-path, opacity;
}

#intro .bar {
    position: absolute;
    bottom: -18%;
    left: 50%;
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .07);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: intro-bar-in .35s .3s ease-out forwards;
}

#intro .bar::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--intro-brand);
    border-radius: inherit;
    animation: intro-bar-fill 1.1s .3s cubic-bezier(.65, 0, .35, 1) forwards;
}

@keyframes intro-logo-reveal {
    0%   { clip-path: circle(0%  at 50% 50%); opacity: 0; transform: scale(.92); }
    60%  { opacity: 1; }
    100% { clip-path: circle(150% at 50% 50%); opacity: 1; transform: scale(1); }
}

@keyframes intro-logo-beat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.055); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.035); }
    56%      { transform: scale(1); }
}

@keyframes intro-bar-in   { to { opacity: 1; } }
@keyframes intro-bar-fill { to { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
    #intro svg        { animation: intro-logo-reveal .6s ease-out forwards; }
    #intro .bar::after { animation-duration: 1.5s; }
}


/* Extracted from css.php */

    html, body {
        overflow-x: hidden;
    }
    html {
        overflow-y: auto;
        scrollbar-gutter: stable;
    }
    @supports not (scrollbar-gutter: stable) {
        html { overflow-y: scroll; }
    }

    :root {
        --theme-color: #d10503;
        --theme-color-dark: #b91410; /* Hover state */
        --theme-color-rgb: 209, 5, 3; /* For shadows/transparency */
        --bs-primary: #d10503;
        --bs-primary-rgb: 209, 5, 3;

        --bs-btn-active-color: var(--theme-color);
        --bs-btn-active-bg: var(--theme-color);
        --bs-btn-active-border-color: var(--theme-color);
        --bs-btn-hover-border-color: var(--theme-color);
        --bs-btn-bg: var(--theme-color);
        --bs-btn-border-color: var(--theme-color);
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #b91410;
        --bs-btn-focus-shadow-rgb: 49, 132, 253;
        --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        --bs-btn-disabled-color: #fff;
        --bs-btn-disabled-bg: var(--theme-color);
        --bs-btn-disabled-border-color: var(--theme-color);
    }

    /* 2. Override Primary Button */
    .btn-primary {
        --bs-btn-color: #fff;
        --bs-btn-bg: var(--theme-color);
        --bs-btn-border-color: var(--theme-color);

        /* Hover State */
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: var(--theme-color-dark);
        --bs-btn-hover-border-color: var(--theme-color-dark);

        /* Active/Pressed State */
        --bs-btn-active-color: #fff;
        --bs-btn-active-bg: #a3120e; /* Slightly darker than hover */
        --bs-btn-active-border-color: #a3120e;

        /* Disabled State */
        --bs-btn-disabled-color: #fff;
        --bs-btn-disabled-bg: var(--theme-color);
        --bs-btn-disabled-border-color: var(--theme-color);

        /* Focus Ring (Shadow) - Uses the RGB value for transparency */
        --bs-btn-focus-shadow-rgb: var(--theme-color-rgb);
    }

    /* 1. Base Button Overrides (Applies to ALL buttons) */
    .btn {
        /* Changes the default blue focus glow to your red */
        --bs-btn-focus-shadow-rgb: 209, 5, 3;

        /* Ensuring a smooth transition when colors change */
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    /* 2. Specific Primary Button Overrides */
    .btn-primary {
        /* Color Variables */
        --bs-btn-color: #ffffff;
        --bs-btn-bg: #d10503;
        --bs-btn-border-color: #d10503;

        /* Hover State */
        --bs-btn-hover-color: #ffffff;
        --bs-btn-hover-bg: #b91410;
        --bs-btn-hover-border-color: #b91410;

        /* Active (Clicked) State */
        --bs-btn-active-color: #ffffff;
        --bs-btn-active-bg: #a3120e;
        --bs-btn-active-border-color: #a3120e;
        --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

        /* Disabled State */
        --bs-btn-disabled-color: #ffffff;
        --bs-btn-disabled-bg: #d10503;
        --bs-btn-disabled-border-color: #d10503;
    }

    /* 3. Global Primary Overrides (Optional but recommended) */
    /* This ensures that items like pagination or active nav links also turn red */
    .page-item.active .page-link {
        background-color: #d10503 !important;
        border-color: #d10503 !important;
    }

    .form-check-input:checked {
        background-color: #d10503 !important;
        border-color: #d10503 !important;
    }

    /* 3. Global Primary Overrides (Links, Text, and Backgrounds) */
    .text-primary {
        color: var(--theme-color) !important;
    }

    .bg-primary {
        background-color: var(--theme-color) !important;
    }

    a {
        color: var(--theme-color);
    }

    a:hover {
        color: var(--theme-color-dark);
    }

    :not(.btn-check) + .btn:active {
        color: var(--bs-btn-active-color);
        background-color: var(--theme-color);
        border-color: var(--theme-color);
    }

    .btn:hover {
        color: white !important;
        background-color: var(--theme-color);
        border-color: var(--theme-color);
    }

    .btn.btn-link:hover {
        padding: 5px 10px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.5) !important;
    }

    .theme-text {
        color: var(--theme-color);
    }


    /* ===== Hero ===== */
    .hero-breadcumb {
        position: relative;
        width: 100%;
        height: 280px;
        /*background: url('*/
    <?php //=$breadcumb_image?> /*') no-repeat top center;*/
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .hero-breadcumb .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
    }

    /** mobile devices **/
    @media (max-width: 767.98px ) {
        .hero-breadcumb {
            height: 35vw;
        }

    }

    .hero-breadcumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-breadcumb .hero-text {
        text-transform: uppercase;
        position: relative;
        z-index: 1;
    }

    .hero-text h1 {
        color: #fff;
        font-size: 36px;
        font-weight: 700;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }

    /* --- Custom Styles for Process Steps --- */

    .process-steps {
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        /*padding: 0 5%;*/
    }

    .process-steps .step {
        /*flex: 1;*/
        position: relative;
        z-index: 2;
        padding-top: 90px; /* Space for the absolutely positioned circle */
    }

    /* Horizontal Line (Desktop/Large Screen) - Hidden by default */
    .process-steps::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 5%;
        right: 5%;
        height: 2px;
        background: #d10503;
        z-index: 1;
        display: none;
    }

    /* ---------------------------------------------------- */
    /* DESKTOP/LARGE SCREEN (min-width: 992px) - HORIZONTAL */
    /* ---------------------------------------------------- */
    @media (min-width: 992px) {
        /* Corresponds to Bootstrap's 'lg' breakpoint */
        .process-steps::before {
            display: block; /* Show the horizontal line */
        }

        .step {
            text-align: center; /* Center text on desktop */
            padding-left: 0;
            border-left: none; /* Ensure no vertical line */
            margin-left: 0;
        }

        .circle {
            left: 50%;
            transform: translateX(-50%);
        }
    }

    /* ---------------------------------------------------- */
    /* MOBILE/SMALL SCREEN (max-width: 991.98px) - VERTICAL */
    /* ---------------------------------------------------- */
    @media (max-width: 991.98px) {
        .process-steps {
            /*padding: 0;*/
        }

        /* Vertical line creation and content shift */
        .process-steps .step {
            /*width: 100%;*/
            text-align: left !important;
            padding-top: 15px;
            padding-left: 30px; /* Space for the vertical line/circle */
            padding-bottom: 30px;
            border-left: 2px solid #d10503; /* Add vertical line */
            /*margin-left: 40px; !* Push content to the right of the line *!*/
        }

        /* Remove the vertical line from the last step */
        .process-steps > .step:last-child {
            /*border-left: none;*/
        }

        /* Reposition the circle to the left, on the vertical line */
        .circle {
            left: 0;
            top: 25px;
            transform: translateX(-50%);
        }
    }

    .bg-orange-subtle {
        background-color: #f5ab62;
    }

    .nav-link {
        text-transform: uppercase;
    }

    /* 1. Ensure the sticky header works */
    .sticky-top {
        top: 0;
        z-index: 1030;
    }

    /* 2. Mobile Menu Dropdown Fix */
    @media (max-width: 991.98px) {
        .navbar-collapse {
            /* This makes it "drop down" overlay style */
            position: absolute;
            top: 100%; /* Places it exactly below the nav bar */
            left: 0;
            right: 0;
            background-color: white;
            padding: 20px;
            border-bottom: 1px solid #ddd;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }
    }

    /* 3. Prevent Logo Shifting */
    .navbar-brand {
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    /* If sticky-top still fails, use this instead */
    .main-header {
        position: fixed; /* Fixed is more reliable than sticky if parents have overflow issues */
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1050; /* Higher than other elements */
        background-color: white;
        border-bottom: 1px solid #eaeaea;
    }

    /* IMPORTANT: Since the header is now 'fixed', it doesn't take up space.
       You must add padding to the top of your <body> so the content isn't hidden behind the menu */
    body {
        padding-top: 85px; /* Adjust this to match your actual header height */
    }

    .wa-widget {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        align-items: center;
        z-index: 9999;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* The Speech Bubble */
    .wa-bubble {
        background-color: #f0f2f5;
        color: #1c1e21;
        padding: 12px 20px;
        border-radius: 10px;
        margin-right: 15px;
        font-size: 14px;
        line-height: 1.4;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        position: relative;
        /* Uncomment the line below if you want it hidden until hover */
        /* display: none; */
    }

    /* The little arrow on the bubble */
    .wa-bubble::after {
        content: "";
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 8px solid #f0f2f5;
    }

    /* The Green Icon Circle */
    .wa-icon-link {
        width: 60px;
        height: 60px;
        background-color: #25d366;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .wa-icon-link img {
        width: 35px;
        height: 35px;
    }

    .wa-icon-link:hover {
        transform: scale(1.1);
    }

    /* Hide bubble on very small mobile screens to prevent clutter */
    @media (max-width: 480px) {
        .wa-bubble {
            /*display: none;*/
        }
    }

    .card-img-top {
        max-width: 64px;
        /*border-radius: 50%;*/
        /*border: 2px solid var(--theme-color);*/
        /*padding: 16px;*/
    }

    .lucide {
        /* This creates the circle around the SVG itself */
        border: 1.5px solid currentColor;
        border-radius: 50%;
        padding: 6px; /* Space between icon and border */
        width: 36px; /* Total size */
        height: 36px; /* Total size */
        display: inline-block;
    }

    .hero-buttons .lucide {
        border: none;
        border-radius: 0;
    }

    .hero-buttons:hover .lucide {
        color: white;
    }

    .services-slider-wrapper .lucide {
        padding: 12px; /* Space between icon and border */
        width: 52px; /* Total size */
        height: 52px;
    }

    .testimonial-card.active .lucide {
        color: white;
    }

    .card-footer {
        background: none !important;
        border: none !important;
    }

    .card-footer .lucide {
        padding: 8px; /* Space between icon and border */
        width: 36px; /* Total size */
        height: 36px; /* Total size */
    }

    .social-icons .lucide {
        padding: 8px; /* Space between icon and border */
        width: 36px; /* Total size */
        height: 36px; /* Total size */
    }

    .social-icons .lucide:hover {
        color: black;
    }

    /** mobile devices **/
    @media (max-width: 767.98px ) {
        .logo img {
            height: 45px !important;
        }
    }

    /** tablet queries **/
    @media (min-width: 768px) and (max-width: 991.98px) {
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }


    /* ===== Floating chat widget (Viber + WhatsApp) =====
       Bottom-LEFT pill so it never collides with Contact page sticky CTA. */
    /* ===== Customer support widget (FAB + expanding panel) ===== */
    .cs-widget {
        position: fixed;
        right: 20px;
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        z-index: 1040;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 14px;
        font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
    }
    @media (max-width: 575.98px) {
        .cs-widget {
            right: 14px;
            bottom: calc(80px + env(safe-area-inset-bottom, 0px));
        }
    }

    /* --- Launcher FAB --- */
    .cs-launcher {
        position: relative;
        width: 60px; height: 60px;
        border-radius: 50%;
        border: 0;
        cursor: pointer;
        background: linear-gradient(135deg, #d10503 0%, #a30402 100%);
        color: #fff;
        box-shadow: 0 14px 30px rgba(209, 5, 3, 0.40), 0 4px 10px rgba(0,0,0,0.10);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .cs-launcher::after {
        content: "";
        position: absolute; inset: 0;
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(209, 5, 3, 0.45);
        animation: cs-pulse 2.4s ease-out infinite;
        pointer-events: none;
    }
    .cs-widget.is-open .cs-launcher::after { animation: none; }
    .cs-launcher:hover { transform: translateY(-2px) scale(1.04); }
    .cs-launcher-icon { display: inline-flex; }
    .cs-launcher-badge {
        position: absolute; top: -2px; right: -2px;
        min-width: 20px; height: 20px;
        padding: 0 4px;
        border-radius: 999px;
        background: #ffffff;
        color: #d10503;
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        border: 2px solid #d10503;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    @keyframes cs-pulse {
        0%   { box-shadow: 0 0 0 0 rgba(209, 5, 3, 0.45); }
        70%  { box-shadow: 0 0 0 18px rgba(209, 5, 3, 0); }
        100% { box-shadow: 0 0 0 0 rgba(209, 5, 3, 0); }
    }

    /* --- Panel --- */
    .cs-panel {
        width: 340px;
        max-width: calc(100vw - 28px);
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow:
            0 24px 60px rgba(15, 17, 21, 0.22),
            0 6px 14px rgba(15, 17, 21, 0.08);
        border: 1px solid rgba(15, 17, 21, 0.06);
        transform-origin: bottom right;
    }

    /* Panel header */
    .cs-panel-head {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 16px 18px;
        background: linear-gradient(135deg, #d10503 0%, #a30402 100%);
        color: #ffffff;
    }
    .cs-panel-head::after {
        /* subtle decorative shape */
        content: "";
        position: absolute;
        right: -30px; top: -30px;
        width: 120px; height: 120px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        pointer-events: none;
    }
    .cs-avatar {
        position: relative;
        width: 44px; height: 44px;
        border-radius: 50%;
        background: #fff;
        display: inline-flex;
        align-items: center; justify-content: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.18);
        flex-shrink: 0;
    }
    .cs-avatar img {
        width: 30px; height: 30px;
        object-fit: contain;
    }
    .cs-status-dot {
        position: absolute;
        right: -1px; bottom: -1px;
        width: 12px; height: 12px;
        background: #22c55e;
        border-radius: 50%;
        border: 2px solid #ffffff;
    }
    .cs-panel-meta { flex: 1; min-width: 0; line-height: 1.2; }
    .cs-panel-title {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.01em;
    }
    .cs-panel-sub {
        margin-top: 2px;
        font-size: 0.78rem;
        opacity: 0.92;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .cs-status-pulse {
        width: 7px; height: 7px;
        background: #22c55e;
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
        animation: cs-pulse-sm 1.6s infinite;
    }
    @keyframes cs-pulse-sm {
        0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
        70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
        100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
    }
    .cs-close {
        position: relative;
        width: 32px; height: 32px;
        border-radius: 50%;
        border: 0;
        background: rgba(255,255,255,0.18);
        color: #ffffff;
        display: inline-flex;
        align-items: center; justify-content: center;
        cursor: pointer;
        transition: background 0.18s ease;
    }
    .cs-close:hover { background: rgba(255,255,255,0.32); }

    /* Panel body */
    .cs-panel-body {
        padding: 16px;
        background: #f8f9fb;
    }
    .cs-greeting {
        margin: 4px 2px 14px;
        font-size: 0.95rem;
        line-height: 1.4;
        color: #2a2f3a;
    }
    .cs-greeting strong { color: #0f1115; font-weight: 700; }

    /* Channel rows */
    .cs-channel {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        background: #ffffff;
        border-radius: 14px;
        border: 1px solid #ececec;
        text-decoration: none;
        color: #1c1e21;
        margin-bottom: 8px;
        transition: transform 0.15s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }
    .cs-channel:last-child { margin-bottom: 0; }
    .cs-channel:hover {
        transform: translateY(-1px);
        border-color: #d10503;
        box-shadow: 0 8px 18px rgba(209, 5, 3, 0.10);
        color: #1c1e21;
    }
    .cs-channel-ico {
        width: 40px; height: 40px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center; justify-content: center;
        flex-shrink: 0;
    }
    .cs-channel-ico img { width: 22px; height: 22px; display: block; }
    .cs-bg-wa    { background: #25d366; color: #fff; }
    .cs-bg-viber { background: #7360f2; color: #fff; }
    .cs-bg-call  { background: #d10503; color: #fff; }
    .cs-channel-text {
        flex: 1; min-width: 0;
        display: flex; flex-direction: column; line-height: 1.25;
    }
    .cs-channel-name { font-weight: 700; font-size: 0.95rem; }
    .cs-channel-sub  { font-size: 0.78rem; color: #6b7280; margin-top: 2px; }
    .cs-channel-arr  { color: #9aa0a6; flex-shrink: 0; transition: transform 0.18s ease, color 0.18s ease; }
    .cs-channel:hover .cs-channel-arr { color: #d10503; transform: translateX(3px); }

    /* Panel footer */
    .cs-panel-foot {
        padding: 10px 16px 14px;
        text-align: center;
        font-size: 0.74rem;
        color: #6b7280;
        background: #f8f9fb;
        border-top: 1px solid #ececec;
        letter-spacing: 0.02em;
    }

    /* Pop transition */
    .cs-pop-enter-active { transition: transform 0.22s cubic-bezier(.2,.9,.3,1.2), opacity 0.18s ease; }
    .cs-pop-leave-active { transition: transform 0.16s ease, opacity 0.14s ease; }
    .cs-pop-enter-from   { transform: translateY(12px) scale(0.96); opacity: 0; }
    .cs-pop-leave-to     { transform: translateY(8px) scale(0.98);  opacity: 0; }

    /* Mobile sizing */
    @media (max-width: 575.98px) {
        .cs-panel { width: calc(100vw - 28px); border-radius: 18px; }
        .cs-launcher { width: 56px; height: 56px; }
    }

    @media (prefers-reduced-motion: reduce) {
        .cs-launcher::after, .cs-status-pulse { animation: none; }
        .cs-pop-enter-active, .cs-pop-leave-active { transition: opacity 0.15s ease; }
        .cs-pop-enter-from, .cs-pop-leave-to { transform: none; }
    }

    /* Legacy no-ops (cached markup safety) */
    .contact-widget, .icon-stack { display: none !important; }
    .contact-bubble, .close-bubble { display: none !important; }
    .fade-out {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s;
    }

    .blink-soft {
        animation: blinker 1.5s linear infinite;
    }

    @keyframes blinker {
        50% {
            opacity: 0;
        }
    }

    .footer-credit {
        color: #888; /* Slightly lighter than the main text */
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }

    .footer-credit:hover {
        color: #000; /* Darkens when hovered */
        text-decoration: underline;
    }

    .fs-7 {
        font-size: 0.9rem;
    }

    .logo-slider .swiper-slide img {
    }

    .logo-slider .swiper-slide img:hover {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .service-cards.swiper-wrapper .swiper-slide {
        height: auto !important;
    }

    /** mobile only changes final **/

    @media (max-width: 767.98px ) {
        .hero-text {
            margin-top: 0 !important;
        }

        .hero-text h1 {
            font-size: 36px !important;
        }

        .hero-image {
            margin-bottom: -1.2rem;
        }
    }

    @media (max-width: 574px) {
        .hero-text h1, 
        .hero h1.display-4 {
            font-size: 24px !important;
        }
    }

    @media (max-width: 767.98px ) {
        .footer-col, .footer-bottom {
            margin-top: 0 !important;
        }

        .partner_title {
            margin-bottom: 0 !important;
        }

        .tabs .tab {
            font-size: 0.9rem;
        }

        .footer-logo {
            margin-top: 1.2rem !important;
        }

        .logo-slider .swiper-slide {
            padding: 0 !important;
        }
    }

    .tabs .tab:hover .lucide {
        color: #fafafa;
    }


