/* ==========================================
   MindMingles - Hybrid Light & Dark Stylesheet
   Version 2.0 — Full Premium Build
   ========================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---- Design Tokens ---- */
:root {
    --primary: #eb5d07;
    --primary-dark: #eb5d07;
    --primary-rgb: 235, 93, 7;
    --teal-bg: #043038;
    --teal-bg-light: #043038;
    --accent-rgb: 247, 200, 18;
    --gradient-alt: linear-gradient(135deg, #043038, #eb5d07);
    --text-dark: #043038;
    --white: #fff;
    --border-light: rgba(0, 0, 0, 0.253);
    --border-teal: rgba(255, 255, 255, 0.07);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 16px 45px rgba(0, 0, 0, 0.12);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-card: 18px;
    --radius-btn: 50px;
    --mm-border: rgb(235 93 7 / 30%);
    --hdr-primary: #043038;
    --hdr-accent: #eb5d07;
    --hdr-accent2: rgba(235, 93, 7, 0.08);
    --hdr-text: #043038;
    --hdr-muted: #043038;
    --hdr-border: rgba(4, 48, 56, 0.08);
    --hdr-shadow: 0 16px 48px rgba(4, 48, 56, 0.13), 0 2px 8px rgba(0, 0, 0, 0.05);
    --hdr-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --hdr-dur: 0.22s;
    --hdr-radius: 14px;
}

/* ---- Base Reset ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: #eb5d07;
    border-radius: 4px;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.color {
    background: linear-gradient(135deg, #ffc107, #eb5d07);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) rgba(235, 93, 7, 0.3) !important;
}

.gradient-text-alt {
    background: var(--gradient-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-primary {
    background: var(--primary) !important;
}

.text-primary {
    color: #eb5d07 !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.dark-border {
    border: 1px solid var(--border-light) !important;
}

.light-border {
    border: 1px solid var(--mm-border) !important;
}

.section-teal {
    background-color: var(--teal-bg);
    padding: 50px 0;
    background-image: radial-gradient(circle at center, rgba(235, 93, 7, 0.3) 0%, transparent 70%);
    z-index: 0;
}

.section-alt {
    background: linear-gradient(180deg, #f6f9fb 0%, #eef4f8 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 127, 42, 0.12);
}

.section-alt::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -100px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(4, 48, 56, 0.08);
}

/* Other Specialized Services We Offer */
.service-grid-card {
    border: 1px solid #eaeaea;
    transition: all 0.4s ease;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
}

.service-grid-card:hover {
    border-color: #eb5d07;
    box-shadow: 0 15px 30px rgba(235, 93, 7, 0.08);
    transform: translateY(-5px);
}

.service-grid-card .service-name {
    color: #043038;
    transition: color 0.3s ease;
    font-weight: 700;
}

.service-grid-card:hover .service-name {
    color: #eb5d07;
}

/* Gradient text */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--teal-bg) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #ffa733 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.w-20 {
    width: 20%;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-hybrid {
    padding: 8px 30px;
    font-weight: 700;
    border-radius: 999px;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    letter-spacing: 0.01em;
    text-transform: none;
}

.btn-primary-hybrid {
    background: linear-gradient(135deg, #ff7f2a 0%, #ff4b00 100%);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(255, 122, 44, 0.24);
}

.btn-primary-hybrid:hover,
.btn-hybrid.active {
    background: linear-gradient(135deg, #ff9050 0%, #ff5d1a 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(255, 116, 36, 0.32);
}

.btn-outline-hybrid,
.btn-hybrid.inactive {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    border: 2px solid rgba(209, 213, 219, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.btn-outline-hybrid:hover,
.btn-hybrid.inactive:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #ff7f2a;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-pill-toggle {
    border-radius: 999px;
    padding: 12px 24px;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(209, 213, 219, 0.95);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.btn-pill-toggle:hover {
    background: #fff;
    border-color: #ff7f2a;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-pill-toggle.active {
    background: linear-gradient(135deg, #ff7f2a 0%, #ff4b00 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(255, 108, 36, 0.24);
}

.btn-teal-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.section-cta .cta-panel {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    background: var(--teal-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 42px;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
}

.section-cta .cta-images {
    animation: top-down 2s ease-in-out infinite alternate;
}

@keyframes top-down {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}

.section-cta .cta-typewriter-text {
    font-size: 1.55rem;
    margin-bottom: 1.8rem;
    min-height: 2.4rem;
    color: #eb5d07;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.section-cta .typewriter-cursor {
    display: inline-block;
    margin-left: 0.3rem;
    opacity: 1;
    animation: blinkCursor 1s steps(2, start) infinite;
}

@keyframes blinkCursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.section-cta .cta-button {
    background: linear-gradient(135deg, #ffc107 0%, #043038 100%);
    color: var(--white);
    box-shadow: 0 20px 50px #043038;
}

.section-cta .cta-button:hover {
    background: linear-gradient(135deg, var(--text-dark) 0%, #fbff00 100%);
    transform: translateY(-3px);

}

.section-cta .cta-title {
    color: #fff;
}

.section-cta .cta-images {
    position: absolute;
    right: 21px;
    bottom: 0px;
}

@media (max-width: 991.98px) {
    .section-cta .cta-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-cta .cta-copy {
        justify-self: center;
    }

    .w-20 {
        width: 32%;
    }
}

@media (max-width: 575.98px) {
    .section-cta {
        padding: 50px 0;
    }

    .section-cta .cta-images {
        display: none;
    }

    .section-cta .cta-title {
        font-size: 2.1rem;
    }

    .section-cta .cta-typewriter-text {
        font-size: 1.3rem;
    }

    .w-20 {
        width: 50%;
    }
}


.btn-teal-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}


/* ==========================================
   HERO SECTION
   ========================================== */

/* ---- Top Bar ---- */
.mm-top-bar {
    background: #043038;
    color: #fff;
    font-size: 0.815rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 0;
    position: relative;
    z-index: 1060;
}

.mm-top-bar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color var(--hdr-dur) var(--hdr-ease);
}

.mm-top-bar a:hover {
    color: var(--hdr-accent);
}

.mm-top-social-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Marquee animation */
.mm-warning-badge {
    background: #eb5d07;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.mm-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    flex: 1;
    mask-image: linear-gradient(to right, transparent, black 15px, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15px, black 95%, transparent);
}

.mm-marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: mmMarquee 28s linear infinite;
    font-weight: 500;
    color: #ffffff;
    font-size: 16px;
}

.mm-marquee-container:hover .mm-marquee-track {
    animation-play-state: paused;
}

@keyframes mmMarquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ---- Main Sticky Navbar Shell ---- */
#mainNav {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sticky Mode activated on Scroll */
#mainNav.is-sticky {
    box-shadow: 0 10px 30px rgba(4, 48, 56, 0.12);
}

#mainNav .navbar {
    background: #fff;
    border-bottom: 1px solid var(--hdr-border);
    min-height: 64px;
    padding: 0;
}

/* ---- Nav Links ---- */
#mainNav .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #043038;
    padding: 12px 13px;
    border-radius: 8px;
    white-space: nowrap;
    transition: color var(--hdr-dur) var(--hdr-ease),
        background var(--hdr-dur) var(--hdr-ease);
}#mainNav .nav-link:hover,
#mainNav .nav-item:hover>.nav-link,
#mainNav .nav-item.show>.nav-link,
#mainNav .nav-item.is-active>.nav-link {
    color: var(--hdr-accent);
    background: var(--hdr-accent2);
}

.nav-icon {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    transition: stroke var(--hdr-dur) var(--hdr-ease);
}

.nav-chevron {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
    transition: transform var(--hdr-dur) var(--hdr-ease),
        stroke var(--hdr-dur) var(--hdr-ease);
}

/* ================================================================
       HOVER DROPDOWNS & SERVICES MEGA MENU
       ================================================================ */
@media (min-width: 992px) {
    #mainNav .nav-item:hover .nav-chevron,
    #mainNav .nav-item.show .nav-chevron,
    #mainNav .nav-item.is-active .nav-chevron {
        transform: rotate(180deg);
    }

    #mainNav .nav-item.dropdown {
        position: relative;
    }

    #mainNav .nav-item.dropdown>.dropdown-menu {
        display: block !important;
        visibility: hidden;
        opacity: 0;
        top: 100% !important;
        margin-top: 0 !important;
        transform: translateY(40px);
        pointer-events: none;
        transition:
            opacity var(--hdr-dur) var(--hdr-ease),
            transform var(--hdr-dur) var(--hdr-ease),
            visibility var(--hdr-dur) var(--hdr-ease);
        will-change: opacity, transform;
    }

    /* Invisible hover bridge element */
    #mainNav .nav-item.dropdown>.dropdown-menu::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
        background: transparent;
    }

    #mainNav .nav-item.dropdown:hover>.dropdown-menu,
    #mainNav .nav-item.dropdown.show>.dropdown-menu,
    #mainNav .nav-item.dropdown.is-active>.dropdown-menu {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    #nav-services-li {
        position: static !important;
    }

    /* Centered Mega Menu attached cleanly below navbar */
    #mm-services-mega {
        width: 100%;
        max-width: 1300px;
        left: 50% !important;
        right: auto !important;
        top: 100% !important;
        margin-top: 0 !important;
        transform: translateX(-50%) translateY(40px) !important;
        max-height: 85vh;
        overflow-y: auto;
    }

    #nav-services-li:hover #mm-services-mega,
    #nav-services-li.show #mm-services-mega,
    #nav-services-li.is-active #mm-services-mega {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(-50%) translateY(0) !important;
        pointer-events: auto !important;
    }
}

#mainNav .dropdown-menu {
    border: none;
    box-shadow: var(--hdr-shadow);
    border-radius: var(--hdr-radius);
    padding: 18px 20px;
    background: #fff;
}

.drop-section-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--hdr-muted);
    padding: 0 10px;
    margin-bottom: 6px;
}

#mainNav .dropdown-item {
    font-size: 0.83rem;
    color: var(--hdr-text);
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    text-decoration: none;
    transition:
        color var(--hdr-dur) var(--hdr-ease),
        background var(--hdr-dur) var(--hdr-ease),
        padding-left var(--hdr-dur) var(--hdr-ease);
}

#mainNav .dropdown-item::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--hdr-accent);
    margin-right: 8px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity var(--hdr-dur) var(--hdr-ease);
}

#mainNav .dropdown-item:hover {
    background: var(--hdr-accent2);
    color: var(--hdr-accent);
    padding-left: 14px;
}

#mainNav .dropdown-item:hover::before {
    opacity: 1;
}

/* ================================================================
       SERVICES MEGA MENU TABS
       ================================================================ */
#mm-services-mega {
    padding: 0;
    overflow: hidden;
    border-radius: var(--hdr-radius);
}

.mm-svc-tabs-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 14px 20px;
    background: #f7f8fb;
    border-bottom: 1px solid var(--hdr-border);
}

.mm-svc-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border: 1.5px solid rgba(4, 48, 56, 0.14);
    border-radius: 100px;
    background: #fff;
    font-size: 0.79rem;
    font-weight: 600;
    color: var(--hdr-text);
    cursor: pointer;
    white-space: nowrap;
    transition:
        color var(--hdr-dur) var(--hdr-ease),
        background var(--hdr-dur) var(--hdr-ease),
        border-color var(--hdr-dur) var(--hdr-ease),
        box-shadow var(--hdr-dur) var(--hdr-ease);
}

.mm-svc-tab .svc-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    transition: stroke var(--hdr-dur) var(--hdr-ease);
}

.mm-svc-tab:hover {
    border-color: var(--hdr-accent);
    color: var(--hdr-accent);
    background: var(--hdr-accent2);
    box-shadow: 0 2px 8px rgba(235, 93, 7, 0.15);
}

.mm-svc-tab.mm-tab-active {
    background: var(--hdr-primary);
    border-color: var(--hdr-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(4, 48, 56, 0.25);
}

.mm-svc-tab.mm-tab-active:hover {
    background: var(--hdr-accent);
    border-color: var(--hdr-accent);
}

.mm-svc-pane {
    display: none;
    padding: 20px 24px;
}

.mm-svc-pane.mm-pane-active {
    display: block;
    animation: mmPaneFade var(--hdr-dur) var(--hdr-ease);
}

@keyframes mmPaneFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
       MOBILE OFFCANVAS OVERLAY FIXES
       ================================================================ */
.offcanvas-backdrop {
    z-index: 1080 !important;
}

#mmMobileCanvas.offcanvas {
    z-index: 1090 !important;
    width: min(340px, 95vw);
}

#mmMobileCanvas .offcanvas-header {
    background: var(--hdr-primary);
    padding: 14px 20px;
}

#mmMobileCanvas .accordion-button {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hdr-text);
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    box-shadow: none !important;
}

#mmMobileCanvas .accordion-button:not(.collapsed) {
    color: var(--hdr-accent);
    background: var(--hdr-accent2);
}

.mob-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
}

#mmMobileCanvas .list-group-item {
    border: none;
    border-bottom: 1px solid rgba(4, 48, 56, 0.05);
    padding: 0;
    background: transparent;
}

#mmMobileCanvas .list-group-item a {
    display: block;
    padding: 9px 20px 9px 44px;
    font-size: 0.84rem;
    color: #043038;
    text-decoration: none;
    transition: color var(--hdr-dur) var(--hdr-ease), padding-left var(--hdr-dur) var(--hdr-ease);
}

#mmMobileCanvas .list-group-item a::before {
    content: '›  ';
    color: var(--hdr-accent);
    font-weight: 700;
}

#mmMobileCanvas .list-group-item a:hover {
    color: var(--hdr-accent);
    padding-left: 48px;
}

.hero-hybrid {
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(235, 93, 7, 0.15) 0%, #ffffff 70%);
    padding: 40px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.hero-badge {
    display: inline-block;
    background: rgba(247, 200, 18, 0.12);
    border: 1px solid rgba(247, 200, 18, 0.35);
    color: #9a7a00;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-headline span {
    color: var(--primary);
}

.hero-subtext {
    font-size: 1.05rem;
    color: var(--text-dark-muted);
    line-height: 1.8;
    margin: 0 auto 30px;
}

.hero-stars {
    gap: 6px;
}

.hero-stars-text {
    font-size: 0.875rem;
    color: var(--text-dark-muted);
}

/* Floating glass badges */
.float-badge-card {
    position: absolute;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    z-index: 4;
    border: 1px solid var(--border-light);
}

.float-badge-left {
    left: 21%;
    top: 13%;
    animation: floatA 5s ease-in-out infinite;
}

.float-badge-right {
    right: 21%;
    top: 52%;
    animation: floatB 5.5s ease-in-out infinite;
}

@keyframes floatA {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(-14px) rotate(-1deg);
    }
}

/* Hero Stat Cards Row */
.hero-stat-card {
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(235, 93, 7, 0.3);
    box-shadow: 0 10px 30px rgba(4, 48, 56, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 10;
    padding: 14px;
}

.hero-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(4, 48, 56, 0.12);
    border-color: rgba(235, 93, 7, 0.4);
}

.hero-stat-value {
    font-weight: 800;
    font-size: 1.55rem;
    color: #043038;
    display: block;
    margin-top: 4px;
}

.hero-stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #043038;
    font-weight: 700;
}

@media (max-width: 600px) {
    .hero-stat-value {
        font-size: 1.2rem;
    }

    .hero-stat-label {
        font-size: 0.765rem;
    }
}

.brand-marquee {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0 0.5rem;
}

.brand-marquee-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeLeft 28s linear infinite;
}

.brand-marquee:hover .brand-marquee-track {
    animation-play-state: paused;
}

.brand-logo {
    min-width: 200px;
    padding: 1.05rem 1.4rem;
    border: 1px solid rgba(235, 93, 7, 0.3);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(4, 48, 56, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(4, 48, 56, 0.08);
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   SERVICES SECTION (Teal BG)
   ========================================== */
.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-card);
    padding: 36px 30px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #eb5d07, #f7c812);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px #ffc10736;
    border-color: rgba(235, 93, 7, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(235, 93, 7, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.service-card:hover .service-icon-box {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-card-premium h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gw-primary);
    margin-bottom: 1rem;
}

.service-card-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-card-link {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-card-link:hover {
    color: var(--accent);
    gap: 10px;
}

/* ==========================================
   STATS COUNTER SECTION (White BG)
   ========================================== */
.stats-section {
    background: var(--white);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--teal-bg), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: var(--border-light);
    align-self: stretch;
}

/* ==========================================
   INDUSTRIES SECTION (Light BG)
   ========================================== */
.industry-detail-panel {
    background: var(--white);
    border: 1px solid var(--mm-border);
    border-radius: 22px;
    padding: 44px;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.industry-panel-title {
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.industry-panel-desc {
    color: var(--text-dark-muted);
    line-height: 1.78;
    margin-bottom: 24px;
}

.industry-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark-muted);
    margin-bottom: 12px;
}

.industry-checklist-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.tag-badge {
    background: rgba(235, 93, 7, 0.09);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Vertical Marquees for Industries */
.industries-marquee-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    height: 550px;
    overflow: hidden;
    position: relative;
    padding: 10px 5px;
    mask-image: linear-gradient(to bottom, transparent, white 8%, white 92%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, white 8%, white 92%, transparent);
}

.marquee-column {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Alternating directions animations */
.marquee-track.scroll-up {
    animation: marqueeScrollUp 30s linear infinite;
}

.marquee-track.scroll-down {
    animation: marqueeScrollDown 30s linear infinite;
}

.marquee-column:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes marqueeScrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width : 600px) {
    .industries-marquee-container {
        gap: 0px;
    }
}

/* Industry Small Card style */
.industry-card {
    background: var(--white);
    border: 1px solid var(--mm-border);
    border-radius: 16px;
    padding: 22px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 16px;
    min-height: 120px;
    box-shadow: 0 4px 22px rgba(235, 93, 7, 0.15);
}

.industry-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 24px rgba(235, 93, 7, 0.12);
    border-color: rgba(235, 93, 7, 0.25);
}

.industry-card.active {
    border-color: var(--primary);
    background: rgba(235, 93, 7, 0.03);
    box-shadow: 0 8px 24px rgba(235, 93, 7, 0.18);
}

.industry-card svg {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.industry-card:hover svg {
    transform: scale(1.1);
}

.industry-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    line-height: 1.3;
}

/* ==========================================
   TRUST & IMPACT SECTION (Light BG)
   ========================================== */
.trust-card-main {
    border-radius: 32px;
    padding: 48px 40px;
    min-height: 100%;
    border: 1px solid var(--mm-border);

}

.trust-card-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.discover-btn-main {
    align-self: flex-start;
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.discover-btn-main:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}


/* Stat Cards Container */
.trust-stats-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Stat Cards */
.trust-stat-card {
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    min-height: 180px;
    justify-content: center;
}

.trust-stat-card--blue {
    background: linear-gradient(135deg, #043038 0%, #7ec8c2 100%);
}

.trust-stat-card--pink {
    background: linear-gradient(135deg, rgb(235 93 7) 0%, #dc3545 100%);
}

.trust-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.trust-stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.4rem, 8vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

/* ==========================================
   WHY CHOOSE US (Teal BG)
   ========================================== */
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-card);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(8px);
    border-color: rgba(235, 93, 7, 0.25);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(235, 93, 7, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: var(--white);
}

.why-card-title {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 6px;
}

.why-card-desc {
    color: var(--text-light-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* Why section image side */
.why-image-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-teal);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
}

.why-big-stat {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.why-big-stat-label {
    color: var(--text-light-muted);
    font-size: 0.95rem;
}

.why-divider {
    height: 1px;
    background: var(--border-teal);
    margin: 22px 0;
}

/* ==========================================
   3-COLUMN TESTIMONIAL SHOWCASE
   ========================================== */
.featured-testimonial-card {
    height: 480px;
    border-radius: 24px;
    border: 1px solid rgba(4, 48, 56, 0.12);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.featured-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(4, 48, 56, 0.18) !important;
}

.featured-img-wrapper {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
}

.featured-client-img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-testimonial-card:hover .featured-client-img {
    transform: scale(1.06);
}

/* Glossy Gradient Bottom Overlay */
.featured-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top,
            rgba(4, 48, 56, 0.96) 0%,
            rgba(4, 48, 56, 0.7) 40%,
            rgba(4, 48, 56, 0.15) 75%,
            transparent 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: background 0.3s ease;
}

.featured-testimonial-card:hover .featured-card-overlay {
    background: linear-gradient(to top,
            rgba(4, 48, 56, 0.98) 0%,
            rgba(4, 48, 56, 0.8) 45%,
            rgba(4, 48, 56, 0.25) 80%,
            transparent 100%);
}

.featured-quote {
    font-size: 1.05rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Right Column: Vertical Testimonial Slider */
.vertical-testimonial-slider-wrapper {
    height: 480px;
    overflow: hidden;
    position: relative;
    padding: 4px 0;
}

.vertical-testimonial-slider {
    height: 100%;
}

.vtestimonial-slide {
    padding: 10px 4px;
    box-sizing: border-box;
}

.vtestimonial-card {
    border-radius: 20px;
    border: 1.5px solid rgba(4, 48, 56, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 28px rgba(4, 48, 56, 0.05);
}

.vtestimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(235, 93, 7, 0.4);
    box-shadow: 0 16px 40px rgba(4, 48, 56, 0.1);
}

.vtestimonial-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #043038;
}

.vtestimonial-stars {
    color: #ffb400;
    font-size: 1.15rem;
    letter-spacing: 2px;
}

@media (max-width: 991.98px) {

    .featured-testimonial-card,
    .vertical-testimonial-slider-wrapper {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-left {
        text-align: center;
        margin-bottom: 24px;
    }

    .featured-testimonial-card {
        height: 380px;
        margin-bottom: 24px;
    }

    .vertical-testimonial-slider-wrapper {
        height: 360px;
    }
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-card);
    padding: 36px 28px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-8px);
    border-color: rgba(235, 93, 7, 0.3);
}

.process-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(235, 93, 7, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--primary);
    color: var(--white);
}

.process-title {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.process-desc {
    color: var(--text-light-muted);
    font-size: 0.875rem;
    line-height: 1.75;
    margin: 0;
}

.card-dark:hover .icon-wrapper {
    background-color: #eb5d07;
    color: #fff;
}

.icon-box-hover {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(235, 93, 7, 0.25);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #eb5d07;
    flex-shrink: 0;
    background: rgba(235, 93, 7, 0.06);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(235, 93, 7, 0.12) !important;
}

.hover-lift:hover .icon-box-hover svg {
    color: #fff;
}

.hover-lift:hover .icon-box-hover {
    background: #eb5d07;
    color: #fff;
    border-color: #eb5d07;
}

.card-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s ease;
}

.card-dark:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(235, 93, 7, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   TOOLS & TECHNOLOGIES (White BG)
   ========================================== */
.tool-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 5px 16px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    white-space: nowrap;
}

.tool-chip h6 {
    font-size: 15px;
    font-weight: 600;
}

.tool-chip svg {
    font-size: 1.1rem;
    color: var(--primary);
}

.tool-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    border-color: rgba(235, 93, 7, 0.2);
    color: var(--primary);
}

.tools-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-dark-muted {
    color: var(--text-dark-muted) !important;
}

.text-light-muted {
    color: var(--text-light-muted) !important;
}

.text-primary-brand {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.fw-extrabold {
    font-weight: 800 !important;
}

/* Reveal animation targets for scroll-based fade effects */
.reveal-up,
.reveal-down,
.reveal-left,
.reveal-right {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-down {
    transform: translateY(-30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================
   RESPONSIVE OVERRIDES
   ========================================== */
@media (max-width: 991.98px) {

    .hero-hand-left,
    .hero-hand-right,
    .float-badge-left,
    .float-badge-right {
        display: none;
    }

    .hero-hybrid {
        text-align: center;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .industry-detail-panel {
        margin-bottom: 30px;
    }

    .section-white,
    .section-light,
    .section-teal,
    .section-alt {
        padding: 20px 0;
    }
}

@media (max-width: 767.98px) {

    .section-white,
    .section-light,
    .section-teal,
    .section-alt {
        padding: 30px 0;
    }

    .stats-section {
        padding: 20px 0;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .cta-form-wrapper {
        padding: 28px 20px;
    }

    .industry-detail-panel {
        padding: 26px 20px;
    }

    .tools-flex {
        gap: 10px;
    }
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    position: relative;
    background: var(--teal-bg);
    padding: 60px 0;
    overflow: hidden;
}

.pricing-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 15% 20%, rgba(235, 93, 7, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 80%, rgba(235, 93, 7, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Heading */
.pricing-main-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.pricing-title-accent {
    color: var(--primary);
}

.pricing-subtitle {
    color: #fff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto;
}

/* Billing Toggle */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
}

.toggle-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label.active {
    color: var(--white);
}

.toggle-save-badge {
    background: var(--primary);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}

.pricing-toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    cursor: pointer;
    margin: 0;
}

.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    transition: background 0.35s ease;
}

.pricing-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 4px;
    top: 4px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-toggle-switch input:checked+.pricing-slider {
    background: var(--primary);
}

.pricing-toggle-switch input:checked+.pricing-slider::before {
    transform: translateX(22px);
}

/* Pricing Cards */
.pricing-card {
    border-radius: 20px;
    padding: 36px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.pricing-card--light {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card--light:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(235, 93, 7, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured {
    background: linear-gradient(145deg, #eb5d07 0%, #c94d06 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(235, 93, 7, 0.35);
}

.pricing-card--featured:hover {
    transform: translateY(-18px);
    box-shadow: 0 40px 90px rgba(235, 93, 7, 0.45);
}

/* Popular Badge */
.scrolling {
    height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(247, 244, 242, 0.4) transparent;
}

.scrolling:hover::-webkit-scrollbar-thumb {
    background: rgba(247, 244, 242, 0.6);
}

.pricing-popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(6px);
}

.pricing-popular-badge svg {
    font-size: 0.65rem;
    color: #f7c812;
}

/* Card Header */
.pricing-card-header {
    margin-bottom: 19px;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #ffffff2e;
}

.pricing-plan-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(235, 93, 7, 0.12);
    border: 1px solid rgba(235, 93, 7, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-right: 13px;
    transition: var(--transition);
}

.pricing-card--light:hover .pricing-plan-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pricing-plan-icon--featured {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.pricing-plan-name {
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-plan-desc {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.price-billed-note {
    font-size: 0.78rem;
    color: #fff;
    margin-top: 6px;
}

.price-billed-note--featured {
    color: rgba(255, 255, 255, 0.7);
}

/* Features List */
.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.feature-item svg {
    flex-shrink: 0;
    font-size: 0.95rem;
}

.feature-item--yes {
    color: rgba(255, 255, 255, 0.8);
}

.feature-item--yes svg {
    color: #62ff17;
}

.feature-item--no {
    color: rgba(255, 255, 255, 0.28);
}

.feature-item--no svg {
    color: rgba(255, 255, 255, 0.2);
}

.feature-item--featured-yes {
    color: rgba(255, 255, 255, 0.9);
}

.feature-item--featured-yes svg {
    color: rgba(255, 255, 255, 0.95);
}

/* CTA Buttons */
.pricing-card-cta {
    padding-top: 10px;
}

.btn-pricing-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-pricing-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(235, 93, 7, 0.3);
}

.btn-pricing-featured {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--primary);
    background: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.btn-pricing-featured:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Trust Row */
.pricing-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 20px 28px;
    margin-top: 12px;
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.84rem;
    font-weight: 500;
    padding: 8px 24px;
    transition: color 0.3s ease;
}

.pricing-trust-item:hover {
    color: var(--white);
}

.pricing-trust-item svg {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Price counter animation */
.price-value.updating {
    opacity: 0;
    transform: translateY(8px);
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 767px) {
    .pricing-trust-row {
        flex-direction: column;
        gap: 4px;
    }

    .pricing-trust-divider {
        width: 40px;
        height: 1px;
    }

    .pricing-trust-item {
        padding: 8px 16px;
    }
}

/* ==========================================
   TRUST & IMPACT RESPONSIVE
   ========================================== */


@media (max-width: 991.98px) {
    .trust-card-main {
        padding: 36px 28px;
    }

    .trust-card-title {
        font-size: 1.8rem;
    }

    .discover-btn-main {
        padding: 9px 20px;
        font-size: 0.85rem;
    }

    .trust-stat-card {
        padding: 32px 24px;
        min-height: 160px;
    }

}

@media (max-width: 767.98px) {
    #trust-impact {
        padding: 60px 0;
    }

    .trust-card-main {
        padding: 28px 24px;
        border-radius: 24px;
        min-height: auto;
    }

    .trust-card-title {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .trust-card-desc {
        font-size: 0.85rem;
    }

    .trust-card-highlights {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .trust-card-closing {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .discover-btn-main {
        padding: 8px 18px;
    }
}

.custom-badge {
    background: #fff3e8;
    color: #ff6b00;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.section-title span {
    color: #ff6b00;
}

.title-line {
    width: 70px;
    height: 4px;
    background: #ff6b00;
    border-radius: 10px;
}

.benefit-box {
    background: #fff;
    border: 1px solid rgba(235, 93, 7, 0.3);
    border-radius: 20px;
    padding: 30px;
}

.benefit-box ul li {
    margin-bottom: 15px;
    color: var('--text-dark');
}

.benefit-box svg {
    color: #ff6b00;
    margin-right: 10px;
}

.custom-btn {
    background: #ff6b00;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.custom-btn:hover {
    background: #e65d00;
    color: #fff;
}

.stats-badge {
    background: #f3edff;
    color: #8b5cf6;
    padding: 10px 20px;
    border-radius: 50px;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
    transition: .4s;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card h2 {
    font-size: 42px;
    font-weight: 800;
    color: #043038;
    margin-bottom: 10px;
}

.stat-card p {
    margin: 0;
    color: #64748b;
}

.featured {
    max-width: 350px;
    margin: auto;
    border: 2px solid #ff6b00;
}

@media(max-width:991px) {

    .section-title {
        font-size: 38px;
    }

}

/* ==========================================
       FEATURED 5-CARDS SECTION
       ========================================== */
.featured-cards-section {
    padding: 18px 0 6px;
}

.featured-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

.feature-card {
    border-radius: 20px;
    padding: 22px;
    color: #072b2b;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
    box-shadow: 0 18px 42px rgba(4, 48, 56, 0.06);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 40px 90px rgba(4, 48, 56, 0.12);
}

.feature-card::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    right: -40px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 1.3rem;
}

.feature-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #082b2b;
}

.feature-card-desc {
    color: rgba(4, 48, 56, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: auto;
}

/* responsive */
@media (max-width: 1199.98px) {
    .featured-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .featured-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .featured-cards-section {
        padding: 12px 0;
    }

    .feature-card {
        min-height: 140px;
    }
}

/* Check items — white bg variant */
.cta-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--white);
}

.cta-check-item svg {
    color: var(--accent);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.cta-check-item--dark {
    color: var(--text-dark);
}

.cta-check-item--dark svg {
    color: var(--primary);
}

/* Dark outline button for email link */
.btn-outline-dark-hybrid {
    background: transparent;
    color: var(--teal-bg);
    border: 2px solid rgba(4, 48, 56, 0.2);
}

.btn-outline-dark-hybrid:hover {
    background: var(--teal-bg);
    color: var(--white);
    border-color: var(--teal-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(4, 48, 56, 0.18);
}

/* Form wrapper — light variant */
.cta-form-wrapper {
    background: var(--teal-bg);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-form-wrapper--light {
    background: rgba(235, 93, 7, 0.12);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(4, 48, 56, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.cta-form-input {
    background: var(--white) !important;
    border: 1px solid rgba(4, 48, 56, 0.12) !important;
    border-radius: 10px !important;
    color: var(--text-dark) !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.cta-form-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(235, 93, 7, 0.1) !important;
    outline: none !important;
}

.cta-form-input::placeholder {
    color: #1f1f1f !important;
}

/* Position audit submit as a large pill on desktop */
.cta-form-wrapper {
    position: relative;
    padding-bottom: 96px;
}

#auditSubmitBtn {
    right: 16px;
    bottom: 16px;
    width: 320px;
    max-width: calc(100% - 32px);
    border-radius: 999px;
    padding: 12px 22px;
    box-shadow: 0 30px 60px rgba(235, 93, 7, 0.18);
    z-index: 6;
}

@media (max-width: 1199.98px) {
    #auditSubmitBtn {
        right: 12px;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .cta-form-wrapper {
        padding-bottom: 28px;
    }

    #auditSubmitBtn {
        position: static;
        width: 100%;
        box-shadow: none;
        max-width: 100%;
    }
}

/* ==========================================
   STICKY TWO-COLUMN SERVICES SECTION
   ========================================== */
.sticky-sidebar-column {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 10;
}

.sticky-image-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-image-wrapper:hover {
    border-color: rgba(235, 93, 7, 0.4);
    box-shadow: 0 30px 60px rgba(235, 93, 7, 0.15);
}

.sticky-image-placeholder {
    height: 100%;
    min-height: 480px;
    background: radial-gradient(circle at center, rgba(4, 48, 56, 0.8) 0%, rgba(2, 24, 28, 0.95) 100%);
    border-radius: 24px;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    margin: 15px;
    width: calc(100% - 30px);
}

.sticky-image-placeholder svg {
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.services-sticky-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.service-horizontal-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.service-horizontal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.service-horizontal-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-horizontal-card:hover::before {
    transform: scaleY(1);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(235, 93, 7, 0.1);
    border: 1px solid rgba(235, 93, 7, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-horizontal-card:hover .service-card-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.service-card-body {
    flex-grow: 1;
}

.service-card-body .service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Manrope', sans-serif;
}

.service-card-body .service-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card-action {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-card-action svg {
    transition: transform 0.2s ease;
}

.service-horizontal-card:hover .service-card-action {
    color: #043038;
}

.service-horizontal-card:hover .service-card-action svg {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .sticky-sidebar-column {
        position: static;
        margin-bottom: 40px;
    }

    .sticky-image-wrapper,
    .sticky-image-placeholder {
        min-height: 300px;
    }

    .service-horizontal-card {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .service-horizontal-card:hover {
        transform: translateY(-5px);
    }

    .service-horizontal-card::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
        transform: scaleX(0);
        transform-origin: left;
    }

    .service-horizontal-card:hover::before {
        transform: scaleX(1);
    }
}

/* ==========================================
   ACCOLADES MARQUEE SCROLL
   ========================================== */
.accolades-section {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.accolades-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Manrope', sans-serif;
}

.brand-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 12px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brand-marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: scrollBrands 28s linear infinite;
}

.brand-marquee:hover .brand-marquee-track {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 72px;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}

.brand-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.35s ease;
    display: block;
}

.brand-logo:hover {
    border-color: rgba(235, 93, 7, 0.3);
    box-shadow: 0 8px 28px rgba(235, 93, 7, 0.12);
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(135deg, #fff 0%, rgba(235, 93, 7, 0.03) 100%);
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 767.98px) {
    .brand-logo {
        width: 130px;
        height: 60px;
        padding: 10px 16px;
    }

    .brand-logo img {
        max-height: 36px;
    }

    .brand-marquee-track {
        gap: 18px;
        animation-duration: 22s;
    }
}

.top-border-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(4, 48, 56, 0.05);
    border-top: 5px solid var(--primary);
}

.blog-card,
.blog-card-horizontal {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-color: rgba(235, 93, 7, 0.3);
    padding: 16px;
}

.blog-title-hover {
    transition: color 0.3s ease;
}



.blog-img-wrapper {
    overflow: hidden;
    border: 1px solid rgb(235 93 7 / 40%);
    border-radius: 11px;
}

.blog-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

.read-more-arrow {
    transition: all 0.3s ease;
}

.hover-lift:hover .read-more-arrow {
    background-color: #eb5d07;
    color: #fff !important;
    transform: translateX(5px);
    border-color: #eb5d07;
}

.object-fit-cover {
    object-fit: cover;
}

.blog-card-horizontal .col-md-5 img {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.hover-lift-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(235, 93, 7, 0.2) !important;
}

@media (max-width: 768px) {
    .blog-card-horizontal .col-md-5 img {
        border-bottom-left-radius: 0;
        border-top-right-radius: 1rem;
    }
}

/* Footer css code start here */
.footer-premium::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(235, 93, 7, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.footer-premium::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(235, 93, 7, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Top accent bar */
.footer-top-bar {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #eb5d07 40%, rgba(235, 93, 7, 0.3) 100%);
    border-radius: 2px;
}

/* Logo */
.footer-logo-img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-brand-link:hover .footer-logo-img {
    filter: brightness(0) saturate(100%) invert(44%) sepia(98%) saturate(1000%) hue-rotate(8deg) brightness(98%);
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: rgba(255, 255, 255, 1);
    line-height: 1.7;
    font-size: 0.875rem;
    max-width: 340px;
}

/* Contact items */
.footer-contact-item {
    color: inherit;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.footer-contact-item:hover {
    background: rgba(235, 93, 7, 0.1);
    transform: translateX(4px);
    color: #fff;
}

.footer-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(235, 93, 7, 0.15);
    border: 1px solid rgba(235, 93, 7, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eb5d07;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease;
}

.footer-contact-item:hover .footer-icon-wrap {
    background: #eb5d07;
    color: #fff;
    border-color: #eb5d07;
}

.footer-contact-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 2px;
}

.footer-contact-value {
    font-weight: 600;
    color: #fff;
    font-size: 0.88rem;
}

/* Social buttons */
.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgb(255 255 255 / 18%);
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(255 255 255);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.footer-social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #eb5d07;
    transform: scale(0);
    border-radius: 10px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social-btn svg {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-btn:hover {
    border-color: #eb5d07;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(235, 93, 7, 0.35);
    color: #fff;
}

.footer-social-btn:hover::before {
    transform: scale(1);
}

.footer-social-btn:hover svg {
    transform: scale(1.15);
    color: #fff;
}

/* Column headings */
.footer-col-heading {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #eb5d07;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.col-lg-3:hover .footer-col-heading::after,
.col-lg-2:hover .footer-col-heading::after {
    width: 56px;
}

/* Link list */
.footer-link-list li {
    margin-bottom: 0;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    color: rgb(255 255 255);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.875rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    position: relative;
    line-height: 1.4;
}

.footer-nav-link::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 3px;
    background: #eb5d07;
    margin-right: 0;
    transition: width 0.25s ease, margin-right 0.25s ease;
    vertical-align: middle;
    flex-shrink: 0;
}

.footer-nav-link:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-nav-link:hover::before {
    width: 12px;
    margin-right: 6px;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    margin-top: 48px;
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 1);
    font-size: 0.82rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: #eb5d07;
}

/* Responsive */
@media (max-width: 991.98px) {
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px !important;
    }

    .footer-bottom .d-flex {
        justify-content: center;
    }
}