:root {
    /* Premium Clean Light Theme Palette (Pearl and Slate Corporate) */
    --bg-primary: #f8fafc;
    /* Crisp slate 50 */
    --bg-secondary: #ffffff;
    /* Pure white */
    --text-primary: #0f172a;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --accent: #f97316;
    /* Premium Amber/Orange */
    --accent-hover: #ea580c;
    --brand-primary: #dc2626;
    /* Premium corporate red */

    /* Glassmorphism System */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: rgba(15, 23, 42, 0.05);

    /* Ambient Aurora Effects */
    --aurora-1: rgba(249, 115, 22, 0.1);
    --aurora-2: rgba(220, 38, 38, 0.08);

    --theme-card-bg: #ffffff;
    --theme-card-border: rgba(15, 23, 42, 0.06);
    --header-gradient: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    --premium-gradient: linear-gradient(135deg, var(--brand-primary), var(--accent));
    --premium-gradient-hover: linear-gradient(135deg, var(--accent), var(--brand-primary));

    /* Footer Colors (Always Dark) */
    --footer-bg: #1e293b;
    --footer-text: #cbd5e1;
    --footer-heading: #f8fafc;
    --footer-link: #e2e8f0;
    --footer-border: rgba(255, 255, 255, 0.1);
}



body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
}

/* 3D AI Glassmorphism & Card System */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        0 12px 40px var(--glass-shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

/* Dynamic Theme Utility Classes */
.theme-card {
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-card-border) !important;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--glass-shadow);
    transition: background 0.5s ease, border 0.5s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.theme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px var(--glass-shadow);
}

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

.text-theme-muted {
    color: var(--text-secondary) !important;
}

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

/* Aurora Gradient Background */
.aurora-bg {
    position: relative;
}

.aurora-bg::before,
.aurora-bg::after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.7;
    animation: float 25s infinite ease-in-out;
}

.aurora-bg::before {
    background: var(--aurora-1);
    top: -10%;
    left: -10%;
}

.aurora-bg::after {
    background: var(--aurora-2);

    animation-delay: -12s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(6%, 8%) scale(1.15);
    }
}


.navbar-custom {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-bottom: 1px solid var(--glass-border); */
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-shadow: 0 10px 30px var(--glass-shadow);
}

@media (min-width: 992px) {
    .navbar-custom {
        margin: 15px auto;
        width: 63%;
        border-radius: 50px;
    }
}

.navbar-custom.scrolled {
    background: var(--glass-bg) !important;
    box-shadow: 0 10px 40px var(--glass-shadow) !important;
    margin: 0px auto !important;
    width: 100% !important;
    border-radius: 0px !important;
    border-bottom: 1px solid var(--theme-card-border) !important;
    padding: 0.5rem 0 !important;
}

.navbar-custom .nav-link {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 12px;
    position: relative;
    padding: 6px 4px;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent);
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-custom .nav-link:hover::after {
    width: 100%;
    left: 0;
}

.navbar-custom .navbar-brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium {
    background: var(--premium-gradient);
    color: #ffffff !important;
    border: none;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

.btn-premium:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.45);
}

/* Text Gradient Utility */
.text-gradient,
.text-accent,
[style*="color: var(--accent)"] {
    background: var(--premium-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Premium Footer */
.premium-footer {
    background-color: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    padding: 80px 0 20px;
    color: var(--footer-text);
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.premium-footer h1,
.premium-footer h2,
.premium-footer h3,
.premium-footer h4,
.premium-footer h5,
.premium-footer h6 {
    color: var(--footer-heading) !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.premium-footer p {
    color: var(--footer-text) !important;
    line-height: 1.6;
}

.footer-link {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
    margin-bottom: 12px;
    width: fit-content;
    font-weight: 500;
}

.footer-link.d-inline {
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(6px);
}

/* Offices Clock Section */
.bg-offices-section {
    background-color: #f1f5f9 !important;
    color: var(--text-primary) !important;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.bg-offices-section h1,
.bg-offices-section h2,
.bg-offices-section h3,
.bg-offices-section h4,
.bg-offices-section h5,
.bg-offices-section h6,
.bg-offices-section p {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .bg-offices-section {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] .bg-offices-section h1,
[data-theme="dark"] .bg-offices-section h2,
[data-theme="dark"] .bg-offices-section h3,
[data-theme="dark"] .bg-offices-section h4,
[data-theme="dark"] .bg-offices-section h5,
[data-theme="dark"] .bg-offices-section h6 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .bg-offices-section p {
    color: var(--text-secondary) !important;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(15deg);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bento-item {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px var(--glass-shadow);
}

.hover-accent:hover {
    color: var(--accent) !important;
    transition: color 0.3s ease;
}

.bg-gradient-premium {
    background: linear-gradient(135deg, rgba(193, 39, 45, 0.06) 0%, rgba(244, 149, 33, 0.06) 100%);
}

/* Global Overrides for Hardcoded Utilities to match Glassmorphism */
.bg-dark {
    background-color: rgba(0, 0, 0, 0.25) !important;
}

.btn-dark {
    background-color: rgba(0, 0, 0, 0.2) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--theme-card-border);
}

.btn-dark:hover {
    background-color: rgba(0, 0, 0, 0.35) !important;
    color: var(--text-primary) !important;
}

.bg-black {
    background-color: rgba(0, 0, 0, 0.35) !important;
}

/* Light Mode Overrides for Text Utilities */
[data-theme=light] .text-white,
[data-theme=light] .text-light {
    color: var(--text-primary) !important;
}

[data-theme=light] .border-secondary {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Swiper Pagination Overrides */
.swiper-pagination-bullet {
    background: var(--text-secondary);
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

/* Custom Width Utilities */
.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--premium-gradient);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(244, 149, 33, 0.4);
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: var(--premium-gradient-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(244, 149, 33, 0.6);
}

/* Mouse Scroll Indicator */
.mouse-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    z-index: 10;
    opacity: 0.8;
}

.mouse-scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite ease-in-out;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0;
    }

    100% {
        top: 8px;
        opacity: 0;
    }
}

/* --- New Modern Features --- */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Global Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--theme-card-border);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Timeline Section Component */
.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--accent);
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-icon {
    position: absolute;
    top: 0;
    right: -25px;
    width: 50px;
    height: 50px;
    background: var(--theme-card-bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent);
    font-size: 1.2rem;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(even) .timeline-icon {
    right: auto;
    left: -25px;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 25px;
    }

    .timeline-item {
        width: 100%;
        padding-right: 0;
        padding-left: 70px;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
    }

    .timeline-icon {
        right: auto;
        left: 0;
    }

    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
    }
}

/* Left-aligned timeline utility for nested columns / bento layouts */
.timeline-left::before {
    left: 25px !important;
    transform: none !important;
}

.timeline-left .timeline-item {
    width: 100% !important;
    padding-right: 0 !important;
    padding-left: 70px !important;
    margin-left: 0 !important;
}

.timeline-left .timeline-icon {
    right: auto !important;
    left: 0 !important;
}

.timeline-left .timeline-item:nth-child(even) .timeline-icon {
    left: 0 !important;
}

/* Dynamic Profile Image Gradient Overlay (Light & Dark theme aware) */
.image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, var(--theme-card-bg) 30%, transparent 100%) !important;
    z-index: 3;
    transition: background 0.5s ease;
}

/* Service link buttons for bento grid cards */
.btn-service-link {
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-card-border) !important;
    color: var(--text-primary) !important;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px var(--glass-shadow);
}

.btn-service-link:hover {
    background: var(--premium-gradient) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    border-color: transparent !important;
}

/* Premium Outline Button for actions */
.btn-premium-outline {
    border: 2px solid var(--accent) !important;
    color: var(--text-primary) !important;
    background: transparent !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-premium-outline:hover {
    background: var(--premium-gradient) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px var(--glass-shadow);
    transform: translateY(-2px);
}

/* Interactive Services Hub Layout */
#v-pills-tab .nav-link {
    color: var(--text-primary);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#v-pills-tab .nav-link:hover {
    background: rgba(249, 115, 22, 0.08) !important;
    color: var(--accent) !important;
}

#v-pills-tab .nav-link.active {
    background: var(--premium-gradient) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25) !important;
}

.service-bento-link {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-bento-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--glass-shadow) !important;
    border-color: rgba(249, 115, 22, 0.2) !important;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Medium desktop adjustments to prevent centered logo overlap */
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-custom {
        margin: 5px auto !important;
        width: 98% !important;
    }

    .navbar-custom .nav-link {
        font-size: 0.85rem !important;
        margin: 0 6px !important;
    }

    .navbar-custom .navbar-collapse .pe-lg-5 {
        padding-right: 1.5rem !important;
        margin-right: 1rem !important;
    }

    .navbar-custom .navbar-collapse .ps-lg-5 {
        padding-left: 1.5rem !important;
        margin-left: 1rem !important;
    }

    .navbar-custom .navbar-brand img {
        height: 38px !important;
    }

    .btn-premium {
        padding: 8px 18px !important;
        font-size: 0.8rem !important;
    }
}

/* ── Global Theme-Aware Button Utilities ── */

/* Service Link Button: outlined, glows on hover — works in both light & dark */
.btn-service-link {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-align: center;
    border: 1.5px solid var(--theme-card-border);
    color: var(--text-primary);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-service-link:hover {
    background: var(--premium-gradient);
    border-color: transparent;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.35);
    transform: translateY(-2px);
}

/* Premium Outline Button: accent border, transparent bg */
.btn-premium-outline {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-align: center;
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-premium-outline:hover {
    background: var(--premium-gradient);
    border-color: transparent;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
    transform: translateY(-2px);
}

/* Mobile Navbar Menu Fix */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-collapse {
        background: var(--theme-card-bg);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid var(--theme-card-border);
        border-radius: 16px;
        padding: 1.5rem;
        margin-top: 15px;
        box-shadow: 0 20px 40px var(--glass-shadow);
    }

    .navbar-custom .nav-link {
        color: var(--text-primary) !important;
        padding: 10px 15px;
        border-radius: 8px;
        margin-bottom: 5px;
    }

    .navbar-custom .nav-link:hover {
        background: rgba(249, 115, 22, 0.08);
        color: var(--accent) !important;
    }

    .navbar-custom .nav-link::after {
        display: none;
    }
}

/* ═══════════════════════════════════════
   GLOBAL PAGE HERO — Shared across pages
   (About, Careers, Companies, Events etc.)
═══════════════════════════════════════ */
.page-hero {
    margin-top: -40px;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #fff7ed 50%, #fff1f2 100%);
    border-bottom: 1px solid #fee2e2;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(249, 115, 22, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(220, 38, 38, 0.07) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 148px;
    width: 100%;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #ea580c;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.page-hero h1 .highlight {
    background: linear-gradient(135deg, #dc2626, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-sub {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.page-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
}

.page-hero-chip i {
    color: #f97316;
}

@media (max-width: 767.98px) {
    .page-hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .page-hero-content {
        padding-top: 120px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
}

.pe-lg-7 {
    padding-right: 5rem !important;
}

/* ═══════════════════════════════════════
   GLOBAL MOBILE RESPONSIVENESS OVERRIDES
═══════════════════════════════════════ */
@media (max-width: 767.98px) {

    /* Fluid Typography for Mobile */
    h1,
    .h1 {
        font-size: 2.2rem !important;
    }

    h2,
    .h2 {
        font-size: 1.8rem !important;
    }

    h3,
    .h3 {
        font-size: 1.5rem !important;
    }

    h4,
    .h4 {
        font-size: 1.2rem !important;
    }

    h5,
    .h5 {
        font-size: 1rem !important;
    }

    h6,
    .h6 {
        font-size: 0.9rem !important;
    }

    /* Spacing and Layout */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .glass-card {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .bento-grid {
        gap: 16px !important;
    }

    .premium-footer {
        padding: 50px 0 20px !important;
    }

    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .loader-spinner {
        width: 45px;
        height: 45px;
    }

    .career-bg-icon {
        transform: scale(1.5) translate(0%, 20%);
        opacity: 0.05 !important;
    }
}

.career-bg-icon {
    transform: scale(3) translate(-10%, 10%);
}