/* ==========================================================================
   Lockene - Certification & Compliance Consultants
   Typography: 'Montserrat' (Headings) & 'Outfit' (Body & UI)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* ====================================================
       MASTER THEME ARCHITECTURE (DESIGN SYSTEM SPEC)
       ==================================================== */
    --theme-primary: #ff5656;
    /* Button Primary Color */
    --theme-primary-hover: #e64545;
    /* Button Primary Hover */
    --theme-secondary: #121212;
    /* Button Secondary Color */
    --theme-secondary-hover: #222222;
    /* Button Secondary Hover */
    --theme-accent-1: #ff5656;
    --theme-accent-2: #ff7373;

    /* Dynamic Master Gradient Engine */
    --theme-gradient: linear-gradient(135deg, #ff5656 0%, #ff7373 100%);
    --theme-gradient-h: linear-gradient(90deg, #ff5656 0%, #ff7a70 100%);
    --theme-gradient-reverse: linear-gradient(135deg, #ff7373 0%, #ff5656 100%);
    --theme-gradient-subtle: linear-gradient(135deg, rgba(255, 86, 86, 0.06) 0%, rgba(18, 18, 18, 0.02) 100%);
    --theme-glow: 0 10px 25px rgba(255, 86, 86, 0.25);

    /* Clean Modern Surfaces */
    --theme-bg-body: #ffffff;
    --theme-bg-light: #fff9f6;
    /* Warm light theme tint as in Design System */
    --theme-bg-alt: #fff5f2;
    --theme-bg-dark: #121212;
    /* Dark section background */
    --theme-text-dark: #0F0F0F;
    /* H1 Text Color */
    --theme-heading: #0F0F0F;
    /* H1 Heading Color */
    --theme-subheading: #1b1b1b;
    /* Sub Heading Color */
    --theme-text-muted: #555555;
    /* Body Color */
    --theme-text-body: #555555;
    /* Body Color */
    --theme-border: #f0e6e2;
    --theme-border-subtle: #f5ebe6;

    /* Semantic Compatibility Tokens */
    --petronas-green: var(--theme-primary);
    --petronas-dark: #121212;
    --lockene-green: var(--theme-primary);
    --lockene-blue: var(--theme-secondary);
    --lockene-purple: var(--theme-primary);
    --lockene-orange: var(--theme-accent-2);
    --lockene-gradient: var(--theme-gradient);
    --lockene-gradient-h: var(--theme-gradient-h);
    --lockene-gradient-subtle: var(--theme-gradient-subtle);

    --light-gray: #fff9f6;
    --text-main: #0F0F0F;
    --text-muted: #555555;
    --border-color: #f0e6e2;

    --light-bg: #fff9f6;
    --text-body: #555555;
    --article-light-gray: #fff9f6;

    --footer-black: #121212;
    --footer-black-elevated: #1a1a1a;

    /* Colored Icon Palette */
    --icon-blue-bg: #fff0ee;
    --icon-blue-text: #ff5656;
    --icon-green-bg: #fff0ee;
    --icon-green-text: #ff5656;
    --icon-orange-bg: #fff0ee;
    --icon-orange-text: #ff5656;
    --icon-purple-bg: #f5f5f5;
    --icon-purple-text: #121212;
    --icon-red-bg: #fff0ee;
    --icon-red-text: #ff5656;
}

/* --- Global Slim & Light Typography --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--theme-text-body);
    background-color: #ffffff;
    font-size: 14.5px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Safe Wrapper */
.main-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1,
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0F0F0F !important;
}

h2,
h3,
h4,
h5,
h6,
.sub-heading,
.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1b1b1b;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #0F0F0F !important;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1b1b1b;
    font-weight: 700;
}

h3 {
    font-size: 1.4rem;
    color: #1b1b1b;
}

h4 {
    font-size: 1.2rem;
    color: #1b1b1b;
}

h5 {
    font-size: 1.05rem;
    color: #1b1b1b;
}

p,
.body-text,
.text-muted,
span.text-muted {
    color: #555555;
}

.section-title-sm {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--lockene-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    display: inline-block;
}

.top-bar {
    background: #ff5656 !important;
    color: #ffffff !important;
    font-size: 11.5px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.top-bar a {
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.2s;
}

.top-bar a:hover {
    color: #ffffff !important;
    opacity: 0.9;
}

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 8px 0;
}

.nav-link {
    color: var(--text-main) !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 6px 14px !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--theme-primary) !important;
}

.nav-link.dropdown-toggle::after {
    display: none !important;
}

/* --- Global Brand Buttons (Design System Spec) --- */
/* Primary Button: #ff5656 */
.btn-green,
.btn-slim.btn-green,
.btn-primary,
.btn-primary-gradient {
    background: #ff5656 !important;
    color: #ffffff !important;
    border: 1px solid #ff5656 !important;
    font-weight: 600;
    padding: 7px 18px !important;
    font-size: 13px !important;
    border-radius: 50px !important;
    box-shadow: 0 3px 10px rgba(255, 86, 86, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0;
}

.btn-green:hover,
.btn-slim.btn-green:hover,
.btn-primary:hover,
.btn-primary-gradient:hover {
    background: #e64444 !important;
    border-color: #e64444 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 86, 86, 0.35) !important;
    color: #ffffff !important;
}

.btn-slim {
    padding: 7px 18px !important;
    font-size: 13px !important;
    border-radius: 50px !important;
    margin: 0;
}

/* Secondary Button: #121212 */
.btn-secondary,
.btn-dark,
.btn-secondary-btn,
.btn-outline-slim {
    background: #121212 !important;
    color: #ffffff !important;
    border: 1px solid #121212 !important;
    font-weight: 600;
    padding: 7px 18px !important;
    font-size: 13px !important;
    border-radius: 50px !important;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(18, 18, 18, 0.2) !important;
    margin: 0;
}

.btn-secondary:hover,
.btn-dark:hover,
.btn-secondary-btn:hover,
.btn-outline-slim:hover {
    background: #ff5656 !important;
    border-color: #ff5656 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 86, 86, 0.3) !important;
}

/* Secondary Button on Dark Surfaces: #ffffff with #121212 text */
.bg-dark .btn-secondary,
.master-footer .btn-secondary,
.compliance-faq-matrix-section .btn-secondary,
.hero-slide .btn-secondary,
.btn-white,
.btn-secondary-white {
    background: #ffffff !important;
    color: #121212 !important;
    border: 1px solid #ffffff !important;
}

.bg-dark .btn-secondary:hover,
.master-footer .btn-secondary:hover,
.compliance-faq-matrix-section .btn-secondary:hover,
.hero-slide .btn-secondary:hover,
.btn-white:hover,
.btn-secondary-white:hover {
    background: #ff5656 !important;
    border-color: #ff5656 !important;
    color: #ffffff !important;
}

/* --- Responsive Mega Menu with Mobile Fixes --- */
.navbar .nav-item.dropdown {
    position: static;
}

.dropdown-menu.mega-menu {
    width: 100vw;
    left: 0;
    right: 0;
    margin-top: 0;
    border: none;
    border-top: 2px solid var(--petronas-green);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 25px 0;
    background: #fff;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    pointer-events: none;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 15px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        border-top: 1px solid var(--border-color);
        max-height: 80vh;
        overflow-y: auto;
    }

    .dropdown-menu.mega-menu {
        position: static;
        float: none;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 10px 0 !important;
        display: none;
        background: transparent;
    }

    .dropdown-menu.mega-menu.show {
        display: block;
    }

    .nav-link {
        border-bottom: 1px solid var(--light-gray);
        padding: 12px 15px !important;
    }

    .category-card {
        padding: 15px !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 8px;
        background: #fff !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) !important;
        margin-bottom: 10px;
        height: auto;
    }

    .category-card:hover {
        transform: none;
    }
}

.category-card {
    background: #f8fbfb;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    transition: 0.2s;
    border: 1px solid transparent;
}

.category-card:hover {
    background: #fff;
    border-color: var(--petronas-green);
    box-shadow: 0 5px 15px rgba(255, 86, 86, 0.12);
    transform: translateY(-3px);
}

.mega-menu h6 {
    color: var(--petronas-green);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 11px;
    text-transform: uppercase;
}

.mega-menu .dropdown-item {
    padding: 5px 0;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 13.5px;
    transition: 0.2s;
    white-space: normal;
}

.mega-menu .dropdown-item:hover {
    color: var(--petronas-green);
    padding-left: 5px;
    background: transparent;
}

/* ====================================================
   SERVICES MEGA MENU CARD GRID (100% CENTERED & RESPONSIVE)
   ==================================================== */
@media (min-width: 992px) {

    /* Ensure all intermediate wrappers are static so mega-menu is relative to the full fixed header-wrapper */
    .header-wrapper .navbar>.container,
    .header-wrapper .navbar-collapse,
    .header-wrapper .navbar-nav,
    .services-dropdown-wrapper {
        position: static !important;
    }

    .services-mega-menu {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(0) !important;
        width: min(1380px, calc(100vw - 40px)) !important;
        max-width: 1380px !important;
        margin: 0 auto !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 20px !important;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.06) !important;
        padding: 20px 24px !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
        z-index: 1050 !important;
        pointer-events: none !important;
        box-sizing: border-box !important;
        display: block !important;
        max-height: calc(100vh - 100px) !important;
        overflow-y: auto !important;
        scrollbar-width: thin;
    }

    /* Invisible hover bridge connecting navbar to mega menu */
    .services-mega-menu::before {
        content: '' !important;
        position: absolute !important;
        top: -15px !important;
        left: 0 !important;
        right: 0 !important;
        height: 15px !important;
        background: transparent !important;
        display: block !important;
        pointer-events: auto !important;
    }

    .services-mega-menu.show,
    .services-dropdown-wrapper.open .services-mega-menu,
    .services-dropdown-wrapper.show .services-mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(-50%) translateY(0) !important;
    }
}

.mega-service-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.mega-service-card:hover {
    border-color: rgba(255, 86, 86, 0.4);
    box-shadow: 0 10px 25px rgba(255, 86, 86, 0.12);
    transform: translateY(-4px);
}

.mega-service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.mega-service-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mega-service-card:hover .mega-service-icon-box {
    background: #fff0ee;
    border-color: rgba(255, 86, 86, 0.35);
    color: #ff5656;
}

.mega-service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #0F0F0F;
    line-height: 1.25;
    margin-bottom: 0;
}

.mega-service-desc {
    font-size: 11px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 14px;
    flex-grow: 1;
    min-height: 50px;
}

.mega-service-btn {
    background: #ff5656;
    color: #ffffff !important;
    border-radius: 30px;
    padding: 7px 14px;
    font-size: 11.5px;
    font-weight: 700;
    text-align: center;
    display: block;
    width: 100%;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 86, 86, 0.25);
    border: none;
}

.mega-service-card:hover .mega-service-btn,
.mega-service-btn:hover {
    background: #e04444;
    box-shadow: 0 6px 16px rgba(255, 86, 86, 0.35);
    transform: translateY(-1px);
}

/* Laptops / Smaller Desktops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .mega-service-card {
        padding: 14px 12px;
    }

    .mega-service-title {
        font-size: 12px;
    }

    .mega-service-desc {
        font-size: 10.5px;
        min-height: 48px;
    }

    .mega-service-icon-box {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

/* Mobile & Tablets (< 992px) */
@media (max-width: 991.98px) {
    .services-mega-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        box-shadow: none !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 14px !important;
        padding: 12px !important;
        margin-top: 10px !important;
        max-height: 70vh !important;
        overflow-y: auto !important;
    }

    .services-mega-menu.show {
        display: block !important;
    }

    .mega-service-card {
        margin-bottom: 8px;
        padding: 14px 12px;
    }

    .mega-service-desc {
        min-height: auto;
        margin-bottom: 10px;
    }
}

/* --- Colored Icons Utility --- */
.c-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-icon-sm {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-blue {
    background-color: var(--icon-blue-bg);
    color: var(--icon-blue-text);
}

.c-green {
    background-color: var(--icon-green-bg);
    color: var(--icon-green-text);
}

.c-orange {
    background-color: var(--icon-orange-bg);
    color: var(--icon-orange-text);
}

.c-purple {
    background-color: var(--icon-purple-bg);
    color: var(--icon-purple-text);
}

.c-red {
    background-color: var(--icon-red-bg);
    color: var(--icon-red-text);
}

/* --- SLEEK FORM INPUTS --- */
.sleek-input {
    background-color: #f4f7fa;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13.5px;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.sleek-input:focus {
    background-color: #fff;
    border-color: var(--petronas-green);
    box-shadow: 0 0 0 4px rgba(255, 86, 86, 0.15);
    outline: none;
}

.sleek-input::placeholder {
    color: #999;
}

.sleek-input-footer {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 13px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.sleek-input-footer:focus {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    color: #ffffff;
    outline: none;
}

.sleek-input-footer::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

/* --- HERO SECTION SLIDER ENGINE & FULL CONTINUOUS LOGO GRADIENT --- */
.herohome-slider-wrapper {
    margin-top: 85px;
    position: relative;
    overflow: hidden;
    background: #121212;
}

@media (max-width: 991px) {
    .herohome-slider-wrapper {
        margin-top: 75px;
    }
}

.heroSwiper {
    width: 100%;
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 25px 0;
}

/* Background Photo removed as requested */
.hero-slide-bg {
    display: none !important;
}

/* Brand Logo Full-Span Continuous Gradient Background (#00a651 -> #2563eb -> #9333ea -> #f97316) */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    z-index: 1;
    pointer-events: none;
}

/* Luminous Accent Geometric Divider Lines */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 86, 86, 0.6);
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 86, 86, 0.7));
    opacity: 0.95;
    pointer-events: none;
}

/* ================= SLIDE 1: CLEAN STRAIGHT DIAGONAL LINE ================= */
.hero-slide-1::after {
    clip-path: polygon(55% 0, 55.6% 0, 49.6% 100%, 49% 100%);
}

/* ================= SLIDE 2: K-TYPE / CHEVRON NOTCH LINE ================= */
.hero-slide-2::after {
    clip-path: polygon(56.5% 0, 57.2% 0, 51.7% 50%, 57.2% 100%, 56.5% 100%, 51% 50%);
}

/* ================= SLIDE 3: S-TYPE STEPPED DUAL-ANGLE LINE ================= */
.hero-slide-3::after {
    clip-path: polygon(51.5% 0, 52.2% 0, 58.2% 35%, 52.2% 70%, 56.7% 100%, 56% 100%, 51.5% 70%, 57.5% 35%);
}

/* ================= SLIDE 4: CYBER DIAMOND / OCTAGONAL LINE ================= */
.hero-slide-4::after {
    clip-path: polygon(57.5% 0, 58.2% 0, 51.2% 35%, 51.2% 65%, 57.7% 100%, 57% 100%, 50.5% 65%, 50.5% 35%);
}

@media (max-width: 991px) {
    .hero-slide {
        min-height: auto;
        padding: 20px 0 25px;
        text-align: center;
    }

    .hero-slide h1 {
        font-size: 1.8rem;
    }

    .hero-slide::after {
        display: none !important;
    }
}

/* ====================================================
   HERO 100% FULL-WIDTH SLEEK BOTTOM CONTROLS LINE BAR
   ==================================================== */
.hero-bottom-full-bar {
    width: 100%;
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-controls-dock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0 auto;
}

/* Micro Arrow Buttons */
.hero-control-btn {
    position: static !important;
    transform: none !important;
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 9px;
    transition: all 0.2s ease;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.hero-control-btn:hover {
    color: #ffffff;
    transform: scale(1.25) !important;
}

.hero-control-btn:active {
    transform: scale(0.9) !important;
}

.hero-control-btn.swiper-button-disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

/* Middle Pagination Dots */
.hero-swiper-pagination {
    position: static !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px;
    margin: 0 4px !important;
    padding: 0 !important;
    height: auto;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    margin: 0 !important;
    border: none;
}

.hero-swiper-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.2);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
    height: 5px;
    border-radius: 3px;
    background: #ffffff !important;
    opacity: 1 !important;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.95);
}

@media (max-width: 576px) {
    .hero-bottom-full-bar {
        padding: 8px 0;
    }

    .hero-controls-dock {
        gap: 8px;
    }

    .hero-control-btn {
        width: 14px;
        height: 14px;
        min-width: 14px;
        font-size: 8px;
    }

    .hero-swiper-pagination .swiper-pagination-bullet-active {
        width: 12px;
    }
}

/* Left Column Typography & Slide Utility Styles */
.hero-slide .col-lg-6 h1,
.hero-slide .col-lg-6 h2,
.hero-slide .col-lg-6 h3,
.hero-slide .col-lg-6 h4 {
    color: #ffffff !important;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-slide .col-lg-6 p,
.hero-slide .lead-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.herohome-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 11.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-matrix-card {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-matrix-card i {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.95;
    flex-shrink: 0;
}

.hero-matrix-card:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Right Column Lead Form Card */
.herohome-form-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    padding: 26px 24px 22px !important;
    text-align: left;
    position: relative;
    z-index: 4;
    overflow: hidden;
}

.herohome-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff5656 0%, #ff7a70 100%);
}

.herohome-form-card .c-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.herohome-form-card .c-icon-sm.c-blue {
    background: rgba(255, 86, 86, 0.12);
    color: #ff5656;
}

.herohome-form-card .c-icon-sm.c-green {
    background: rgba(37, 211, 102, 0.12);
    color: #16a34a;
}

.herohome-form-card .c-icon-sm.c-purple {
    background: rgba(139, 92, 246, 0.12);
    color: #7c3aed;
}

.herohome-form-card .c-icon-sm.c-orange {
    background: rgba(249, 115, 22, 0.12);
    color: #ea580c;
}

.herohome-form-card h4 {
    color: #111827 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.2px;
}

.herohome-form-card .form-subtitle {
    font-size: 11.5px !important;
    color: #64748b !important;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

/* Crisp, clearly visible inputs with proper padding and clean borders */
.herohome-form-card .sleek-input,
.herohome-form-card .form-control,
.herohome-form-card .form-select {
    background-color: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    padding: 10px 14px !important;
    height: 44px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
}

.herohome-form-card .sleek-input::placeholder,
.herohome-form-card .form-control::placeholder {
    color: #94a3b8 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
}

.herohome-form-card .sleek-input:focus,
.herohome-form-card .form-control:focus,
.herohome-form-card .form-select:focus {
    background-color: #ffffff !important;
    border-color: #ff5656 !important;
    box-shadow: 0 0 0 3.5px rgba(255, 86, 86, 0.18) !important;
    outline: none !important;
}

.herohome-form-card .form-group-item {
    margin-bottom: 11px;
}

.herohome-form-card .btn-submit-hero,
.herohome-form-card .btn-green {
    background: #ff5656 !important;
    background: linear-gradient(135deg, #ff5656 0%, #e63946 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    border-radius: 10px !important;
    height: 46px !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 6px 18px rgba(255, 86, 86, 0.35) !important;
    transition: all 0.25s ease !important;
    width: 100% !important;
    margin-top: 4px;
}

.herohome-form-card .btn-submit-hero:hover,
.herohome-form-card .btn-green:hover {
    background: linear-gradient(135deg, #e63946 0%, #c9182b 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255, 86, 86, 0.5) !important;
}

.herohome-form-card .form-disclaimer {
    font-size: 10.5px !important;
    color: #94a3b8 !important;
    text-align: center;
    line-height: 1.45;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Explore CTA button in Hero Section */
.btn-hero-call,
.hero-slide .col-lg-6 .btn-hero-call {
    background: #ff5656 !important;
    background: linear-gradient(135deg, #ff5656 0%, #e63946 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    padding: 9px 24px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(255, 86, 86, 0.45) !important;
    transition: all 0.25s ease !important;
}

.btn-hero-call:hover,
.hero-slide .col-lg-6 .btn-hero-call:hover {
    background: #e02424 !important;
    background: linear-gradient(135deg, #e63946 0%, #c9182b 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 86, 86, 0.65) !important;
}

.btn-hero-call i {
    font-size: 14px;
    color: #ffffff !important;
}

.btn-hero-wa,
.hero-slide .col-lg-6 .btn-hero-wa {
    background: #25D366 !important;
    background: linear-gradient(135deg, #25D366 0%, #1ea952 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    padding: 9px 24px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.25s ease !important;
}

.btn-hero-wa:hover,
.hero-slide .col-lg-6 .btn-hero-wa:hover {
    background: #1eb956 !important;
    background: linear-gradient(135deg, #1ea952 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6) !important;
}

.btn-hero-wa i {
    font-size: 15px;
    color: #ffffff !important;
}

.lead-text {
    font-size: 15px;
    line-height: 1.6;
}

.fw-extrabold {
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Premium Avatar Rating Card */
.hero-rating-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-img-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -7px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 10.5px;
}

.avatar-img-circle:first-child {
    margin-left: 0;
}

.text-teal {
    color: var(--lockene-green);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.85);
}

.bg-white-10 {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Slide 2 Tech & Matrix Styles */
.badge-tech-cyan {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Slide Tech Matrix Cards - Frosted Modern Glassmorphism */
.hero-matrix-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-matrix-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transform: translateY(-3px) scale(1.02);
}

.hero-matrix-card i {
    margin-bottom: 0 !important;
    font-size: 15px;
    color: #ffffff !important;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-matrix-card .matrix-text {
    display: flex;
    flex-direction: column;
}

.hero-matrix-card .matrix-text h6 {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 2px;
}

.hero-matrix-card .matrix-text span {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 11.5px;
}

/* Slide 3 Stat Counter Boxes */
.stat-counter-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85) !important;
    text-transform: uppercase;
    font-weight: 600;
}

/* Slide 4 Eco Milestone Pills */
.eco-milestone-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.eco-milestone-pill span {
    color: #ffffff !important;
    font-weight: 700;
}

.eco-milestone-pill small {
    color: rgba(255, 255, 255, 0.85) !important;
}

.tech-dark-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08) !important;
}

.sleek-input-dark {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0F0F0F;
    font-size: 13.5px;
    border-radius: 8px;
    padding: 10px 14px;
}

.sleek-input-dark:focus {
    background-color: #fff;
    border-color: #ff5656;
    box-shadow: 0 0 0 3px rgba(255, 86, 86, 0.15);
    color: #0F0F0F;
    outline: none;
}

.sleek-input-dark::placeholder {
    color: #8892b0;
}

.btn-orange-glow {
    background: #ff5656;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange-glow:hover {
    background: #e64444;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 86, 86, 0.6);
}

/* Slide 3 Styles */
.badge-global-cyan {
    display: inline-block;
    background: rgba(255, 86, 86, 0.15);
    color: #ff5656;
    border: 1px solid rgba(255, 86, 86, 0.4);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.text-cyan-bright {
    color: #ff5656;
    text-shadow: 0 0 20px rgba(255, 86, 86, 0.4);
}

.pill-badge-cyan {
    background: rgba(255, 86, 86, 0.15);
    border: 1px solid rgba(255, 86, 86, 0.3);
    color: #ffffff;
    font-size: 11.5px;
    padding: 4px 12px;
    border-radius: 20px;
}

.btn-cyan-glow {
    background: #ff5656;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 13.5px;
}

.btn-cyan-glow:hover {
    background: #e64444;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 86, 86, 0.6);
}

.glass-navy-card {
    background: rgba(18, 18, 18, 0.88) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 86, 86, 0.3) !important;
}

.sleek-input-navy {
    background-color: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 86, 86, 0.25);
    color: #fff;
    font-size: 13.5px;
    border-radius: 6px;
    padding: 10px 14px;
}

.sleek-input-navy:focus {
    background-color: rgba(18, 18, 18, 0.9);
    border-color: #ff5656;
    box-shadow: 0 0 0 3px rgba(255, 86, 86, 0.2);
    color: #fff;
    outline: none;
}

.sleek-input-navy::placeholder {
    color: #8892b0;
}

.btn-cyan-btn {
    background: #ff5656;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-cyan-btn:hover {
    background: #e64444;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 86, 86, 0.6);
}

/* Slide 4 Styles */
.badge-eco-green {
    display: inline-block;
    background: rgba(255, 86, 86, 0.15);
    color: #ff5656;
    border: 1px solid rgba(255, 86, 86, 0.4);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.text-emerald-glow {
    color: #ff5656;
    text-shadow: 0 0 20px rgba(255, 86, 86, 0.4);
}

.text-emerald {
    color: #ff5656;
}

.eco-box {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 86, 86, 0.3);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.btn-emerald-pill {
    background: #ff5656;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 13.5px;
}

.btn-emerald-pill:hover {
    background: #e64444;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 86, 86, 0.6);
}

.eco-dark-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08) !important;
}

.sleek-input-eco {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0F0F0F;
    font-size: 13.5px;
    border-radius: 8px;
    padding: 10px 14px;
}

.sleek-input-eco:focus {
    background-color: #fff;
    border-color: #ff5656;
    box-shadow: 0 0 0 3px rgba(255, 86, 86, 0.15);
    color: #0F0F0F;
    outline: none;
}

.sleek-input-eco::placeholder {
    color: #94a3b8;
    opacity: 0.8;
}

.btn-emerald-btn {
    background: #ff5656 !important;
    color: #fff;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 86, 86, 0.35);
}

.btn-emerald-btn:hover {
    background: #e64444 !important;
    box-shadow: 0 6px 22px rgba(255, 86, 86, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Sleek Modern Light Patti Bar with Navigation & Lockene Gradient Active Dots */
.hero-swiper-patti-bar {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px) !important;
    border-top: 1px solid rgba(226, 232, 240, 0.8) !important;
    padding: 6px 0 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    z-index: 30 !important;
}

.hero-swiper-patti-bar .hero-swiper-prev,
.hero-swiper-patti-bar .hero-swiper-next {
    position: static !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: none !important;
    color: #475569 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-size: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    outline: none !important;
}

.hero-swiper-patti-bar .hero-swiper-prev:hover,
.hero-swiper-patti-bar .hero-swiper-next:hover {
    color: #ff5656 !important;
    transform: scale(1.2) !important;
}

.hero-swiper-patti-bar .hero-swiper-pagination {
    position: static !important;
    width: auto !important;
    background: transparent !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin: 0 !important;
}

.hero-swiper-patti-bar .hero-swiper-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    margin: 0 !important;
    background: #cbd5e1 !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: inline-block !important;
}

.hero-swiper-patti-bar .hero-swiper-pagination .swiper-pagination-bullet-active {
    width: 22px !important;
    height: 8px !important;
    border-radius: 6px !important;
    background: var(--lockene-gradient) !important;
    box-shadow: 0 2px 8px rgba(255, 86, 86, 0.4) !important;
    transform: scale(1) !important;
}

/* --- Ticker & Search --- */
.updates-ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    background: #fcfdfd;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.updates-ticker {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
    will-change: transform;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- ABOUT US SECTION --- */
.about-img-single {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.iso-badge-overlay {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    color: var(--text-main);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.exp-badge-overlay {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--petronas-dark);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

@media (max-width: 768px) {
    .iso-badge-overlay {
        left: 10px;
        bottom: -10px;
    }

    .exp-badge-overlay {
        right: 10px;
        top: -10px;
    }
}

/* --- INTERACTIVE DOTTED WORLD MAP & LOCATION PINS --- */
.global-dotted-map-container {
    width: 100%;
    position: relative;
    user-select: none;
}

.global-dotted-map-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Location Pin Markers */
.global-map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 10;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.global-map-pin:hover {
    z-index: 20;
}

.pin-marker {
    width: 22px;
    height: 22px;
    background: #ff5656;
    color: #ffffff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 86, 86, 0.4);
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.pin-marker i {
    transform: rotate(45deg);
    font-size: 10px;
}

.global-map-pin:hover .pin-marker,
.global-map-pin.active .pin-marker {
    background: #e64444;
    transform: rotate(-45deg) scale(1.2);
    box-shadow: 0 6px 16px rgba(255, 86, 86, 0.6);
}

/* Global HQ Special India Pin */
.hq-marker {
    background: #121212 !important;
    border-color: #ff5656 !important;
    position: relative;
}

.hq-ping-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #ff5656;
    animation: hqPulse 2s infinite ease-out;
}

@keyframes hqPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Pin Info Popup Card */
.global-pin-card {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.9);
    width: 210px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 25;
}

.global-pin-card::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

/* Hover & Active Tooltip Visibility */
.global-map-pin:hover .global-pin-card,
.global-map-pin.active .global-pin-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.hq-card {
    border-color: var(--petronas-green);
}

/* --- Slim Services Grid --- */
.slim-service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slim-service-card:hover {
    border-color: var(--petronas-green);
    box-shadow: 0 10px 20px rgba(255, 86, 86, 0.12);
    transform: translateY(-4px);
}

.slim-service-card h4 {
    font-size: 15px;
    margin: 12px 0 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.slim-service-card p {
    font-size: 13px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.slim-service-card a {
    font-size: 12px;
    font-weight: 600;
    color: var(--petronas-green);
    text-decoration: none;
}

/* --- Slim Project Cards --- */
.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
    display: block;
    text-decoration: none;
    border: 1px solid var(--border-color);
    background: #000;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
}

.project-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: all 0.3s ease;
}

.project-category {
    background: var(--petronas-green);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.project-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.project-client {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin-bottom: 0;
}

/* 4-column layout: slightly reduced height */
@media (min-width: 1200px) {
    .projectSwiper .project-card {
        height: 240px;
    }

    .project-overlay {
        padding: 15px;
    }
}

/* --- Gallery Photo Grid Cards --- */
.gallery-img-wrapper {
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-img-wrapper:hover {
    transform: translate3d(0, -5px, 0) scale3d(1.02, 1.02, 1);
    box-shadow: 0 16px 36px rgba(255, 86, 86, 0.18), 0 8px 18px rgba(18, 18, 18, 0.08) !important;
}

.gallery-img-wrapper img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-img-wrapper:hover img {
    transform: scale3d(1.08, 1.08, 1);
}

.gallery-overlay-zoom {
    pointer-events: none;
    transition: opacity 0.35s ease !important;
}

.gallery-img-wrapper:hover .gallery-overlay-zoom {
    opacity: 1 !important;
}

/* --- SPLIT-LAYOUT TESTIMONIALS SECTION --- */
.slim-testimonial-card {
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--theme-secondary);
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    font-size: 13px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    backface-visibility: hidden;
    will-change: transform, box-shadow;
}

.slim-testimonial-card:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 18px 36px rgba(255, 86, 86, 0.15), 0 8px 20px rgba(18, 18, 18, 0.06);
    border-top-color: var(--theme-primary);
    border-color: rgba(255, 86, 86, 0.4);
}

/* --- CLASSIC BLOG SLIDER CARDS --- */
.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 86, 86, 0.12);
    border-color: rgba(255, 86, 86, 0.35);
}

.img-wrapper {
    overflow: hidden;
    width: 100%;
}

.blog-img {
    width: 100%;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
}

.blog-content h5 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.blog-content p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

.blog-content a {
    margin-top: auto;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: var(--petronas-green);
}

/* --- CUSTOM SLIDER BUTTONS & SPACING --- */
.custom-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    position: relative;
    z-index: 100 !important;
}

.custom-prev {
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-muted);
}

.custom-prev:hover {
    border-color: var(--petronas-green);
    color: var(--petronas-green);
    box-shadow: 0 4px 10px rgba(255, 86, 86, 0.15);
}

.custom-next {
    background: var(--petronas-green);
    color: white;
    border: 1px solid var(--petronas-green);
    box-shadow: 0 4px 10px rgba(255, 86, 86, 0.25);
}

.custom-next:hover {
    background: var(--petronas-dark);
    border-color: var(--petronas-dark);
}

.projectSwiper,
.videoSwiper,
.blogSwiper,
.articleSwiper {
    padding-bottom: 50px !important;
}

/* Testimonial swiper — keep clipped, use col padding for shadow breathing room */
.splitTestiSwiper {
    overflow: hidden;
    padding: 0 0 8px 0 !important;
}

.splitTestiSwiper .swiper-wrapper {
    padding: 6px 0 10px 0;
}

.swiper-pagination {
    bottom: 0 !important;
    position: absolute;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #bbb;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 16px;
    border-radius: 4px;
    background: var(--petronas-green) !important;
    opacity: 1;
}

/* --- INFINITE CLIENT LOGO SLIDER (CLEAN LIGHT GRADIENT WITH 3D DECK) --- */
.client-section {
    padding: 24px 0 35px;
    border-bottom: 1px solid var(--theme-border);
    border-top: 1px solid var(--theme-border);
    overflow: hidden;
    background: var(--theme-gradient-subtle);
    position: relative;
}

.client-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--theme-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1.6px;
    display: inline-block;
}

.clientSwiper {
    padding: 12px 0 24px 0 !important;
    overflow: hidden !important;
}

.clientSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.clientSwiper .swiper-slide {
    width: auto !important;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

/* 3D Stacked Container Wrapper */
.client-logo-3d-wrapper {
    position: relative;
    width: 165px;
    height: 72px;
    margin: 0 6px;
    cursor: pointer;
    perspective: 1000px;
    flex-shrink: 0;
}

/* Layer 3: Backmost Stacked Card */
.card-layer-back {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    border-radius: 18px;
    z-index: 1;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Layer 2: Middle Stacked Card */
.card-layer-middle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 18px;
    z-index: 2;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Layer 1: Front Logo Card */
.client-logo-card-front {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    z-index: 3;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 3D Hover Pop */
.client-logo-3d-wrapper:hover .client-logo-card-front {
    transform: translate(-4px, -4px) rotate(-1.5deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    border-color: #ff5656;
}

.client-logo-3d-wrapper:hover .card-layer-middle {
    background: #fff5f2;
    border-color: rgba(255, 86, 86, 0.3);
    transform: translate(1px, 1px);
}

.client-logo-3d-wrapper:hover .card-layer-back {
    background: #ffebe6;
    border-color: rgba(255, 86, 86, 0.2);
    transform: translate(2px, 2px);
}

.client-logo-img {
    max-height: 40px;
    max-width: 115px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo-3d-wrapper:hover .client-logo-img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .client-logo-3d-wrapper {
        width: 130px;
        height: 56px;
        margin: 0 4px;
    }

    .client-logo-card-front {
        padding: 6px 12px;
        border-radius: 14px;
    }

    .card-layer-middle,
    .card-layer-back {
        border-radius: 14px;
    }

    .client-logo-img {
        max-height: 28px;
        max-width: 85px;
    }
}

/* --- FLOATING ACTIONS --- */
.side-contact-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--petronas-green);
    color: white;
    z-index: 1050 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border-radius: 6px 0 0 6px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.side-contact-btn:hover {
    background: var(--petronas-dark);
    padding-right: 14px;
    color: #fff;
}

.side-contact-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    margin-top: 6px;
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--petronas-dark);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1040;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--petronas-green);
    color: #fff;
    transform: translateY(-3px);
}

.floating-wa {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 1040;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    color: #fff;
}

/* --- Global Buttons --- */
.btn-slim {
    padding: 7px 18px !important;
    font-size: 13px !important;
    font-weight: 600;
    border-radius: 50px !important;
    margin: 0;
}

.btn-green {
    background: #ff5656 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 7px 18px !important;
    box-shadow: 0 3px 10px rgba(255, 86, 86, 0.25) !important;
    transition: all 0.3s ease;
    margin: 0;
}

.btn-green:hover {
    background: #e64444 !important;
    box-shadow: 0 6px 16px rgba(255, 86, 86, 0.35) !important;
    transform: translateY(-1px);
    color: #ffffff !important;
}

.btn-outline-slim {
    border: 1px solid var(--border-color);
    color: var(--text-main);
    background: #fff;
    border-radius: 50px !important;
    padding: 7px 18px !important;
    margin: 0;
}

.btn-outline-slim:hover {
    border-color: #121212;
    color: #ff5656;
}

/* --- FOOTER (EXCLUSIVE DEEP BLACK BACKGROUND) --- */
footer {
    background-color: var(--footer-black) !important;
    font-size: 13px;
    color: #ffffff;
    border-top: 3px solid transparent !important;
    border-image: var(--lockene-gradient-h) 1 !important;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* --- ARTICLE CARDS (Regulatory Updates Section) --- */
.article-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 86, 86, 0.12);
    border-color: rgba(255, 86, 86, 0.35);
}

.article-card-inner {
    padding: 25px;
}

.article-date {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--petronas-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 10px;
}

.article-excerpt {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--petronas-green);
    text-decoration: none;
    transition: gap 0.2s;
}

.article-link:hover {
    color: var(--petronas-dark);
}

/* --- ARTICLE SWIPER --- */
.articleSwiper {
    padding-bottom: 50px !important;
}

/* --- PROCESS STEP CARDS (How It Works) --- */
.process-step-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.process-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--petronas-green);
    box-shadow: 0 15px 35px rgba(255, 86, 86, 0.12);
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--petronas-green), var(--petronas-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.process-step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: rgba(255, 86, 86, 0.1);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* --- ACCORDION FAQ OVERRIDES --- */
.accordion-button:not(.collapsed) {
    color: var(--petronas-green);
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2314637b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 576px) {
    .herohome-form-card {
        padding: 20px;
    }

    .about-img-single {
        height: 260px;
    }

    .project-card {
        height: 230px;
    }

    .process-step-card {
        padding: 25px 20px;
    }

    .step-number {
        font-size: 32px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .globe-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .herohome {
        padding: 50px 0 40px;
    }
}

/* ====================================================
   COMPLIANCE DISCOVERY ENGINE & GRID CARDS
   ==================================================== */
.compliance-discovery-section {
    background-color: var(--light-gray);
    position: relative;
}

/* Top Search Bar with Teal Focus Glow */
/* Right-Fixed Search Bar with Petronas Focus Glow */
.compliance-search-wrapper {
    max-width: 320px;
}

.compliance-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--petronas-green);
    font-size: 13.5px;
    z-index: 5;
}

.compliance-search-input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 7px 14px 7px 36px;
    font-size: 12.5px;
    height: 38px;
    color: var(--text-main);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.compliance-search-input:focus {
    background: #ffffff;
    border-color: var(--petronas-green);
    box-shadow: 0 0 0 3px rgba(255, 86, 86, 0.15);
    outline: none;
}

.compliance-search-input::placeholder {
    color: #94a3b8;
}

/* Category Filter Buttons (Matched 100% to Website Button System) */
.compliance-tab-btn {
    background: #ffffff;
    color: var(--petronas-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 12.5px;
    padding: 7px 16px;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    white-space: nowrap;
}

.compliance-tab-btn:hover {
    border-color: var(--petronas-green);
    color: var(--petronas-green);
    background: #fff0ee;
}

.compliance-tab-btn.active {
    background: var(--petronas-green);
    color: #ffffff;
    border-color: var(--petronas-green);
    box-shadow: 0 4px 12px rgba(255, 86, 86, 0.25);
}

/* Main Grid Box Container */
.compliance-grid-box {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* Compliance Card Items */
.compliance-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.compliance-card-item:hover {
    transform: translateY(-4px);
    border-color: var(--theme-primary);
    box-shadow: 0 12px 28px rgba(255, 86, 86, 0.18);
}

.compliance-logo-box {
    width: 100%;
    height: 85px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 8px;
    transition: background 0.3s ease;
}

.compliance-card-item:hover .compliance-logo-box {
    background: #f0f9ff;
}

.compliance-card-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.35;
    font-family: 'Montserrat', sans-serif;
}

.compliance-logo-img {
    max-height: 55px;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.compliance-card-item:hover .compliance-logo-img {
    transform: scale(1.08);
}

/* Gallery Clean Photo Grid Styling */
.gallery-img-wrapper {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 86, 86, 0.15) !important;
}

.gallery-img-wrapper:hover img {
    transform: scale(1.06);
}

/* Section subtitles normal wrapping */
.section-title-sm~p,
.container p.text-muted {
    text-wrap: wrap;
}

/* ====================================================
   HIGH-IMPACT PAGE REFRESH & SCROLL ANIMATION ENGINE
   ==================================================== */

/* ====================================================
   60FPS HARDWARE ACCELERATED ULTRA-SMOOTH ANIMATIONS
   ==================================================== */

.reveal-on-scroll,
.process-step-card,
.blog-card,
.gallery-img-wrapper,
.article-card,
.slim-testimonial-card,
.compliance-card-item,
.herohome-badge,
.hero-matrix-card {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) !important;
}

/* Stagger delay helpers for grid items */
.stagger-1 {
    transition-delay: 0.06s !important;
}

.stagger-2 {
    transition-delay: 0.12s !important;
}

.stagger-3 {
    transition-delay: 0.18s !important;
}

.stagger-4 {
    transition-delay: 0.24s !important;
}

.stagger-5 {
    transition-delay: 0.30s !important;
}

.stagger-6 {
    transition-delay: 0.36s !important;
}

.stagger-7 {
    transition-delay: 0.42s !important;
}

.stagger-8 {
    transition-delay: 0.48s !important;
}

.stagger-9 {
    transition-delay: 0.54s !important;
}

.stagger-10 {
    transition-delay: 0.60s !important;
}

/* 60fps Smooth Card Elevate & Petronas Glow */
.process-step-card,
.blog-card,
.gallery-img-wrapper,
.article-card,
.slim-testimonial-card,
.compliance-card-item {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.process-step-card:hover,
.blog-card:hover,
.article-card:hover,
.slim-testimonial-card:hover,
.gallery-img-wrapper:hover,
.compliance-card-item:hover {
    transform: translate3d(0, -8px, 0) scale3d(1.02, 1.02, 1) !important;
    box-shadow: 0 20px 40px rgba(255, 86, 86, 0.18), 0 10px 25px rgba(18, 18, 18, 0.06) !important;
    border-color: rgba(255, 86, 86, 0.5) !important;
}

/* Smooth Image Scale on Hover */
.blog-card:hover img,
.gallery-img-wrapper:hover img,
.compliance-card-item:hover .compliance-logo-img {
    transform: scale3d(1.08, 1.08, 1) !important;
}

/* Continuous Floating Breathing Motion */
@keyframes floatY {

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

    50% {
        transform: translate3d(0, -6px, 0);
    }
}

.c-icon,
.iso-badge-overlay,
.exp-badge-overlay {
    animation: floatY 4s ease-in-out infinite;
}

/* ====================================================
   HYPER-ANIMATED PREMIUM VISUAL EFFECTS
   ==================================================== */

/* 1. Primary Button Shimmer Sweep Effect */
.btn-green {
    position: relative;
    overflow: hidden;
}

.btn-green::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 60%;
    height: 200%;
    background: linear-gradient(60deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 80%);
    transform: rotate(25deg);
    animation: buttonShimmer 3.8s infinite;
}

@keyframes buttonShimmer {
    0% {
        left: -70%;
    }

    25% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

/* 2. Floating WA & Side Contact Pulsing Glow */
@keyframes pulseGlowWA {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

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

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

.floating-wa {
    animation: pulseGlowWA 2.5s infinite;
}

@keyframes sideBtnGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 86, 86, 0.7);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(255, 86, 86, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 86, 86, 0);
    }
}

.side-contact-btn {
    animation: sideBtnGlow 3s infinite;
}

/* 3. Glowing Badge Pulse Border */
@keyframes badgeGlowPulse {

    0%,
    100% {
        border-color: rgba(255, 86, 86, 0.4);
        box-shadow: 0 0 10px rgba(255, 86, 86, 0.2);
    }

    50% {
        border-color: rgba(255, 86, 86, 0.9);
        box-shadow: 0 0 20px rgba(255, 86, 86, 0.4);
    }
}

.herohome-badge,
#why-choose-us .badge {
    animation: badgeGlowPulse 3s ease-in-out infinite;
}

/* --- Certification Verticals Cards --- */
.vertical-service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.vertical-service-card:hover {
    border-color: var(--theme-primary) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 28px rgba(255, 86, 86, 0.15) !important;
}

.vertical-explore-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--theme-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    margin-top: auto;
}

.vertical-explore-link:hover {
    color: var(--theme-secondary);
    transform: translateX(4px);
}

/* --- COMPLIANCE SERVICES INDEX TABLE (Full Width 100% Edge-to-Edge) --- */
.compliance-index-table {
    margin-bottom: 0 !important;
    border-collapse: collapse !important;
    width: 100% !important;
    border-left: none !important;
    border-right: none !important;
}

.compliance-index-table th {
    background: var(--theme-secondary) !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    text-align: center !important;
    padding: 16px 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    vertical-align: middle;
}

.compliance-index-table td {
    background-color: #ffffff !important;
    color: #1e293b !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-align: center !important;
    padding: 14px 12px !important;
    border: 1px solid var(--theme-border) !important;
    vertical-align: middle;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.compliance-index-table th:first-child,
.compliance-index-table td:first-child {
    border-left: none !important;
}

.compliance-index-table th:last-child,
.compliance-index-table td:last-child {
    border-right: none !important;
}

.compliance-index-table tbody tr:hover td {
    background-color: #fff9f6 !important;
    color: var(--theme-primary) !important;
}

@media (max-width: 991px) {
    .compliance-index-table th {
        font-size: 12px !important;
        padding: 12px 10px !important;
    }

    .compliance-index-table td {
        font-size: 11.5px !important;
        padding: 11px 8px !important;
    }
}





/* ============================================================
   SOCIAL MEDIA SECTION — INSTAGRAM + LINKEDIN CARDS
   ============================================================ */

/* Card Container */
.social-card-wrap {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ---- Shared Top Bar ---- */
.sc-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid #efefef;
    background: #fff;
}

.sc-insta-topbar {
    border-bottom-color: #dbdbdb;
}

.sc-li-topbar {
    border-bottom-color: #e0dfdc;
    background: #fff;
}

.sc-topbar-name {
    font-size: 15px;
    font-weight: 700;
    color: #262626;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sc-icon {
    font-size: 17px;
    color: #444;
    cursor: pointer;
}

.li-logo-box {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #0a66c2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Instagram Profile Row ---- */
.sc-profile-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 16px 8px;
    background: #fff;
}

.sc-story-ring {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    background: #f5f5f5;
}

.sc-stats {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sc-stat-n {
    font-size: 16px;
    font-weight: 700;
    color: #262626;
    line-height: 1.2;
}

.sc-stat-l {
    font-size: 12px;
    color: #737373;
}

/* Bio */
.sc-bio {
    padding: 4px 16px 10px;
    background: #fff;
}

.sc-bio-name {
    font-size: 13px;
    font-weight: 700;
    color: #262626;
    margin: 0 0 3px;
}

.sc-bio-desc {
    font-size: 12px;
    color: #262626;
    line-height: 1.55;
    margin: 0;
}

/* Story Highlights */
.sc-highlights {
    display: flex;
    gap: 16px;
    padding: 8px 16px 12px;
    background: #fff;
    border-bottom: 1px solid #efefef;
    overflow-x: auto;
    scrollbar-width: none;
}

.sc-highlights::-webkit-scrollbar {
    display: none;
}

.sc-hl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    cursor: pointer;
}

.sc-hl-ring {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid #dbdbdb;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.sc-hl-item:hover .sc-hl-ring {
    border-color: #dc2743;
}

.sc-hl-item span {
    font-size: 10px;
    color: #262626;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Photo Grid */
.sc-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #fff;
}

.sc-photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.sc-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.sc-photo-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.44);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.25s;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.sc-photo-item:hover img {
    transform: scale(1.06);
}

.sc-photo-item:hover .sc-photo-hover {
    opacity: 1;
}

/* Button Row */
.sc-btn-row {
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #efefef;
    margin-top: auto;
}

/* ---- LinkedIn Company Card ---- */
.li-co-card {
    background: #fff;
    border-bottom: 1px solid #e0dfdc;
}

.li-co-banner {
    height: 65px;
    background: linear-gradient(135deg, #121212 0%, #2a2a2a 100%);
}

.li-co-body {
    padding: 0 14px 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.li-co-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 3px solid #fff;
    background: #fff;
    margin-top: -26px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.li-co-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.li-co-info {
    padding-top: 6px;
    min-width: 0;
}

.li-co-name {
    font-size: 15px;
    font-weight: 700;
    color: #191919;
    margin: 0 0 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-co-tag {
    font-size: 12px;
    color: #555;
    margin: 0 0 3px;
}

.li-co-meta {
    font-size: 11px;
    color: #666;
    margin: 0;
}

.li-sm-follow-btn {
    background: transparent;
    border: 1.5px solid #0a66c2;
    color: #0a66c2 !important;
    border-radius: 16px;
    padding: 3px 12px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-sm-follow-btn:hover {
    background: rgba(10, 102, 194, 0.08);
}

.li-sm-visit-btn {
    background: transparent;
    border: 1.5px solid #666;
    color: #555 !important;
    border-radius: 16px;
    padding: 3px 12px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-sm-visit-btn:hover {
    border-color: #333;
    color: #333 !important;
}

/* ---- LinkedIn Feed ---- */
.li-co-feed {
    display: flex;
    flex-direction: column;
    background: #f3f2ef;
    padding: 6px;
    gap: 6px;
    flex: 1;
}

.li-feed-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0dfdc;
    overflow: hidden;
}

.li-fc-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px 6px;
}

.li-fc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0077b5, #0a66c2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-av-green {
    background: linear-gradient(135deg, #06a04a, #038a3e) !important;
}

.li-fc-meta {
    flex: 1;
    min-width: 0;
}

.li-fc-name {
    font-size: 13px;
    font-weight: 700;
    color: #191919;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-fc-degree {
    font-size: 11px;
    color: #0a66c2;
    font-weight: 600;
}

.li-fc-title {
    font-size: 11.5px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.li-fc-time {
    font-size: 11px;
    color: #999;
    margin-top: 1px;
}

.li-fc-more {
    color: #666;
    font-size: 15px;
    cursor: pointer;
    padding: 2px;
}

.li-fc-text {
    padding: 2px 14px 10px;
    font-size: 13px;
    line-height: 1.55;
    color: #191919;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-fc-tags {
    color: #0a66c2;
    font-size: 12px;
}

.li-fc-reactions {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px 8px;
    border-bottom: 1px solid #e0dfdc;
}

.li-em {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    margin-left: -3px;
}

.li-em:first-child {
    margin-left: 0;
}

.li-fc-rc {
    font-size: 12px;
    color: #666;
}

.li-fc-actions {
    display: flex;
    padding: 3px 6px;
}

.li-fc-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #666;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 7px 2px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: background 0.15s, color 0.15s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-fc-btn:hover {
    background: #f3f2ef;
    color: #191919;
}

/* Interactive Global Map Component */
.global-map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(circle at center, #1e1e1e 0%, #121212 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    padding: 40px 20px;
}

.global-map-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-pin:hover {
    transform: translate(-50%, -55%) scale(1.08);
    z-index: 20;
}

.map-pin-pulse {
    width: 16px;
    height: 16px;
    background: #ff5656;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 16px #ff5656;
}

.map-pin-pulse.hq-pin {
    background: #ff5656;
    box-shadow: 0 0 18px #ff5656;
}

.map-pin-pulse::after {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    border: 2px solid #ff5656;
    border-radius: 50%;
    top: -9px;
    left: -9px;
    animation: mapPinPulseAnim 2s infinite ease-out;
}

.map-pin-pulse.hq-pin::after {
    border-color: #ff4757;
}

@keyframes mapPinPulseAnim {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.map-pin-card {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #0F0F0F;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-pin-card::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

/* Responsive */
@media (max-width: 767px) {
    .sc-stats {
        gap: 14px;
    }

    .sc-story-ring {
        width: 64px;
        height: 64px;
    }

    .sc-avatar {
        width: 58px;
        height: 58px;
    }
}



.social-split-section {
    display: block;
    width: 100%;
    overflow: hidden;
}

/* ======= INSTAGRAM PANEL ======= */
.insta-app-panel {
    background: #fafafa;
    border-right: 1px solid #dbdbdb;
}

.insta-app-chrome {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Top bar */
.insta-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 1px solid #dbdbdb;
    position: sticky;
    top: 0;
    z-index: 2;
}

.insta-topbar-username {
    font-size: 16px;
    font-weight: 700;
    color: #262626;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insta-app-logo {
    display: flex;
    align-items: center;
}

/* Profile */
.insta-profile-section {
    background: #fff;
    padding: 16px 16px 10px;
    border-bottom: 1px solid #efefef;
}

.insta-profile-avatar-wrap {
    flex-shrink: 0;
}

.insta-story-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-profile-avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    background: #f5f5f5;
}

.insta-profile-stats {
    display: flex;
    gap: 24px;
    flex: 1;
}

.insta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insta-stat-num {
    font-size: 16px;
    font-weight: 700;
    color: #262626;
    line-height: 1.2;
}

.insta-stat-label {
    font-size: 12px;
    color: #737373;
}

.insta-bio-name {
    font-size: 13px;
    font-weight: 700;
    color: #262626;
    margin: 0 0 2px;
}

.insta-bio-desc {
    font-size: 12px;
    color: #262626;
    line-height: 1.5;
    margin: 0;
}

/* Story Highlights */
.insta-highlights-row {
    display: flex;
    gap: 14px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.insta-highlights-row::-webkit-scrollbar {
    display: none;
}

.insta-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    cursor: pointer;
}

.insta-highlight-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #dbdbdb;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.insta-highlight-item:hover .insta-highlight-circle {
    border-color: #dc2743;
}

.insta-highlight-item span {
    font-size: 10px;
    color: #262626;
    text-align: center;
}

/* Post Grid */
.insta-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 3px;
    flex: 1;
}

.insta-grid-post {
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    overflow: hidden;
}

.insta-grid-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.insta-post-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    opacity: 0;
    transition: opacity 0.25s ease;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.insta-grid-post:hover img {
    transform: scale(1.06);
}

.insta-grid-post:hover .insta-post-hover {
    opacity: 1;
}

/* Follow bar */
.insta-follow-bar {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #efefef;
}

.insta-follow-btn {
    flex: 1;
    background: #0095f6;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insta-follow-btn:hover {
    background: #1aa3ff;
}

.insta-message-btn {
    flex: 1;
    background: #efefef;
    color: #262626 !important;
    border: none;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insta-message-btn:hover {
    background: #dbdbdb;
}

/* ======= LINKEDIN PANEL ======= */
.li-app-panel {
    background: #f3f2ef;
}

.li-app-chrome {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* LinkedIn Top Bar */
.li-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 1px solid #e0dfdc;
    position: sticky;
    top: 0;
    z-index: 2;
}

/* Company Card */
.li-company-card {
    background: #fff;
    margin: 8px;
    border-radius: 10px;
    border: 1px solid #e0dfdc;
    overflow: hidden;
}

.li-company-banner {
    height: 70px;
    background: linear-gradient(135deg, #121212 0%, #2a2a2a 100%);
}

.li-company-body {
    padding: 0 16px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.li-company-logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 3px solid #fff;
    background: #fff;
    margin-top: -28px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.li-company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.li-company-info {
    padding-top: 8px;
    flex: 1;
    min-width: 0;
}

.li-company-name {
    font-size: 15px;
    font-weight: 700;
    color: #191919;
    margin: 0 0 2px;
}

.li-company-tagline {
    font-size: 12px;
    color: #666;
    margin: 0 0 4px;
}

.li-company-meta {
    font-size: 11.5px;
    color: #666;
    margin: 0;
}

.li-follow-btn {
    background: transparent;
    border: 1.5px solid #0a66c2;
    color: #0a66c2 !important;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-follow-btn:hover {
    background: rgba(10, 102, 194, 0.08);
}

.li-visit-btn {
    background: transparent;
    border: 1.5px solid #666;
    color: #666 !important;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-visit-btn:hover {
    border-color: #333;
    color: #333 !important;
}

/* Feed */
.li-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 8px;
    flex: 1;
    overflow: hidden;
}

/* Post Card */
.li-post-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0dfdc;
    overflow: hidden;
}

.li-post-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px 8px;
}

.li-post-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077b5, #0a66c2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-avatar-green {
    background: linear-gradient(135deg, #06a04a, #038a3e) !important;
}

.li-post-meta {
    flex: 1;
    min-width: 0;
}

.li-post-author {
    font-size: 13.5px;
    font-weight: 700;
    color: #191919;
}

.li-degree {
    font-size: 11px;
    color: #0a66c2;
    font-weight: 600;
}

.li-post-title-meta {
    font-size: 11.5px;
    color: #666;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.li-post-time {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.li-post-more {
    color: #666;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
}

.li-post-text {
    padding: 0 16px 10px;
    font-size: 13px;
    line-height: 1.6;
    color: #191919;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-hashtags {
    color: #0a66c2;
    font-size: 12.5px;
}

/* Reactions */
.li-post-reactions {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px 8px;
    border-bottom: 1px solid #e0dfdc;
}

.li-reaction-emojis {
    display: flex;
}

.li-emoji-bubble {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-left: -4px;
}

.li-emoji-bubble:first-child {
    margin-left: 0;
}

.li-reaction-count {
    font-size: 12px;
    color: #666;
}

/* Action Buttons */
.li-post-actions {
    display: flex;
    align-items: center;
    padding: 4px 8px;
}

.li-action-btn {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background 0.15s, color 0.15s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-action-btn:hover {
    background: #f3f2ef;
    color: #191919;
}

/* LinkedIn Follow CTA Bar */
.li-follow-bar {
    padding: 12px 8px;
    background: #f3f2ef;
    border-top: 1px solid #e0dfdc;
    margin-top: auto;
}

.li-follow-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    background: #0a66c2;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.li-follow-bar-btn:hover {
    background: #004182;
    transform: translateY(-1px);
}

/* Clickable Social Cards Hover Animation */
.social-clickable-card {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.social-clickable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14) !important;
}

.social-clickable-card img {
    transition: transform 0.4s ease;
}

/* ====================================================
   MOBILE RESPONSIVENESS OVERRIDES & OPTIMIZATIONS
   ==================================================== */
@media (max-width: 991.98px) {

    /* Navbar Logo & Brand Scale */
    .navbar-brand img {
        max-height: 38px;
        width: auto;
    }

    /* Hero Section Slider Padding & Typography */
    .herohome-slider-wrapper {
        margin-top: 70px;
    }

    .hero-slide {
        min-height: auto;
        padding: 25px 0 35px;
        text-align: center;
    }

    .hero-slide h1 {
        font-size: clamp(1.2rem, 4.5vw, 1.75rem) !important;
        line-height: 1.3 !important;
    }

    .hero-matrix-card {
        padding: 8px 10px !important;
    }

    .herohome-form-card {
        margin-top: 20px;
        padding: 20px !important;
    }

    /* World Map Section Mobile Scaling */
    .global-dotted-map-container {
        aspect-ratio: 1.6 / 1 !important;
        min-height: 280px !important;
    }

    .global-map-pin .pin-marker {
        width: 22px !important;
        height: 22px !important;
        font-size: 10px !important;
    }

    .global-map-pin .badge {
        font-size: 8px !important;
        padding: 2px 5px !important;
        top: -15px !important;
    }

    .global-pin-card {
        min-width: 220px !important;
        padding: 10px !important;
        font-size: 11px !important;
    }

    /* Compliance Discovery Engine & Filter Buttons */
    .compliance-tab-btn {
        font-size: 11px !important;
        padding: 6px 12px !important;
        white-space: nowrap;
    }

    .compliance-search-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {

    /* Top Bar Mobile Layout */
    .top-bar {
        font-size: 10.5px !important;
        padding: 6px 0;
    }

    .top-bar .container {
        justify-content: center !important;
        gap: 6px !important;
        text-align: center;
    }

    /* Section Headers */
    h2,
    .h2 {
        font-size: 1.45rem !important;
    }

    .section-title-sm {
        font-size: 10px !important;
        letter-spacing: 1px !important;
    }

    /* Global Mobile Typography: Larger Justified Content */
    p,
    .text-muted,
    .module-card-desc,
    .service-core-desc,
    .why-feature-card p,
    .process-step-desc,
    .about-desc,
    .about-lead,
    .hero-desc,
    .faq-answer,
    .lead {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
        text-align: justify !important;
        text-justify: inter-word;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Section Subtitles / Intros on Mobile: Prominent & Justified */
    section h2+p,
    section .h2+p,
    .section-header p,
    p.text-muted[style*="max-width"],
    .section-title-sm+h2+p {
        font-size: 15px !important;
        line-height: 1.65 !important;
        text-align: justify !important;
        text-justify: inter-word;
        color: #475569 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Why Choose Us & About Us Section */
    .about-img-single {
        min-height: 260px !important;
        height: auto !important;
    }

    .iso-badge-overlay {
        bottom: 15px !important;
        left: 15px !important;
        padding: 8px 12px !important;
    }

    /* 5-Step Process Horizontal Stacking */
    .process-step-card {
        text-align: center !important;
        margin-bottom: 12px;
    }

    .process-step-card .c-icon {
        margin: 0 auto 10px !important;
    }

    /* Gallery & Portfolio Cards */
    .gallery-img-wrapper {
        height: 140px !important;
    }

    /* Footer Spacing */
    footer {
        padding-top: 35px !important;
        text-align: center;
    }

    footer .col-lg-3,
    footer .col-lg-2,
    footer .col-lg-4 {
        margin-bottom: 25px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
    }
}

@media (max-width: 575.98px) {

    /* Mobile Extra Small Containers */
    .container,
    .container-fluid {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    /* World Map Extra Small Devices */
    .global-dotted-map-container {
        aspect-ratio: 1.3 / 1 !important;
        min-height: 240px !important;
    }

    .global-map-pin .pin-marker {
        width: 18px !important;
        height: 18px !important;
        font-size: 8px !important;
    }

    /* Discovery Engine 2-Columns */
    #complianceGridContainer {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
    }

    .compliance-card-item {
        padding: 12px 8px !important;
    }

    .compliance-card-title {
        font-size: 11px !important;
    }

    .compliance-logo-box {
        width: 44px !important;
        height: 44px !important;
    }

    /* Onload Popup Modal */
    #onloadPopupModal .modal-body {
        padding: 20px 15px !important;
    }
}

.social-clickable-card:hover img {
    transform: scale(1.05);
}

/* ====================================================
   PREMIUM MEETING MODAL FORM INPUTS
   ==================================================== */
.meeting-input {
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    padding: 10px 14px;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

.meeting-input:focus {
    border-color: var(--theme-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 86, 86, 0.15);
    outline: none;
    color: #0F0F0F;
}

.meeting-input::placeholder {
    color: #94a3b8;
    font-size: 12.5px;
}

.meeting-input option {
    color: #1e293b;
    background: #ffffff;
}

/* Ensure modal-lg is wide enough on mobile */
@media (max-width: 767.98px) {
    #scheduleMeetingModal .modal-dialog {
        margin: 10px;
    }

    #scheduleMeetingModal .modal-content {
        border-radius: 14px !important;
    }
}

/* ====================================================
   FULL-WIDTH reCAPTCHA SCALE WRAPPER
   ==================================================== */
.recaptcha-full-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    max-height: 40px;
    /* force single-line height */
}

.recaptcha-full-wrap .g-recaptcha {
    transform-origin: 0 0;
    display: block;
    width: 304px;
    /* fixed native reCAPTCHA width */
}

/* Ensure modal-lg is wide enough on mobile */
@media (max-width: 767.98px) {
    #scheduleMeetingModal .modal-dialog {
        margin: 10px;
    }

    #scheduleMeetingModal .modal-content {
        border-radius: 14px !important;
    }
}

/* ====================================================
   LIVE THEME CONTROLLER & COLOR CUSTOMIZER WIDGET
   ==================================================== */
.theme-customizer-wrap {
    position: fixed;
    bottom: 92px;
    left: 24px;
    z-index: 1060;
    font-family: 'Outfit', sans-serif;
}

.theme-toggle-btn {
    background: var(--theme-gradient) !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    padding: 9px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 86, 86, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.theme-toggle-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 28px rgba(255, 86, 86, 0.55);
}

.theme-panel {
    position: absolute;
    bottom: 55px;
    left: 0;
    width: 295px;
    background: #ffffff;
    border: 1px solid var(--theme-border);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
}

.theme-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.theme-preview-dots {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.theme-preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.theme-preset-btn {
    transition: all 0.2s ease;
    background: #ffffff;
}

.theme-preset-btn:hover,
.theme-preset-btn.active {
    border-color: var(--theme-secondary) !important;
    background: var(--theme-gradient-subtle) !important;
}

@media (max-width: 767.98px) {
    .theme-customizer-wrap {
        bottom: 15px;
        left: 15px;
    }

    .theme-panel {
        width: 270px;
    }
}

/* ====================================================
   FULL-WIDTH reCAPTCHA SCALE WRAPPER
   ==================================================== */
.recaptcha-full-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    max-height: 40px;
    /* force single-line height */
}

.recaptcha-full-wrap .g-recaptcha {
    transform-origin: 0 0;
    display: block;
    width: 304px;
    /* fixed native reCAPTCHA width */
}

/* ====================================================
   3-CARD CENTERED HIGHLIGHT TESTIMONIAL CAROUSEL
   ==================================================== */
.testimonial-swiper-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 20px;
}

.testimonialSwiper {
    width: 100%;
    padding: 25px 0 35px !important;
    overflow: visible !important;
}

.testimonialSwiper .swiper-slide {
    height: auto !important;
    display: flex;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, filter 0.45s ease;
    opacity: 0.55;
    transform: scale(0.92);
}

/* On large screens, highlight the center active slide */
@media (min-width: 992px) {
    .testimonialSwiper .swiper-slide-active {
        opacity: 1 !important;
        transform: scale(1.08) !important;
        z-index: 10;
    }
}

@media (max-width: 991px) {
    .testimonialSwiper .swiper-slide {
        opacity: 1 !important;
        transform: none !important;
    }
}

.testimonial-card-item {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Center Highlighted Card with Brand Gradient Border & Elevated Shadow */
.testimonialSwiper .swiper-slide-active .testimonial-card-item {
    background: #ffffff;
    border: 2px solid transparent !important;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, #ff5656 0%, #ff7373 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 20px 45px rgba(255, 86, 86, 0.18), 0 0 0 1px rgba(255, 86, 86, 0.15) !important;
}

.testi-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #0F0F0F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
}

.testi-nav-btn:hover {
    background: var(--lockene-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(255, 86, 86, 0.3);
}

.testi-pagination {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testi-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 6px;
    background: var(--lockene-gradient) !important;
    box-shadow: 0 2px 8px rgba(255, 86, 86, 0.35);
}

/* ====================================================
   PREMIUM CARD UI ARCHITECTURE (UNIQUE & MODERN CARDS)
   ==================================================== */

/* --- 1. DETAILED SERVICE MODULE CARDS --- */
.service-module-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px 28px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5656 0%, #ff7b72 100%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-module-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 86, 86, 0.35);
    box-shadow: 0 20px 45px rgba(255, 86, 86, 0.12), 0 4px 14px rgba(18, 18, 18, 0.04);
}

.service-module-card:hover::before {
    height: 5px;
    opacity: 1;
}

.service-module-card-wide {
    background: linear-gradient(180deg, #ffffff 0%, #fffbf9 100%);
}

.module-icon-hub {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease;
}

.service-module-card:hover .module-icon-hub {
    transform: scale(1.08) rotate(3deg);
}

.module-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0F0F0F;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.module-card-desc {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Tag Chips: Balanced 3-Column Structured Feature Strip */
.module-tags-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 22px;
    width: 100%;
}

.module-tag-chip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 11.5px;
    font-weight: 600;
    padding: 7px 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap !important;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.module-tag-chip i {
    color: #ff5656;
    font-size: 11px;
    flex-shrink: 0;
}

.module-tag-chip:hover {
    background: #fff5f2;
    border-color: rgba(255, 86, 86, 0.35);
    color: #ff5656;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 86, 86, 0.12);
}

/* Action Buttons: Balanced 2-Column Full-Width Grid */
.module-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
    width: 100%;
}

.btn-module-outline {
    border: 1.5px solid #121212;
    background: #121212;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 12px;
    padding: 7.5px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(18, 18, 18, 0.15);
}

.btn-module-outline:hover {
    background: #ff5656;
    color: #ffffff !important;
    border-color: #ff5656;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 86, 86, 0.35);
}

.btn-module-enquire {
    background: #ff5656 !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 12px;
    padding: 7.5px 14px !important;
    border-radius: 10px !important;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 3px 12px rgba(255, 86, 86, 0.28);
    border: none;
    margin: 0;
    white-space: nowrap !important;
}

.btn-module-enquire:hover {
    background: #e64444 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 86, 86, 0.38);
    color: #ffffff !important;
}

/* Mobile Responsiveness */
@media (max-width: 575.98px) {
    .service-module-card {
        padding: 20px 14px 18px;
    }

    .module-card-title {
        font-size: 14.5px;
    }

    .module-card-desc {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        margin-bottom: 16px;
    }

    .module-tags-row {
        gap: 5px;
        margin-bottom: 14px;
    }

    .module-tag-chip {
        font-size: 9.5px;
        padding: 5px 3px;
        gap: 3px;
        border-radius: 6px;
        white-space: nowrap !important;
    }

    .module-tag-chip i {
        font-size: 9px;
    }

    .module-btn-group {
        gap: 8px;
    }

    .btn-module-outline,
    .btn-module-enquire {
        font-size: 11px;
        padding: 7px 6px !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
    }
}

/* --- 2. WHAT WE DO SERVICE GRID CARDS --- */
.service-grid-card {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 18px;
    padding: 26px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-grid-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--lockene-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-grid-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 86, 86, 0.35);
    box-shadow: 0 16px 36px rgba(255, 86, 86, 0.12);
}

.service-grid-card:hover::after {
    opacity: 1;
}

.grid-icon-pod {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-grid-card:hover .grid-icon-pod {
    transform: scale(1.1) rotate(4deg);
}

.service-grid-btn {
    background: var(--theme-gradient);
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 86, 86, 0.25);
    transition: all 0.25s ease;
}

.service-grid-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 86, 86, 0.35);
    color: #ffffff !important;
}

.service-grid-btn i {
    transition: transform 0.2s ease;
}

.service-grid-btn:hover i {
    transform: translateX(3px);
}

/* --- 3. WHY LOCKENE FEATURE CARDS --- */
.why-feature-card {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 86, 86, 0.35);
    box-shadow: 0 18px 40px rgba(255, 86, 86, 0.12);
}

.why-feature-orange:hover {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.12);
}

.why-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.why-icon-pod {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-bottom: 0 !important;
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16.5px;
    font-weight: 800;
    color: #0F0F0F;
    margin-bottom: 0 !important;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.why-feature-card:hover .why-icon-pod {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 767.98px) {
    .why-feature-card {
        padding: 22px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .why-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-bottom: 14px;
        width: 100%;
        text-align: center;
    }

    .why-icon-pod {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 20px;
        border-radius: 12px;
    }

    .why-title {
        font-size: 18px !important;
        font-weight: 800 !important;
        letter-spacing: -0.3px;
        text-align: center;
    }

    .why-feature-card p {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        text-align: justify !important;
        text-justify: inter-word;
        width: 100% !important;
    }
}

/* --- 4. OUR MISSION & KEY STATS --- */
.mission-section-wrap {
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%) !important;
    position: relative;
    overflow: hidden;
}

.mission-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ffffff;
}

.mission-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 8px #ffffff;
    display: inline-block;
}

.mission-quote-heading {
    font-family: 'Montserrat', sans-serif !important;
    max-width: 860px;
    font-size: clamp(1.25rem, 2.3vw, 1.7rem) !important;
    line-height: 1.55 !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.mission-quote-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85em;
}

.stat-glass-card {
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-glass-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}

.stat-icon-pod {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.stat-icon-pod.c-green {
    color: #ff5656 !important;
}

.stat-icon-pod.c-blue {
    color: #ff5656 !important;
}

.stat-icon-pod.c-purple {
    color: #121212 !important;
}

.stat-icon-pod.c-orange {
    color: #ff5656 !important;
}

.stat-glass-card:hover .stat-icon-pod {
    transform: scale(1.12) rotate(4deg);
}

.stat-number {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 600;
    line-height: 1.4;
}


/* --- 5. CASE STUDY HIGHLIGHT CARD --- */
.case-study-highlight-card {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-left: 5px solid #ff5656;
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.case-study-highlight-card:hover {
    box-shadow: 0 16px 36px rgba(255, 86, 86, 0.1);
    transform: translateY(-2px);
}

/* --- 6. BRANCH OFFICE CARDS --- */
.branch-card {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.branch-card-nagpur::before {
    background: #ff5656;
}

.branch-card-mumbai::before {
    background: #121212;
}

.branch-card-delhi::before {
    background: #ff5656;
}

.branch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.branch-icon-sm {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.branch-contact-item {
    font-size: 13.5px;
    display: flex;
    align-items: center;
}

/* --- 7. CONTACT FORM CARD --- */
.contact-form-card {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lockene-gradient);
}

/* ====================================================
   8. DUAL-ACTION CTA BANNER (ROYAL BLUE GRADIENT THEME)
   ==================================================== */
.launch-wa-banner-section {
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%) !important;
    position: relative;
    overflow: hidden;
}

.launch-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
}

.launch-card:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.launch-badge {
    background: #ffedd5;
    border: 1px solid #fdba74;
    color: #c2410c;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.2);
}

.wa-channel-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
}

.wa-channel-card:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.wa-qr-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-wa-channel {
    background: #ffffff;
    color: #16a34a !important;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: none;
}

.btn-wa-channel:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
    color: #ffffff !important;
}

/* ====================================================
   9. YOUTUBE VIDEO SECTION CARDS
   ==================================================== */
.video-card {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 86, 86, 0.35);
    box-shadow: 0 18px 40px rgba(255, 86, 86, 0.15);
}

.video-thumb-wrapper {
    position: relative;
    height: 200px;
    background: #0f172a;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.video-card:hover .video-thumb-wrapper img {
    transform: scale(1.05);
    opacity: 0.95;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ff5656;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding-left: 3px;
    box-shadow: 0 0 25px rgba(255, 86, 86, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 35px rgba(255, 86, 86, 0.8);
}

.video-duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}

.video-card-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

/* ====================================================
   10. LATEST BLOGS & ARTICLES CARDS
   ==================================================== */
.blog-item-card {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-item-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 86, 86, 0.35);
    box-shadow: 0 18px 40px rgba(255, 86, 86, 0.15);
}

.blog-thumb {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item-card:hover .blog-thumb img {
    transform: scale(1.06);
}

.blog-category-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #121212;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.blog-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.blog-read-link {
    color: var(--theme-primary) !important;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-read-link:hover {
    gap: 10px;
    color: var(--theme-secondary) !important;
}

/* ====================================================
   PREMIUM OFFICE HUB CARDS & CONNECT BANNER
   ==================================================== */
.office-hub-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.office-hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: rgba(15, 23, 42, 0.16);
}

/* Top Accent Line */
.office-card-top-accent {
    height: 4px;
    width: 100%;
}

.office-card-header {
    padding: 20px 22px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.office-type-pill {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.office-type-pill i {
    margin-right: 5px;
}

.pill-success {
    background: rgba(255, 86, 86, 0.12);
    color: #ff5656;
    border: 1px solid rgba(255, 86, 86, 0.25);
}

.pill-primary {
    background: rgba(18, 18, 18, 0.08);
    color: #121212;
    border: 1px solid rgba(18, 18, 18, 0.2);
}

.pill-warning {
    background: rgba(255, 86, 86, 0.12);
    color: #ff5656;
    border: 1px solid rgba(255, 86, 86, 0.25);
}

.office-status-pill {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-dot-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(255, 86, 86, 0.25);
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {

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

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.office-card-body {
    padding: 20px 22px 18px;
    flex: 1;
}

.office-city-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.office-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.office-hub-card:hover .office-icon-wrap {
    transform: scale(1.12) rotate(4deg);
}

.office-role-subtitle {
    font-size: 12px;
    line-height: 1.45;
    min-height: 35px;
}

/* Contact Links Stack */
.office-contact-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.office-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.office-contact-link:hover {
    background: #ffffff;
    border-color: rgba(255, 86, 86, 0.35);
    box-shadow: 0 4px 12px rgba(255, 86, 86, 0.08);
    transform: translateX(4px);
}

.contact-icon-bubble {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Office Card Themed Colors */
.office-card-nagpur .office-icon-wrap,
.office-card-nagpur .contact-icon-bubble {
    background: #fff0ee !important;
    color: #ff5656 !important;
}

.office-card-mumbai .office-icon-wrap,
.office-card-mumbai .contact-icon-bubble {
    background: #f5f5f5 !important;
    color: #121212 !important;
}

.office-card-delhi .office-icon-wrap,
.office-card-delhi .contact-icon-bubble {
    background: #fff0ee !important;
    color: #ff5656 !important;
}

.contact-text-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.contact-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.4px;
}

.contact-value {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.contact-arrow {
    font-size: 11px;
    color: #cbd5e1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.office-contact-link:hover .contact-arrow {
    transform: translateX(3px);
    color: var(--theme-primary);
}

/* Card Footer WhatsApp Button */
.office-card-footer {
    padding: 14px 22px 18px;
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.btn-office-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 9px 16px;
    border-radius: 12px;
    background: #25D366;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 12.5px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: all 0.25s ease;
}

.btn-office-wa:hover {
    background: #1eb956;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Modern High-Converting Connect Waiting Banner */
.connect-waiting-banner {
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%) !important;
    border-radius: 20px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.connect-waiting-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.connect-banner-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5656 !important;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.connect-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.btn-connect-pill {
    white-space: nowrap !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.25s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-connect-call {
    background: #ffffff !important;
    color: #0F0F0F !important;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-connect-call:hover {
    background: #f1f5f9 !important;
    color: #0F0F0F !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn-connect-mail {
    background: transparent !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
}

.btn-connect-mail:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

@media (max-width: 575.98px) {
    .connect-btn-group {
        gap: 6px;
        width: 100%;
    }

    .btn-connect-pill {
        font-size: 11px;
        padding: 7px 10px;
        gap: 4px;
        flex: 1 1 0;
    }
}

/* ====================================================
   WHAT WE'RE OFFERING — COMPLIANCE CATALOG SECTION
   ==================================================== */
.offering-kicker-badge {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ff5656;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.offering-filter-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.offering-tab-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #555555;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 24px;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.offering-tab-btn:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0F0F0F;
    transform: translateY(-1px);
}

.offering-tab-btn.active {
    background: linear-gradient(135deg, #121212 0%, #222222 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(18, 18, 18, 0.25);
}

@media (max-width: 767.98px) {
    .offering-filter-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 10px !important;
        width: 100% !important;
        margin-bottom: 16px !important;
    }

    .offering-tab-btn {
        width: 100% !important;
        text-align: center;
        padding: 9px 8px !important;
        font-size: 11.5px !important;
        border-radius: 30px !important;
        white-space: nowrap !important;
        text-overflow: ellipsis;
        overflow: hidden;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 40px;
    }

    .offering-tab-btn[data-filter="all"] {
        grid-column: span 2;
        margin-bottom: 4px;
    }

    .offering-search-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        margin-top: 6px;
    }
}

.offering-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.offering-search-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #ff5656;
    font-size: 14px;
    pointer-events: none;
}

.offering-search-input {
    padding-left: 36px !important;
    border-radius: 8px !important;
    border: 1px solid #cbd5e1 !important;
    font-size: 13px !important;
    height: 38px !important;
    background: #ffffff !important;
    transition: all 0.25s ease;
}

.offering-search-input:focus {
    border-color: #ff5656 !important;
    box-shadow: 0 0 0 3px rgba(255, 86, 86, 0.15) !important;
}

/* Outer Catalog Frame */
.offering-catalog-frame {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
}

/* Service Core Card (Matching Reference Image 2) */
.service-core-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-core-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
    border-color: rgba(15, 23, 42, 0.16);
}

.service-core-body {
    margin-bottom: 18px;
}

.service-core-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-icon-square {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-icon-square i {
    font-size: 1.25rem;
}

.service-core-card:hover .service-icon-square {
    transform: scale(1.08);
    border-color: #ff5656;
    box-shadow: 0 4px 14px rgba(255, 86, 86, 0.18);
}

.service-core-logo-img {
    max-height: 34px;
    max-width: 38px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.service-core-card:hover .service-core-logo-img {
    transform: scale(1.05);
}

.core-icon-svg {
    height: 25px;
    width: auto;
    max-width: 32px;
}

.tec-core-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 0.5px;
    color: #7c3aed;
}

.wpc-core-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: #0F0F0F;
    letter-spacing: 0.5px;
}

.tm-core-symbols {
    font-size: 14px;
    font-weight: 800;
    color: #ff5656;
    letter-spacing: 1px;
}

.service-core-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #0F0F0F;
    margin-bottom: 0;
    line-height: 1.25;
}

.service-core-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 0;
    min-height: 38px;
}

/* Service Core Buttons — Clean Royal Blue Single Theme Color */
.btn-core-apply {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px !important;
    letter-spacing: 0.3px;
    color: #ffffff !important;
    text-decoration: none !important;
    background: #ff5656 !important;
    box-shadow: 0 3px 10px rgba(255, 86, 86, 0.25) !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    margin: 0;
}

.btn-core-apply i {
    transition: transform 0.25s ease;
}

.btn-core-apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    transition: left 0.65s ease;
    z-index: 2;
}

.btn-core-apply:hover {
    background: #e64444 !important;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 18px rgba(255, 86, 86, 0.35) !important;
    color: #ffffff !important;
}

.btn-core-apply:hover::before {
    left: 150%;
}

.btn-core-apply:hover i {
    transform: translateX(4px);
}

.btn-core-apply:active {
    transform: translateY(-1px) scale(0.99);
}

/* Service apply classes all inherit the primary color */
.btn-apply-crs,
.btn-apply-isi,
.btn-apply-tec,
.btn-apply-epr,
.btn-apply-metrology,
.btn-apply-cdsco,
.btn-apply-wpc,
.btn-apply-tm {
    background: #ff5656 !important;
    border-radius: 50px !important;
    box-shadow: 0 3px 10px rgba(255, 86, 86, 0.25) !important;
}

.btn-apply-crs:hover,
.btn-apply-isi:hover,
.btn-apply-tec:hover,
.btn-apply-epr:hover,
.btn-apply-metrology:hover,
.btn-apply-cdsco:hover,
.btn-apply-wpc:hover,
.btn-apply-tm:hover {
    background: #e64444 !important;
    box-shadow: 0 6px 18px rgba(255, 86, 86, 0.35) !important;
}

/* ====================================================
   YOUTUBE SHOWCASE SECTION (MATCHING USER REFERENCE)
   ==================================================== */
.yt-kicker-badge {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ff5656;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.yt-video-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.yt-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 86, 86, 0.35);
}

.yt-video-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000000;
    cursor: pointer;
}

.yt-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
    opacity: 0.95;
}

.yt-video-card:hover .yt-video-img {
    transform: scale(1.04);
    opacity: 1;
}

.yt-top-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.yt-channel-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.yt-title-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.yt-video-heading {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.yt-channel-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.yt-center-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    z-index: 3;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.yt-play-svg {
    width: 100%;
    height: 100%;
}

.yt-video-card:hover .yt-center-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

.yt-bottom-left-tools {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.yt-tool-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.yt-watermark-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 11px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.yt-card-body {
    padding: 18px 20px 20px;
    background: #ffffff;
    flex: 1;
}

.yt-chip-badge {
    font-size: 11px;
    font-weight: 800;
    color: #e11d48;
    display: inline-flex;
    align-items: center;
}

.btn-yt-visit-channel {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0F0F0F;
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 26px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.btn-yt-visit-channel:hover {
    background: #0f172a;
    color: #ffffff !important;
    border-color: #0F0F0F;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ====================================================
   SOCIAL MEDIA HUB (STAY CONNECTED WITH US)
   ==================================================== */
.social-kicker-badge {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ff5656;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.social-hub-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.social-hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 86, 86, 0.35);
}

.social-card-cover {
    height: 235px;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    position: relative;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-cover-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.social-avatar-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.social-account-name {
    font-size: 12px;
    line-height: 1.2;
}

.social-followers-pill {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}

.social-cover-bottom {
    text-align: left;
}

.social-tag-pill {
    display: inline-block;
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    letter-spacing: 0.4px;
}

.social-cover-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.social-card-details {
    padding: 16px 18px 20px;
    background: #ffffff;
    flex: 1;
}

.social-badge-chip {
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 6px;
}

.social-follow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.btn-social-follow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0F0F0F;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none !important;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-social-follow:hover {
    background: #0f172a;
    color: #ffffff !important;
    border-color: #0F0F0F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .social-follow-row {
        gap: 8px;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .btn-social-follow {
        font-size: 11.5px;
        padding: 7px 12px;
        flex: 0 1 auto;
    }

    .btn-social-follow i {
        margin-right: 5px !important;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .social-follow-row {
        gap: 6px;
    }

    .btn-social-follow {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ====================================================
   5-COLUMN COMPLIANCE FAQ TABLE MATRIX (ROYAL BLUE THEME)
   ==================================================== */
.compliance-faq-matrix-section {
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%) !important;
    border-top: 3px solid transparent;
    border-image: var(--theme-gradient-h) 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.compliance-faq-matrix-grid {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-matrix-col {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-matrix-col:last-child {
    border-right: none;
}

.faq-matrix-header {
    background: rgba(255, 255, 255, 0.16);
    padding: 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.faq-matrix-header h6 {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.faq-matrix-header h6 i {
    color: #ffffff !important;
    opacity: 0.95;
}

.faq-matrix-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.faq-matrix-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-matrix-list li:last-child {
    border-bottom: none;
}

.faq-matrix-btn {
    width: 100%;
    text-align: center;
    background: transparent;
    border: none;
    padding: 14px 12px;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    line-height: 1.4;
    text-decoration: none !important;
}

.faq-matrix-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-weight: 700;
}

.faq-matrix-btn:active {
    background: rgba(255, 255, 255, 0.3);
}

.faq-matrix-btn .click-indicator {
    font-size: 9px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: #ffffff;
}

.faq-matrix-btn:hover .click-indicator {
    opacity: 1;
    transform: translateX(2px);
}

/* FAQ Modal Styling */
.faq-modal-dialog {
    max-width: 680px;
}

.faq-modal-content {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.faq-modal-header {
    background: #121212;
    color: #ffffff;
    padding: 20px 24px;
    border-bottom: 2px solid #ff5656;
}

.faq-modal-body {
    padding: 24px;
}

.faq-rule-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #ff5656;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.faq-docs-checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.faq-docs-checklist li {
    padding: 6px 0;
    font-size: 13px;
    color: #555555;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.modal-faq-action-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
}

.btn-faq-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 50px;
    text-decoration: none !important;
    white-space: nowrap !important;
    flex: 1 1 0;
    transition: all 0.25s ease;
}

.btn-faq-action-wa {
    background: #ff5656 !important;
    color: #ffffff !important;
    border: 1px solid #ff5656;
    box-shadow: 0 2px 8px rgba(255, 86, 86, 0.25);
}

.btn-faq-action-wa:hover {
    background: #e64444 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.btn-faq-action-call {
    background: #ffffff !important;
    color: #0F0F0F !important;
    border: 1.5px solid #0F0F0F;
}

.btn-faq-action-call:hover {
    background: #0F0F0F !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

@media (max-width: 575.98px) {
    .modal-faq-action-group {
        gap: 6px;
        flex-wrap: nowrap;
    }

    .btn-faq-action {
        font-size: 11px;
        padding: 7px 8px;
        gap: 4px;
    }
}

@media (max-width: 991px) {
    .faq-matrix-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-right: none !important;
    }

    .faq-matrix-header {
        text-align: left !important;
        padding: 14px 18px;
    }

    .faq-matrix-header h6 {
        text-align: left !important;
    }

    .faq-matrix-btn {
        text-align: left !important;
        justify-content: space-between !important;
        padding: 13px 18px;
    }

    .faq-matrix-btn span {
        text-align: left !important;
    }

    .faq-matrix-btn .click-indicator {
        opacity: 0.6;
    }
}

.faq-badge.badge-orange {
    background: rgba(234, 88, 12, 0.25);
    color: #fdba74;
    border: 1px solid rgba(234, 88, 12, 0.5);
}

.faq-badge.badge-pink {
    background: rgba(219, 39, 119, 0.25);
    color: #f9a8d4;
    border: 1px solid rgba(219, 39, 119, 0.5);
}

.faq-badge.badge-teal {
    background: rgba(13, 148, 136, 0.25);
    color: #5eead4;
    border: 1px solid rgba(13, 148, 136, 0.5);
}

.faq-badge.badge-navy {
    background: rgba(3, 105, 161, 0.25);
    color: #7dd3fc;
    border: 1px solid rgba(3, 105, 161, 0.5);
}

.faq-question-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

.faq-body {
    padding: 16px 20px 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12.5px;
    line-height: 1.65;
    background: rgba(0, 0, 0, 0.15);
}

.faq-wa-link {
    display: inline-flex;
    align-items: center;
    color: #38bdf8 !important;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none !important;
    margin-top: 6px;
    transition: all 0.2s ease;
}

.faq-wa-link:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

/* ====================================================
   MASTER FOOTER STYLES
   ==================================================== */
/* ====================================================
   MASTER FOOTER STYLES (ROYAL BLUE GRADIENT THEME)
   ==================================================== */
.master-footer {
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%) !important;
    color: #ffffff !important;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
    width: 100%;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5656;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .footer-contact-row {
        gap: 8px;
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-contact-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 11px;
    }
}

.footer-social-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

@media (max-width: 991.98px) {
    .footer-social-row {
        justify-content: center !important;
    }
}

.footer-social-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.footer-social-icon-btn:hover {
    background: #ffffff;
    color: #ff5656 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- FOOTER TOP SERVICES & QUICK LINKS (SLEEK TABLE FORMAT WITH LEFT CONTENT & RIGHT ARROW) --- */
.footer-links-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-col-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
    margin-bottom: 0 !important;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    padding: 0 14px !important;
    height: 38px !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    text-align: left !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.footer-quick-list {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.footer-quick-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0 !important;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    transition: background 0.2s ease;
}

.footer-quick-list li:last-child {
    border-bottom: none;
}

.footer-quick-list li:hover {
    background: rgba(255, 255, 255, 0.08);
}

.footer-quick-list li a {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
    padding: 0 !important;
    text-align: left !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.footer-quick-list li a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 6px;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-quick-list li a:hover {
    color: #ffffff;
    transform: none !important;
}

.footer-quick-list li a:hover::after {
    color: #ff5656;
    transform: translateX(3px);
}

@media (max-width: 767.98px) {

    /* Connected 2-column table styling on mobile */
    .footer-col-services {
        padding-right: 0 !important;
    }

    .footer-col-quick {
        padding-left: 0 !important;
    }

    .footer-col-services .footer-col-heading {
        border-right: none !important;
        border-top-right-radius: 0 !important;
    }

    .footer-col-quick .footer-col-heading {
        border-top-left-radius: 0 !important;
    }

    .footer-col-services .footer-quick-list {
        border-right: none !important;
        border-bottom-right-radius: 0 !important;
    }

    .footer-col-quick .footer-quick-list {
        border-bottom-left-radius: 0 !important;
    }

    .footer-quick-list li {
        padding: 0 10px;
    }

    .footer-quick-list li a {
        font-size: 10px;
    }
}

.footer-enquiry-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 20px;
}

.footer-enquiry-card .footer-col-heading {
    margin-bottom: 8px !important;
}

.footer-form-input {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    color: #0F0F0F !important;
    font-size: 12px !important;
    border-radius: 8px !important;
}

.footer-form-input::placeholder {
    color: #94a3b8 !important;
}

.footer-form-input:focus {
    background: #ffffff !important;
    border-color: #ff5656 !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
}

.btn-matrix-submit {
    background: #ffffff;
    border: none;
    color: #ff5656 !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.btn-matrix-submit:hover {
    background: #f8fafc;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.footer-mini-social-pill {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.footer-mini-social-pill:hover {
    background: #ffffff;
    color: #ff5656;
}

.footer-trust-chip {
    background: rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* --- BELOW FOOTER BOTTOM BAR (#ff5656 BG) --- */
.footer-bottom-bar {
    background: #ff5656 !important;
    color: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-bottom-bar a {
    color: #ffffff !important;
    transition: opacity 0.2s ease;
}

.footer-bottom-bar a:hover {
    opacity: 0.85;
}

/* --- FOOTER OFFICIAL OFFICES CARDS (ROYAL BLUE THEME) --- */
.footer-offices-bar {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 767.98px) {
    .master-footer .container {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .footer-offices-bar {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .footer-bottom-bar {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .footer-office-card {
        padding: 18px !important;
    }

    .footer-office-card-header {
        margin-bottom: 14px !important;
    }

    .footer-office-city {
        margin-top: 4px !important;
        margin-bottom: 8px !important;
    }
}

.footer-office-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 18px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.footer-office-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.footer-office-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    width: 100%;
}

@media (max-width: 575.98px) {
    .footer-office-card-header {
        flex-direction: row-reverse;
        justify-content: space-between !important;
        align-items: center;
    }
}

.footer-office-badge {
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
}

.footer-office-badge i {
    margin-right: 6px !important;
    font-size: 11px;
}

.footer-office-badge.badge-green,
.footer-office-badge.badge-orange {
    background: #ffedd5 !important;
    color: #c2410c !important;
    border: 1px solid #fdba74 !important;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25);
}

.footer-office-badge.badge-blue {
    background: #fff0ee !important;
    color: #ff5656 !important;
    border: 1px solid rgba(255, 86, 86, 0.3) !important;
    box-shadow: 0 2px 8px rgba(255, 86, 86, 0.25);
}

.footer-office-status {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-office-status .status-dot-pulse {
    background: #f59e0b !important;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.4) !important;
}

.footer-office-city {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.footer-office-subtitle {
    font-size: 11.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
}

.footer-office-contacts {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-office-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

@media (max-width: 767.98px) {
    .footer-office-card {
        padding: 18px !important;
        margin-bottom: 8px;
    }

    .footer-office-city {
        font-size: 15px;
        margin-bottom: 4px !important;
    }

    .footer-office-subtitle {
        font-size: 11.5px;
        line-height: 1.45;
        margin-bottom: 12px !important;
    }

    .footer-office-contacts {
        padding-top: 12px !important;
        margin-top: 4px;
    }

    .footer-office-contact-row {
        margin-bottom: 10px !important;
        gap: 8px !important;
    }

    .footer-office-wa-btn {
        margin-top: 2px;
        padding: 8px 12px !important;
    }
}

.footer-office-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #ffffff;
    border: none;
    color: #16a34a !important;
    font-size: 11.5px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-office-wa-btn i {
    color: #25d366;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-office-wa-btn:hover {
    background: #25d366;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.footer-office-wa-btn:hover i {
    color: #ffffff !important;
}

/* ====================================================
   HERO SUBFEATURE: TICKER, CLIENT PILL MARQUEE & STATS BAR
   ==================================================== */
.hero-subfeature-wrapper {
    background: #ffffff;
    overflow: hidden;
}

/* 1. Top Latest Notification Ticker */
.hero-notification-ticker-bar {
    height: 38px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 16px;
    overflow: hidden;
}

.ticker-badge-pill {
    border: 1px solid rgba(255, 86, 86, 0.35);
    color: #ff5656;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 4px;
    background: #fff0ee;
    letter-spacing: 0.5px;
    margin-right: 14px;
    white-space: nowrap;
}

.ticker-content-track {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.ticker-scroll-text {
    display: inline-flex;
    align-items: center;
    width: max-content;
    animation: heroTickerMarquee 38s linear infinite;
    will-change: transform;
}

.ticker-scroll-text:hover {
    animation-play-state: paused;
}

.ticker-item {
    font-size: 12px;
    color: #555555;
    padding: 0 12px;
}

.ticker-item-divider {
    color: #94a3b8;
    font-size: 10px;
    padding: 0 4px;
}

@keyframes heroTickerMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 2. Middle Client Logo Marquee Bar (Royal Blue Gradient Background) */
.hero-client-marquee-bar {
    background: linear-gradient(90deg, #121212 0%, #1a1a1a 100%) !important;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.client-marquee-title {
    color: #ffffff !important;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.client-marquee-track-wrap {
    overflow: hidden;
    width: 100%;
    padding: 8px 0 4px;
}

.client-marquee-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: clientLogoMarquee 26s linear infinite;
    will-change: transform;
}

.client-marquee-track:hover {
    animation-play-state: paused;
}

.client-pill-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    height: 52px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-pill-card:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.client-pill-img {
    max-height: 32px;
    max-width: 95px;
    object-fit: contain;
}

@keyframes clientLogoMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 3. Bottom 4-Column Metric Stats Counter Bar */
.hero-stats-counter-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.hero-stat-col {
    padding: 12px 10px;
}

.hero-stat-col.border-end {
    border-right: 1px solid #e2e8f0 !important;
}

.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #0F0F0F;
    line-height: 1.15;
    margin-bottom: 2px;
}

.hero-stat-label {
    font-size: 10.5px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-notification-ticker-bar {
        height: 32px;
        padding: 0 8px;
    }

    .ticker-badge-pill {
        font-size: 9.5px;
        padding: 2px 6px;
        margin-right: 8px;
        letter-spacing: 0.2px;
        gap: 3px !important;
    }

    .ticker-item {
        font-size: 11px;
        padding: 0 8px;
    }

    .hero-stat-num {
        font-size: 17px;
    }

    .hero-stat-label {
        font-size: 8.5px;
        letter-spacing: 0.3px;
    }

    .client-pill-card {
        min-width: 110px;
        height: 44px;
        padding: 4px 14px;
    }

    .client-pill-img {
        max-height: 26px;
        max-width: 80px;
    }
}

/* ====================================================
   COMPLIANCE IN ACTION: CASE STUDY SHOWCASE & GALLERY
   ==================================================== */
.case-study-hero-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-left: 6px solid #ff5656;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.case-study-hero-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-study-pill-badge {
    background: rgba(255, 86, 86, 0.1);
    color: #ff5656;
    border: 1px solid rgba(255, 86, 86, 0.25);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
}

.case-study-counter {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.case-study-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0F0F0F;
    line-height: 1.25;
}

.case-study-location {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
}

.case-study-description {
    font-size: 13.5px;
    line-height: 1.65;
    color: #555555;
    min-height: 68px;
}

.case-study-nav-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cs-nav-dot {
    width: 24px;
    height: 6px;
    border-radius: 4px;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.cs-nav-dot.active {
    width: 40px;
    background: #ff5656;
    box-shadow: 0 2px 6px rgba(255, 86, 86, 0.35);
}

.btn-cs-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0F0F0F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-cs-nav:hover {
    background: #ff5656;
    color: #ffffff;
    border-color: #ff5656;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 86, 86, 0.25);
}

.case-study-image-wrapper {
    height: 380px;
    min-height: 360px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #0f172a;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.case-study-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.cs-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.88) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.cs-image-tag {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 700;
    color: #ffffff;
}

.btn-cs-zoom {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    color: #0F0F0F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-cs-zoom:hover {
    background: #ff5656;
    color: #ffffff;
    transform: scale(1.1);
}

/* Bottom Gallery Thumbnails */
.audit-thumb-card {
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.audit-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.5s ease;
}

.audit-thumb-card:hover img {
    transform: scale(1.08);
}

.audit-thumb-card.active {
    border-color: #ff5656;
    box-shadow: 0 0 0 3px rgba(255, 86, 86, 0.25), 0 8px 20px rgba(255, 86, 86, 0.2);
    transform: translateY(-3px);
}

.audit-thumb-card.active::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5656;
    border: 2px solid #ffffff;
    z-index: 3;
}

.audit-thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    z-index: 2;
}

.audit-thumb-overlay-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 86, 86, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    color: #ffffff;
}

.audit-thumb-card:hover .audit-thumb-overlay-zoom {
    opacity: 1;
}

@media (max-width: 991px) {
    .case-study-hero-card {
        padding: 20px;
    }

    .case-study-title {
        font-size: 20px;
    }

    .case-study-image-wrapper {
        height: 280px;
        min-height: 260px;
    }
}

/* ====================================================
   INNER PAGE HERO BANNER & BREADCRUMB STYLES
   ==================================================== */
.inner-page-banner {
    margin-top: 85px;
    padding: 55px 0 45px;
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #ff5656;
}

@media (max-width: 991px) {
    .inner-page-banner {
        margin-top: 75px;
        padding: 40px 0 32px;
        text-align: center;
    }
}

.inner-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 86, 86, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.inner-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 86, 86, 0.15);
    border: 1px solid rgba(255, 86, 86, 0.4);
    color: #ff5656;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.inner-page-title,
.inner-page-banner h1,
.inner-page-banner .inner-page-title,
h1.inner-page-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    color: #ffffff !important;
    line-height: 1.25;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.inner-page-desc,
.inner-page-banner p,
.inner-page-banner .inner-page-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 0;
}

.inner-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-top: 14px;
}

.inner-breadcrumb a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.inner-breadcrumb a:hover {
    color: #ff5656 !important;
}

.inner-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 10px;
}

.inner-breadcrumb .active-crumb {
    color: #ff5656 !important;
    font-weight: 700;
}

@media (max-width: 991.98px) {

    .inner-page-banner h1,
    .inner-page-banner .inner-page-title,
    .inner-page-title,
    h1.inner-page-title {
        font-size: clamp(1.2rem, 3.2vw, 1.65rem) !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        letter-spacing: -0.2px;
    }

    .inner-page-banner p,
    .inner-page-banner .inner-page-desc,
    .inner-page-desc {
        color: rgba(255, 255, 255, 0.9) !important;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
    }
}

@media (max-width: 767.98px) {

    .inner-page-banner h1,
    .inner-page-banner .inner-page-title,
    .inner-page-title,
    h1.inner-page-title {
        font-size: clamp(1.05rem, 4.4vw, 1.35rem) !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        letter-spacing: -0.3px;
        line-height: 1.25;
    }

    .inner-page-banner p,
    .inner-page-banner .inner-page-desc,
    .inner-page-desc {
        color: rgba(255, 255, 255, 0.9) !important;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
        font-size: 12.5px !important;
    }
}

@media (max-width: 480px) {

    .inner-page-banner h1,
    .inner-page-banner .inner-page-title,
    .inner-page-title,
    h1.inner-page-title {
        font-size: clamp(0.95rem, 4.2vw, 1.18rem) !important;
        letter-spacing: -0.35px;
    }
}

/* ====================================================
   SERVICE INNER PAGE LEFT CONTENT SCROLL & RIGHT MATCHING
   ==================================================== */
.service-content-scroll {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE / Edge */
    padding-right: 0;
    scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.service-content-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

@media (min-width: 992px) {
    .service-content-scroll {
        max-height: 840px;
    }
}

@media (max-width: 991px) {
    .service-content-scroll {
        max-height: none !important;
        height: auto !important;
        overflow-y: visible;
    }
}

.service-sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 95px;
    z-index: 10;
}

@media (max-width: 991px) {
    .service-sticky-sidebar {
        position: static;
        top: auto;
    }
}

/* ====================================================
   SERVICE CONTENT OVERVIEW SECTION HEADING (SINGLE LINE FIT)
   ==================================================== */
.service-content-scroll h2:not(.accordion-header),
.service-overview-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(1.15rem, 2vw, 1.45rem) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.2px;
}

@media (max-width: 991.98px) {

    .service-content-scroll h2:not(.accordion-header),
    .service-overview-title {
        font-size: clamp(1.05rem, 3.2vw, 1.25rem) !important;
        letter-spacing: -0.3px;
    }
}

@media (max-width: 767.98px) {

    .service-content-scroll h2:not(.accordion-header),
    .service-overview-title {
        font-size: clamp(0.92rem, 4.2vw, 1.15rem) !important;
        letter-spacing: -0.35px;
    }
}

@media (max-width: 480px) {

    .service-content-scroll h2:not(.accordion-header),
    .service-overview-title {
        font-size: clamp(0.85rem, 4vw, 1.02rem) !important;
        letter-spacing: -0.45px;
    }
}

/* ====================================================
   SERVICE SIDEBAR NAVIGATION WIDGET
   ==================================================== */
.service-nav-widget {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.service-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    background: #f8fafc;
    border: 1px solid transparent;
}

.service-nav-link:hover {
    background: #f1f5f9;
    color: #ff5656;
    border-color: #e2e8f0;
    transform: translateX(2px);
}

.service-nav-link.active {
    background: rgba(255, 86, 86, 0.08) !important;
    color: #ff5656 !important;
    font-weight: 700;
    border-color: rgba(255, 86, 86, 0.25) !important;
}

.service-nav-link .nav-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.04);
    font-size: 12px;
    margin-right: 8px;
    flex-shrink: 0;
    color: #64748b;
}

.service-nav-link.active .nav-icon {
    background: #ff5656;
    color: #ffffff !important;
}

.service-nav-link .nav-text {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-nav-link .nav-arrow {
    font-size: 11px;
    opacity: 0.45;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 6px;
}

.service-nav-link:hover .nav-arrow {
    opacity: 1;
    transform: translateX(2px);
    color: #ff5656;
}

.service-nav-link.active .nav-arrow {
    opacity: 1;
    color: #ff5656;
}

@media (max-width: 767.98px) {
    .service-nav-widget .card-body {
        padding: 14px !important;
    }

    .service-nav-link {
        padding: 7px 10px;
        font-size: 12px;
        margin-bottom: 3px;
    }

    .service-nav-link .nav-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
        margin-right: 6px;
    }

    .service-nav-link .nav-text {
        font-size: 12px;
    }

    .side-contact-btn {
        padding: 8px 6px;
    }

    .side-contact-text {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
}

/* ====================================================
   NATURAL TEXT ALIGNMENT & FULL-WIDTH MOBILE UTILIZATION
   ==================================================== */
.service-content-scroll,
.service-content-scroll p,
.service-content-scroll .small,
.service-content-scroll div,
.service-content-scroll li,
p {
    text-align: left !important;
    text-justify: none !important;
    word-spacing: normal !important;
    letter-spacing: normal;
    hyphens: manual;
}

@media (max-width: 767.98px) {
    .side-contact-btn {
        top: auto !important;
        bottom: 85px !important;
        transform: none !important;
        padding: 8px 6px !important;
        border-radius: 8px 0 0 8px !important;
        box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.18) !important;
    }

    .side-contact-text {
        font-size: 10.5px !important;
    }
}

@media (max-width: 575.98px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Proper breathing room inside cards on mobile */
    .service-content-scroll .bg-white,
    .service-content-scroll .p-4,
    .service-content-scroll .p-md-5,
    .card-body.p-4,
    .bg-white.p-4,
    .blog-card>div:last-child {
        padding: 1.35rem 1.15rem !important;
    }

    .p-3.5 {
        padding: 1rem !important;
    }

    /* Paragraphs cover width cleanly */
    p,
    .text-muted,
    .service-content-scroll p,
    .section-title-sm~p {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ====================================================
   SERVICES MEGA MENU TABLE FORMAT DIRECTORY
   ==================================================== */
.services-dropdown-wrapper {
    position: static !important;
}

.services-mega-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 96vw !important;
    max-width: 1340px !important;
    padding: 12px 16px 12px 16px !important;
    border-radius: 0 0 12px 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-top: none !important;
    background: #ffffff !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    z-index: 1050 !important;
}

.services-dropdown-wrapper.show>.services-mega-menu,
.services-dropdown-wrapper.open>.services-mega-menu,
.services-mega-menu.show {
    display: block !important;
}

.services-dropdown-wrapper .dropdown-toggle i.fa-chevron-down {
    transition: transform 0.25s ease;
}

.services-dropdown-wrapper.show .dropdown-toggle i.fa-chevron-down,
.services-dropdown-wrapper.open .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.mega-table-column {
    background: #fbfbfc;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    padding: 10px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.mega-table-column:hover {
    background: #ffffff;
    border-color: #ffd2d2;
    box-shadow: 0 4px 14px rgba(255, 86, 86, 0.08);
}

.mega-table-header {
    border-bottom: 1px solid #edf0f5;
    padding-bottom: 6px;
    margin-bottom: 4px;
}

.mega-table-badge {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #ff5656;
    background: rgba(255, 86, 86, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 3px;
    line-height: 1.2;
}

.mega-table-heading {
    font-size: 12.5px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.25;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-table-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mega-table-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
    border-radius: 5px;
    color: #333d47 !important;
    font-size: 11.5px;
    font-weight: 500;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.18s ease;
    border-bottom: 1px solid #f6f8fa;
}

.mega-table-link:last-child {
    border-bottom: none;
}

.mega-table-link span {
    line-height: 1.25;
    flex: 1;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-table-link i {
    font-size: 9.5px;
    color: #adb5bd;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.18s ease;
    margin-left: 6px;
    flex-shrink: 0;
}

.mega-table-link:hover {
    background: #fff4f4;
    color: #ff3b3b !important;
    font-weight: 600;
    padding-left: 9px;
}

.mega-table-link:hover i {
    opacity: 1;
    color: #ff3b3b;
    transform: translateX(0);
}

.mega-bottom-action-bar {
    background: #f8fafc !important;
    border: 1px solid #e9edf3 !important;
    border-radius: 8px !important;
    padding: 8px 14px !important;
    margin-top: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

.mega-bottom-text {
    font-size: 11.5px !important;
    color: #4b5563 !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
}

@media (max-width: 991.98px) {
    .services-mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
        padding: 8px 6px !important;
        max-height: 72vh;
        overflow-y: auto;
        border: 1px solid #edf2f7 !important;
        border-radius: 8px !important;
        margin-top: 6px !important;
    }

    .mega-table-column {
        margin-bottom: 6px;
        padding: 8px 10px;
        border: 1px solid #edf2f7;
        border-radius: 8px;
        background: #fdfdfe;
    }

    .mega-table-header {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        border-bottom: none !important;
        cursor: pointer;
        user-select: none;
    }

    .mega-table-header[aria-expanded="true"] {
        padding-bottom: 6px !important;
        margin-bottom: 4px !important;
        border-bottom: 1px solid #edf0f5 !important;
    }

    .mobile-subdrop-arrow {
        font-size: 11px;
        color: #ff5656;
        transition: transform 0.25s ease;
        padding-left: 8px;
    }

    .mega-table-header[aria-expanded="true"] .mobile-subdrop-arrow {
        transform: rotate(180deg);
    }

    .mega-table-link {
        padding: 5px 6px !important;
        font-size: 12px !important;
    }

    .mega-bottom-action-bar {
        display: none !important;
    }
}

/* ====================================================
   OUR FOOTPRINTS - GLOBAL PRESENCE MAP SECTION
   ==================================================== */
.footprints-section {
    background: #ffffff;
    position: relative;
}

.footprints-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
}

.footprints-map-inner {
    position: relative;
    width: 100%;
    padding-bottom: 52%;
    min-height: 500px;
}

.footprints-globe-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Footprint Pin Badges */
.fp-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 5;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    text-decoration: none;
    user-select: none;
}

.fp-pin:hover {
    transform: translate(-50%, -115%) scale(1.1);
    z-index: 25;
}

.fp-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    padding: 3.5px 8.5px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.fp-tag::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4.5px 4.5px 0 4.5px;
    border-style: solid;
}

/* Badge Color Variations */
.fp-navy .fp-tag {
    background: #0f172a;
}

.fp-navy .fp-tag::after {
    border-color: #0f172a transparent transparent transparent;
}

.fp-red .fp-tag {
    background: #e63946;
}

.fp-red .fp-tag::after {
    border-color: #e63946 transparent transparent transparent;
}

.fp-india .fp-tag {
    background: #0052cc;
    border: 1.5px solid #ffffff;
    font-size: 13px;
    font-weight: 900;
    padding: 4.5px 13px;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 18px rgba(0, 82, 204, 0.45);
}

.fp-india .fp-tag::after {
    border-color: #0052cc transparent transparent transparent;
    border-width: 6px 6px 0 6px;
}

.fp-india .fp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid #0052cc;
    animation: fpPulse 2s infinite ease-out;
    pointer-events: none;
}

/* Official Indian Office Pins (Nagpur HQ, Mumbai Corporate, Delhi Branch) */
.fp-headoffice .fp-tag {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1.5px solid #f59e0b;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.45);
}

.fp-headoffice .fp-tag::after {
    border-color: #0f172a transparent transparent transparent;
}

.fp-headoffice .fp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid #f59e0b;
    animation: fpPulse 2s infinite ease-out;
    pointer-events: none;
}

.fp-mumbai .fp-tag {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border: 1.5px solid #ffffff;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.45);
}

.fp-mumbai .fp-tag::after {
    border-color: #0369a1 transparent transparent transparent;
}

.fp-mumbai .fp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid #0284c7;
    animation: fpPulse 2s infinite ease-out;
    pointer-events: none;
}

.fp-delhi .fp-tag {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border: 1.5px solid #ffffff;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.45);
}

.fp-delhi .fp-tag::after {
    border-color: #c2410c transparent transparent transparent;
}

.fp-delhi .fp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid #ea580c;
    animation: fpPulse 2s infinite ease-out;
    pointer-events: none;
}

/* Single Line Office Locations Bar */
.fp-offices-oneline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    margin: 4px auto 26px;
    position: relative;
    z-index: 10;
}

.fp-offices-oneline::-webkit-scrollbar {
    display: none;
}

.fp-office-badge {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 11.5px;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
}

.fp-badge-nagpur {
    background: #0f172a;
    color: #ffffff;
    border: 1px solid #f59e0b;
}

.fp-badge-mumbai {
    background: #0284c7;
    color: #ffffff;
    border: 1px solid #38bdf8;
}

.fp-badge-delhi {
    background: #ea580c;
    color: #ffffff;
    border: 1px solid #fb923c;
}

@media (max-width: 768px) {
    .fp-offices-oneline {
        gap: 6px;
        justify-content: center;
        margin: -6px auto 22px;
        padding: 0 4px;
        max-width: 100%;
    }

    .fp-office-badge {
        font-size: 10px;
        padding: 3.5px 8.5px;
    }
}

@media (max-width: 420px) {
    .fp-offices-oneline {
        gap: 4.5px;
        margin: -8px auto 20px;
    }

    .fp-office-badge {
        font-size: 8.5px;
        padding: 3px 6.5px;
    }
}

@keyframes fpPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Trust Metric Counter Bar */
.fp-trust-metrics {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.fp-stat-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.fp-stat-lbl {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .footprints-section {
        padding-bottom: 3.5rem !important;
    }

    .footprints-map-wrapper {
        overflow: visible;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-bottom: 0;
    }

    .footprints-map-inner {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        padding-bottom: 52% !important;
        position: relative;
    }

    .fp-tag {
        font-size: 7.5px;
        padding: 1.5px 4.5px;
        border-radius: 3px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    }

    .fp-tag::after {
        border-width: 3px 3px 0 3px;
    }

    .fp-india .fp-tag {
        font-size: 9px;
        padding: 2.5px 7px;
        border-width: 1px;
    }

    .fp-india .fp-pulse {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .fp-tag {
        font-size: 6.5px;
        padding: 1px 3.5px;
        border-radius: 2px;
        letter-spacing: 0;
    }

    .fp-tag::after {
        border-width: 2.5px 2.5px 0 2.5px;
    }

    .fp-india .fp-tag {
        font-size: 7.5px;
        padding: 1.5px 5px;
    }

    .fp-india .fp-pulse {
        width: 16px;
        height: 16px;
    }
}

/* ====================================================
   VIDEO GUIDES & INTERACTIVE VIDEO PLAYER
   ==================================================== */
.video-card-thumb {
    height: 220px;
    background: #0f172a;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.video-card-thumb:hover img {
    transform: scale(1.08);
}

.video-card-thumb .video-bg-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 135%;
    height: 135%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.85;
    border: none;
}

.video-card-thumb .video-overlay-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.65) 100%);
    transition: background 0.3s ease;
    z-index: 2;
}

.video-card-thumb:hover .video-overlay-tint {
    background: rgba(15, 23, 42, 0.25);
}

.video-play-btn-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ff5656;
    background: linear-gradient(135deg, #ff5656 0%, #e63946 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(255, 86, 86, 0.45);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    border: 2.5px solid rgba(255, 255, 255, 0.85);
}

.video-card-thumb:hover .video-play-btn-circle {
    transform: scale(1.18);
    box-shadow: 0 8px 25px rgba(255, 86, 86, 0.65);
}

.video-info-circle {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.video-card-thumb:hover .video-info-circle {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.65);
}

.video-muted-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-coming-soon-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(4px);
    color: #e2e8f0;
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#videoPlayerModal .modal-content {
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

#videoPlayerModal .ratio-16x9 {
    background: #000;
}

/* --- COMPLETE WHITE PILL NEWSLETTER BOX --- */
.newsletter-pill-box {
    background: #ffffff !important;
    border-radius: 60px;
    padding: 6px 6px 6px 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.newsletter-pill-box:focus-within {
    box-shadow: 0 12px 40px rgba(255, 86, 86, 0.25), 0 0 0 3px rgba(255, 86, 86, 0.35);
}

.newsletter-pill-box input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

@media (max-width: 575.98px) {
    .newsletter-pill-box {
        flex-direction: column;
        border-radius: 24px;
        padding: 14px;
        gap: 12px;
    }

    .newsletter-pill-box input {
        text-align: center;
        width: 100%;
        padding: 4px 0 !important;
    }

    .newsletter-pill-box button {
        width: 100%;
    }
}