     /* =========================================
           EXECUTIVE INDUSTRIAL THEME VARIABLES
           ========================================= */
        :root {
            --color-primary: #2563eb;
            --color-primary-hover: #1d4ed8;
            --color-secondary: #0ea5e9;
            --color-text-dark: #0f172a;
            --color-text-light: #64748b;
            --color-bg-main: #f8fafc;
            --color-bg-card: #ffffff;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-glow: 0 15px 35px -5px rgba(37, 99, 235, 0.2);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            margin: 0;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: var(--color-bg-main);
            color: var(--color-text-dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .page-content {
            padding: 80px 0;
        }

       /* =========================================
           ROOT VARIABLES 
           ========================================= */
        :root {
            --color-primary: #0056b3;
            --color-primary-hover: #004494;
            --color-secondary: #00a8ff;
            --color-text-dark: #1e293b;
            --color-bg-light: #f1f5f9;
            --color-white: #ffffff;
            --color-primary-glow: rgba(0, 86, 179, 0.3);
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
            --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: var(--font-body);
            background-color: #f8fafc;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* =========================================
           FIXED HEADER
           ========================================= */
        .site-header {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            z-index: 1200;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s var(--transition-smooth);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }

        .site-header.scrolled {
            background: rgba(255,255,255,0.98);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* =========================================
           HEADER WRAPPER
           ========================================= */
        .header-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }

        .logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 48px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo:hover img { transform: scale(1.02); }

        /* =========================================
           DESKTOP NAV
           ========================================= */
        .main-nav {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            padding-right: 40px;
        }

        .nav-list {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 4px;
            margin: 0;
            padding: 0;
        }

        .nav-list > li { position: relative; }
        .nav-list > li.has-megamenu { position: static; }

        .nav-link {
            display: block;
            padding: 10px 16px;
            color: var(--color-text-dark);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
            white-space: nowrap;
            cursor: pointer;
        }

        .nav-link:hover, .nav-link.active { color: var(--color-primary); }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            transform: translateX(-50%);
            width: 0; height: 3px;
            background: var(--color-primary);
            transition: width 0.3s ease;
            border-radius: 3px 3px 0 0;
        }

        .nav-link:hover::after, .nav-link.active::after { width: 60%; }

        /* Dropdown Arrow */
        .has-dropdown > .nav-link { padding-right: 28px; }

        .has-dropdown > .nav-link::before {
            content: '';
            position: absolute;
            right: 8px; top: 50%;
            transform: translateY(-50%);
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid currentColor;
            transition: transform 0.3s ease;
        }

        .has-dropdown:hover > .nav-link::before {
            transform: translateY(-50%) rotate(180deg);
        }

        /* =========================================
           DROPDOWNS (Desktop)
           ========================================= */
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            background: var(--color-white);
            min-width: 260px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s var(--transition-smooth);
            list-style: none;
            padding: 10px 0;
            border-top: 4px solid var(--color-primary);
            z-index: 1300;
        }

        .dropdown-right > .dropdown-menu { left: auto; right: 0; }

        .has-dropdown:hover > .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li a {
            display: block;
            padding: 12px 24px;
            color: #475569;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-menu li a:hover {
            background: var(--color-bg-light);
            color: var(--color-primary);
            border-left-color: var(--color-primary);
            padding-left: 28px;
        }

        /* =========================================
           MEGAMENU (Desktop)
           ========================================= */
        .megamenu-panel {
            position: absolute;
            top: calc(100% + 5px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: 96vw;
            max-width: 1200px;
            background: var(--color-white);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border-radius: 0 0 12px 12px;
            border-top: 4px solid var(--color-primary);
            padding: 30px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s var(--transition-smooth);
            z-index: 1300;
            max-height: calc(100vh - 90px);
            overflow-y: auto;
            list-style: none;
        }

        .megamenu-panel::-webkit-scrollbar { width: 6px; }
        .megamenu-panel::-webkit-scrollbar-track { background: var(--color-bg-light); }
        .megamenu-panel::-webkit-scrollbar-thumb { background: rgba(0,86,179,0.4); border-radius: 4px; }

        .has-megamenu:hover > .megamenu-panel {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .megamenu-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .mega-col h4 {
            color: var(--color-text-dark);
            font-size: 13px;
            font-weight: 700;
            margin: 0 0 12px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--color-bg-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mega-col ul { list-style: none; padding: 0; margin: 0; }

        .mega-col ul li a {
            padding: 7px 0;
            color: #64748b;
            font-size: 13.5px;
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .mega-col ul li a::before {
            content: '→';
            margin-right: 8px;
            opacity: 0;
            transform: translateX(-8px);
            transition: all 0.2s ease;
            color: var(--color-primary);
            font-size: 12px;
        }

        .mega-col ul li a:hover {
            color: var(--color-primary);
            transform: translateX(4px);
        }

        .mega-col ul li a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        /* =========================================
           HEADER CTA
           ========================================= */
        .header-cta { flex-shrink: 0; }

        .btn-get-quote {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--color-primary);
            color: var(--color-white);
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--color-primary-glow);
        }

        .btn-get-quote:hover {
            transform: translateY(-2px);
            background: var(--color-primary-hover);
            box-shadow: 0 8px 25px rgba(0,86,179,0.4);
        }

        /* =========================================
           MOBILE TOGGLE BUTTON
           ========================================= */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 32px;
            height: 26px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1500;
            flex-shrink: 0;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--color-text-dark);
            border-radius: 10px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        /* Hamburger → X animation */
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: translateY(11.5px) rotate(45deg);
        }
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: translateY(-11.5px) rotate(-45deg);
        }

        /* Overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.45);
            z-index: 1199;
        }
        .nav-overlay.active { display: block; }

        /* =========================================
           RESPONSIVE — TABLET & MOBILE
           ========================================= */
        @media (max-width: 1024px) {

            .mobile-menu-toggle { display: flex; }
            .header-cta { display: none; }

            /* Slide-in panel */
            .main-nav {
                position: fixed;
                top: 0; right: -105%;
                width: 320px;
                height: 100vh;
                background: var(--color-white);
                padding: 70px 0 30px;
                box-shadow: -8px 0 30px rgba(0,0,0,0.15);
                transition: right 0.4s var(--transition-smooth);
                overflow-y: auto;
                z-index: 1400;
                flex-direction: column;
                justify-content: flex-start;
                padding-right: 0;
            }

            .main-nav.active { right: 0; }

            .nav-list {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                gap: 0;
            }

            .nav-list > li {
                width: 100%;
                border-bottom: 1px solid #e9eef4;
            }

            .nav-link {
                padding: 16px 20px;
                font-size: 15px;
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .nav-link::after { display: none; }

            /* Arrow stays inside on mobile */
            .has-dropdown > .nav-link::before {
                position: static;
                transform: none;
                margin-left: 6px;
                transition: transform 0.3s ease;
                flex-shrink: 0;
            }

            .has-dropdown.open > .nav-link::before {
                transform: rotate(180deg);
            }

            /* Hide hover-based dropdowns on mobile */
            .has-dropdown:hover > .dropdown-menu { opacity: 0; visibility: hidden; }
            .has-megamenu:hover > .megamenu-panel { opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(10px); }

            /* Mobile dropdown — hidden by default, shown via JS */
            .dropdown-menu,
            .megamenu-panel {
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                box-shadow: none !important;
                border: none !important;
                border-radius: 0 !important;
                display: none;
                background: #f8fafc;
                padding: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                max-height: none !important;
                overflow: visible !important;
                min-width: unset !important;
                border-top: none !important;
            }

            .dropdown-menu.open,
            .megamenu-panel.open { display: block; }

            .dropdown-menu li a {
                padding: 13px 20px 13px 38px;
                border-left: 3px solid transparent;
                font-size: 14px;
            }

            .dropdown-menu li a:hover {
                padding-left: 44px;
            }

            /* Megamenu mobile grid reset */
            .megamenu-grid {
                display: block;
            }

            .mega-col {
                width: 100%;
                border-bottom: 1px solid #e9eef4;
            }

            .mega-col h4 {
                padding: 14px 20px 14px 38px;
                margin: 0;
                background: #edf2f7;
                font-size: 12px;
                border-bottom: 1px solid #dde3ea;
                cursor: default;
            }

            .mega-col ul li a {
                padding: 11px 20px 11px 50px;
                font-size: 13.5px;
                transform: none !important;
            }

            .mega-col ul li a::before { display: none; }
        }

        @media (max-width: 480px) {
            .logo img { height: 40px; }
            .main-nav { width: 88%; }
        }

        /* =========================================
   MOBILE MENU ALIGNMENT OVERRIDE
   ========================================= */
@media (max-width: 1024px) {
    /* 1. Ensure the link container spreads across the full width */
    .nav-list > li > .nav-link {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important;
    }

    /* 2. Hide the old arrow that is pushing the text to the right */
    .has-dropdown > .nav-link::before {
        display: none !important;
    }

    /* 3. Recreate the arrow on the right side (after the text) */
    .has-dropdown > .nav-link::after {
        content: '';
        display: inline-block;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: 10px;
    }

    /* 4. Rotate the new right-side arrow when the accordion opens */
    .has-dropdown.open > .nav-link::after {
        transform: rotate(180deg);
    }
}

        /* =========================================
           PURE CSS LOAD ANIMATIONS (No JS Needed)
           ========================================= */
        @keyframes fadeUpIn {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        /* Set initial states to hidden for the animation */
        .founder-copy, .founder-visual, .founder-impact-card, 
        .founder-story-grid article, .section-header, .founder-values-grid span {
            opacity: 0;
            animation: fadeUpIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        /* =========================================
           FOUNDER HERO PANEL
           ========================================= */
        .founder-hero-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .founder-copy { animation-delay: 0.1s; }
        
        .section-kicker {
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--color-primary);
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 15px;
            background: rgba(37, 99, 235, 0.1);
            padding: 6px 14px;
            border-radius: 50px;
        }

        .founder-hero-panel h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 0 0 5px 0;
            letter-spacing: -1px;
            color: var(--color-text-dark);
        }

        .founder-title {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--color-text-light);
            margin: 0 0 25px 0;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 20px;
            display: inline-block;
        }

        .founder-lead {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 40px;
        }

        .founder-actions {
            display: flex;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .btn-primary {
            background: var(--color-primary);
            color: var(--color-white);
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
        }

        .btn-primary:hover {
            background: var(--color-primary-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }

        .btn-secondary {
            background: var(--color-bg-card);
            color: var(--color-text-dark);
            border: 1px solid #e2e8f0;
        }

        .btn-secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        /* Right Side - Visual / Logo Area */
        .founder-visual {
            background: var(--color-bg-card);
            padding: 50px;
            border-radius: 24px;
            box-shadow: var(--shadow-md);
            position: relative;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.5);
            animation-delay: 0.3s;
        }

        /* Optional floating effect for the logo inside */
        .founder-visual img {
            max-width: 200px;
            height: auto;
            margin-bottom: 40px;
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
            animation: float 6s ease-in-out infinite; /* Continuous floating effect */
        }

        .founder-quote {
            position: relative;
            background: #f8fafc;
            padding: 24px 30px;
            border-radius: 16px;
            border-left: 4px solid var(--color-primary);
        }

        .founder-quote p {
            margin: 0;
            font-size: 1.1rem;
            font-style: italic;
            color: var(--color-text-dark);
            font-weight: 500;
        }

        /* =========================================
           IMPACT GRID (Stats)
           ========================================= */
        .founder-impact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 100px;
        }

        .founder-impact-card {
            background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a8a 100%);
            color: var(--color-white);
            padding: 35px 30px;
            border-radius: 16px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .founder-impact-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-glow);
        }

        /* Staggered load animation delays */
        .founder-impact-card:nth-child(1) { animation-delay: 0.2s; }
        .founder-impact-card:nth-child(2) { animation-delay: 0.4s; }
        .founder-impact-card:nth-child(3) { animation-delay: 0.6s; }

        .founder-impact-card strong {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .founder-impact-card span {
            font-size: 0.95rem;
            font-weight: 500;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* =========================================
           STORY / VISION / MISSION GRID
           ========================================= */
        .founder-story-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 100px;
        }

        .founder-story-grid article {
            background: var(--color-bg-card);
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #f1f5f9;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            z-index: 1;
        }

        .founder-story-grid article:hover {
            transform: translateY(-8px);
            border-color: var(--color-primary);
            box-shadow: var(--shadow-md);
        }

        /* Staggered load animation delays */
        .founder-story-grid article:nth-child(1) { animation-delay: 0.3s; }
        .founder-story-grid article:nth-child(2) { animation-delay: 0.5s; }
        .founder-story-grid article:nth-child(3) { animation-delay: 0.7s; }

        /* Massive Background Numbers */
        .founder-story-grid article span {
            position: absolute;
            top: -15px;
            right: -10px;
            font-size: 8rem;
            font-weight: 900;
            color: rgba(37, 99, 235, 0.04);
            line-height: 1;
            z-index: -1;
            transition: var(--transition);
        }

        .founder-story-grid article:hover span {
            color: rgba(37, 99, 235, 0.08);
            transform: scale(1.1);
        }

        .founder-story-grid article h2 {
            font-size: 1.75rem;
            color: var(--color-text-dark);
            margin: 0 0 20px 0;
            position: relative;
            padding-bottom: 15px;
        }

        .founder-story-grid article h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--color-primary);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .founder-story-grid article:hover h2::after {
            width: 60px; /* Line expands on hover */
        }

        .founder-story-grid article p {
            color: var(--color-text-light);
            margin: 0;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* =========================================
           VALUES SECTION
           ========================================= */
        .founder-values {
            text-align: center;
            background: var(--color-bg-card);
            padding: 60px 40px;
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #f1f5f9;
        }

        .section-header { animation-delay: 0.4s; }

        .section-title {
            font-size: 2.2rem;
            margin: 0 0 15px 0;
            color: var(--color-text-dark);
        }

        .section-divider {
            width: 50px;
            height: 4px;
            background: var(--color-primary);
            border-radius: 2px;
            margin: 0 auto 40px auto;
        }

        .founder-values-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        /* Dynamic Pill Badges */
        .founder-values-grid span {
            background: var(--color-bg-main);
            color: var(--color-text-dark);
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: 1px solid #e2e8f0;
            transition: var(--transition);
            cursor: default;
        }

        .founder-values-grid span:hover {
            background: var(--color-primary);
            color: var(--color-white);
            border-color: var(--color-primary);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        }

        /* Staggered badge load animations */
        .founder-values-grid span:nth-child(1) { animation-delay: 0.5s; }
        .founder-values-grid span:nth-child(2) { animation-delay: 0.6s; }
        .founder-values-grid span:nth-child(3) { animation-delay: 0.7s; }
        .founder-values-grid span:nth-child(4) { animation-delay: 0.8s; }
        .founder-values-grid span:nth-child(5) { animation-delay: 0.9s; }

        /* =========================================
           RESPONSIVE (Mobile & Tablet)
           ========================================= */
        @media (max-width: 992px) {
            .founder-hero-panel {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .founder-impact-grid,
            .founder-story-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .founder-hero-panel h1 { font-size: 2.5rem; }
            .founder-actions { flex-direction: column; }
            .founder-visual { padding: 30px; }
            .page-content { padding: 40px 0; }
        }

        /* =========================================
   FLOATING BUTTONS (WhatsApp & Back to Top)
   ========================================= */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Ensures buttons never overlap */
    z-index: 2000;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white, #ffffff);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

/* Hover Animation */
.floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* WhatsApp Styling */
.whatsapp-btn {
    background-color: #25D366; 
}
.whatsapp-btn:hover {
    background-color: #1ebe57;
}

/* Back to Top Styling */
.back-to-top {
    background-color: var(--color-primary, #0056b3); 
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-primary-hover, #004494);
    transform: translateY(-4px); /* Overrides the transform origin to ensure it floats up */
}

/* RESPONSIVE: Tablet */
@media (max-width: 1024px) {
    .floating-container {
        bottom: 25px;
        right: 25px;
    }
}

/* RESPONSIVE: Phone */
@media (max-width: 480px) {
    .floating-container {
        bottom: 15px;
        right: 15px;
        gap: 12px; /* Rigid spacing to prevent UI overlap on small screens */
    }
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}