/* =========================================================
   INFORISE SERVICES — VIBRANT LED DISPLAY COMPANY DESIGN SYSTEM
   Premium Colorful: Corporate Blue + Cyan + Electric Cyan + Warm Amber
   ========================================================= */

:root {
    --logo-blue: #0052cc;
    --logo-blue-dark: #003d99;
    --logo-blue-light: #ebf2ff;
    
    /* VIBRANT ACCENT PALETTE — BLUE & CYAN ONLY (NO PURPLE) */
    --cyan:    #06b6d4;
    --cyan-dark: #0891b2;
    --deep-blue: #003d99;
    --amber:   #f59e0b;
    --amber-dark: #d97706;
    --emerald: #10b981;
    --coral:   #f43f5e;
    
    --primary-blue: var(--logo-blue);
    --primary-blue-dark: var(--logo-blue-dark);
    --primary-blue-light: var(--logo-blue-light);
     /* RICH BACKGROUND GRADIENTS */
    --bg-page: #f0f4ff;
    --bg-dark: #040d1a;
    --bg-dark-card: #0b1628;
    --bg-section-gradient: linear-gradient(135deg, #0a1628 0%, #0d2347 60%, #0e1f44 100%);
    --bg-vibrant: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    --bg-led-glow: linear-gradient(135deg, #040d1a 0%, #0d2347 50%, #0c1e3d 100%);
    
    --shadow-glow-blue: 0 0 30px rgba(0,82,204,0.35);
    --shadow-glow-cyan: 0 0 30px rgba(6,182,212,0.35);
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    
    --border-color: #e2e8f0;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-glow-blue: 0 0 30px rgba(0,82,204,0.35);
    --shadow-glow-cyan: 0 0 30px rgba(6,182,212,0.35);
    
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f4ff;
    color: var(--text-body);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    overflow-x: hidden;
}

/* GLOW KEYFRAMES */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0,82,204,0.4); }
    50%       { box-shadow: 0 0 40px rgba(6,182,212,0.7); }
}
@keyframes floatUp {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.container {
    max-width: 1240px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-blue-dark);
}

/* =========================================================
   LIGHT BACKGROUND NAVBAR WITH REFERENCE-STYLE MULTI-COLUMN DROPDOWNS
   (Background: Soft Executive Light Blue #eef2ff - NOT Dark Blue)
   ========================================================= */
.main-navbar-light {
    background: #eef2ff;
    border-bottom: 2px solid #cbd5e1;
    padding: 10px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.ref-tab-light {
    color: #0f172a !important;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.ref-tab-light:hover {
    color: var(--logo-blue) !important;
    background: #dbeafe;
}

.ref-tab-light.active {
    color: #ffffff !important;
    background: var(--logo-blue) !important;
    box-shadow: 0 3px 10px rgba(0, 82, 204, 0.35);
}

/* Ensure dropdown toggle doesn't add duplicate CSS caret pseudo-element */
.dropdown-toggle::after {
    display: none !important;
}

/* MULTI-COLUMN DROPDOWN CARD (Matching Reference Underlined Headers) */
.ref-dropdown-card {
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    margin-top: 0 !important;
    border-top: 3px solid var(--logo-red) !important;
}

.ref-col-title {
    color: var(--logo-blue);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--logo-red); /* Orange/Red Underline matching reference */
}

.ref-dropdown-list li {
    margin-bottom: 8px;
}

.ref-dropdown-list a {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.86rem;
    text-decoration: none;
    transition: var(--transition);
}

.ref-dropdown-list a:hover {
    color: var(--logo-blue);
    padding-left: 4px;
}

/* Desktop Hover Dropdown */
@media (min-width: 1200px) {
    .dropdown-hover:hover .ref-dropdown-card {
        display: block;
        animation: fadeInDown 0.2s ease forwards;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   TOP UTILITY BAR (DARK NAVY WITH 100% BRIGHT WHITE TEXT)
   ========================================================= */
.top-util-bar-dark {
    background: #071527;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 9px 0;
}

.top-util-bar-dark span,
.top-util-bar-dark a {
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.top-util-bar-dark a:hover {
    color: #38bdf8 !important;
}

.text-cyan {
    color: #38bdf8 !important;
}

.text-bright-red {
    color: #ff4d4d !important;
}

.main-navbar-light {
    background: #ffffff;
    border-bottom: 3px solid #0052cc;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Horizontal Transparent PNG Logo */
.brand-logo-large {
    height: 58px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    filter: none;
    transition: var(--transition);
}

.brand-logo-large:hover {
    opacity: 0.95;
    transform: scale(1.02);
}

.main-navbar-light .navbar-nav .nav-link {
    color: #1e293b !important;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 14px !important;
    height: 38px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border-radius: 6px;
    transition: var(--transition);
}

.main-navbar-light .navbar-nav .nav-link:hover,
.main-navbar-light .navbar-nav .nav-link.active,
.ref-tab-light.active {
    color: #0052cc !important;
    background: rgba(0, 82, 204, 0.08) !important;
}

/* BUTTONS */
.btn-primary-blue {
    background: linear-gradient(135deg, #0052cc, #003d99);
    color: #ffffff !important;
    font-weight: 800;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.86rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.35);
    transition: var(--transition);
}

.btn-primary-blue:hover {
    background: linear-gradient(135deg, #003d99, #002966);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 82, 204, 0.5);
}

.btn-accent-red {
    background: var(--accent-red);
    color: #ffffff !important;
    font-weight: 600;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-accent-red:hover {
    background: var(--accent-red-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-heading) !important;
    font-weight: 600;
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: #ffffff;
    border-color: var(--primary-blue);
    color: var(--primary-blue) !important;
}

/* =========================================================
   HERO SECTION (CLEAN LIGHT GRADIENT)
   ========================================================= */
.hero-light-sec {
    width: 100%;
    padding: 70px 0 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-pill-tag {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    border: 1px solid rgba(30, 64, 175, 0.2);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--text-heading);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 740px;
    margin: 0 auto 30px auto;
}

.hero-card-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    background: #ffffff;
}

.hero-card-frame img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

/* =========================================================
   STATS COUNTER RIBBON (ROYAL BLUE ACCENT - 2 COLOR THEME)
   ========================================================= */
.stats-dark-ribbon {
    width: 100%;
    background: #0052cc;
    color: #ffffff;
    padding: 32px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-counter-val {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.stat-counter-lbl {
    font-size: 0.8rem;
    color: #e0f2fe;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================================================
   CLEAN LIGHT PRODUCT & FEATURE CARDS
   ========================================================= */
.section-padding {
    width: 100%;
    padding: 80px 0;
}

.sec-tag {
    font-size: 0.78rem;
    font-weight: 900;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--logo-blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sec-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 14px;
    line-height: 1.2;
}

/* Dark section inverse sec-tag */
.sec-tag-light {
    font-size: 0.78rem;
    font-weight: 900;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 10px;
}

.sec-title-light {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.clean-white-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 26px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.clean-white-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.card-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.card-title-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.card-desc-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 20px;
}

/* =========================================================
   ABOUT INFORISE SECTION (LIGHT SECTION BG + DARK NAVY DIVS)
   ========================================================= */
.about-ref-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #eef2ff 100%);
    padding: 85px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.about-ref-section::before {
    content: '';
    position: absolute;
    top: -150px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(0,82,204,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ref-about-card-main {
    background: #0d1b30;
    border-radius: 20px;
    padding: 44px;
    border: 1px solid rgba(6, 182, 212, 0.25);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
    height: 100%;
}

.ref-about-tag {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
    color: #38bdf8 !important;
    background: none;
    -webkit-text-fill-color: #38bdf8 !important;
}

.ref-about-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 22px;
}

.ref-about-desc {
    color: #e2e8f0 !important;
    font-size: 0.98rem;
    line-height: 1.72;
    margin-bottom: 32px;
}

.ref-bullet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ref-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff !important;
    background: #162744;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ref-bullet-icon {
    color: #38bdf8 !important;
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* RIGHT FEATURE CARDS STACK */
.ref-side-card {
    background: #0d1b30;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    position: relative;
    transition: var(--transition);
}

.ref-side-card:hover {
    background: #11223d;
    border-color: #38bdf8;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(6, 182, 212, 0.2);
}

.ref-side-card.accent-left {
    border-left: 4px solid #38bdf8 !important;
}

.ref-side-card.accent-red-card {
    border-left: 4px solid #0052cc !important;
}

.ref-side-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #162744 !important;
    color: #38bdf8 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.ref-side-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 10px;
}

.ref-side-desc {
    color: #cbd5e1 !important;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* =========================================================
   SLEEK VISUAL FEATURE CARDS (WITH IMAGE HEADER, SPEC LIST & DIRECT QUOTE BUTTONS)
   ========================================================= */
.visual-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.visual-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background: linear-gradient(135deg, #0052cc, #003d99) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.visual-feature-card:hover::after {
    opacity: 1;
}

.visual-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,82,204,0.16);
}

.card-img-header {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.card-img-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.visual-feature-card:hover .card-img-header img {
    transform: scale(1.08);
}

.card-img-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.18));
    pointer-events: none;
}

.card-content-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feature-card-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

/* CATEGORY FILTER PILLS */
.portfolio-filter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.filter-btn-pill {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn-pill:hover,
.filter-btn-pill.active {
    background: var(--logo-blue);
    color: #ffffff;
    border-color: var(--logo-blue);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
}

.card-short-desc-compact {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
    min-height: 52px;
}

/* EXECUTIVE MANUFACTURING FACILITY SECTION (LIGHT THEME) */
.facility-section-wrap {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f8f5ff 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.facility-section-wrap::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,82,204,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.factory-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 82, 204, 0.12);
    border: 4px solid #ffffff;
}

.factory-img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.factory-img-wrap:hover img {
    transform: scale(1.03);
}

.factory-float-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #0f172a;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    max-width: 290px;
}

.factory-float-badge .badge-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0052cc;
    margin-bottom: 2px;
}

.factory-float-badge .badge-sub {
    font-size: 0.78rem;
    color: #475569;
    margin: 0;
}

.facility-spec-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.facility-spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 82, 204, 0.12);
    border-color: #0052cc;
    background: #ffffff;
}

.facility-spec-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #eff6ff;
    color: #0052cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.facility-spec-title {
    font-size: 0.94rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
}

.facility-spec-desc {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}
    color: #94a3b8;
    margin: 0;
    line-height: 1.35;
}

/* INDUSTRIES WE SERVE SECTION (LIGHT BACKGROUND + DARK NAVY CARDS) */
.industries-section-wrap {
    background: linear-gradient(135deg, #f8faff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.industry-card-box {
    background: #0d1b30;
    border-radius: 18px;
    border: 1px solid rgba(6, 182, 212, 0.25);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 82, 204, 0.12);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.industry-card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(6, 182, 212, 0.25);
    border-color: #38bdf8;
    background: #11223d;
}

.industry-img-wrap {
    height: 170px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #040d1a;
}

.industry-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.industry-card-box:hover .industry-img-wrap img {
    transform: scale(1.08);
}

.industry-img-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(4, 13, 26, 0.9);
    backdrop-filter: blur(8px);
    color: #38bdf8;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(56, 189, 248, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.industry-card-content {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #0d1b30;
    transition: background 0.35s ease;
}

.industry-card-box:hover .industry-card-content {
    background: #11223d;
}

.industry-card-title {
    font-size: 1.08rem;
    font-weight: 900;
    color: #ffffff !important;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.industry-card-sub {
    font-size: 0.88rem;
    color: #cbd5e1 !important;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* WHY CHOOSE US SECTION (DEEP DARK NAVY + 100% BRIGHT WHITE TEXT) */
.why-choose-wrap {
    background: #040d1a;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-choose-wrap::before {
    content: '';
    position: absolute;
    top: -100px; right: 10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,82,204,0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-wrap::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.14) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.why-card-box {
    background: #0d1b30;
    border-radius: 18px;
    padding: 32px 26px;
    border: 1px solid rgba(6, 182, 212, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0052cc, #38bdf8);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.why-card-box:hover::before {
    opacity: 1;
}

.why-card-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(6, 182, 212, 0.22);
    border-color: #38bdf8;
    background: #11223d;
}

.why-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #162744;
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card-box:hover .why-icon-box {
    background: #0052cc;
    color: #ffffff;
    border-color: #0052cc;
    box-shadow: 0 8px 22px rgba(0, 82, 204, 0.45);
}

.why-card-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff !important;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.why-card-desc {
    font-size: 0.92rem;
    color: #cbd5e1 !important;
    line-height: 1.65;
    margin: 0;
}
    margin: 0;
}

/* RECENT BLOGS SECTION (EXACT UNIFORM BOX SIZE FOR ALL CARDS) */
.blog-card-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.blog-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 82, 204, 0.12);
    border-color: var(--logo-blue);
}

.blog-img-box {
    position: relative;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-item:hover .blog-img-box img {
    transform: scale(1.05);
}

.blog-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--logo-blue);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.blog-meta {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 8px;
    height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-snippet {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 500;
    height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* SEO FAQ ACCORDION ENHANCEMENTS */
.seo-faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px !important;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.seo-faq-accordion .accordion-button {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text-main);
    background: #ffffff;
    padding: 18px 24px;
    box-shadow: none !important;
}

.seo-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--logo-blue);
    background: #f8fafc;
}

.seo-faq-accordion .accordion-body {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
    padding: 20px 24px;
    background: #ffffff;
}
.who-we-are-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.sec-tag-pill {
    display: inline-flex;
    align-items: center;
    background: var(--logo-blue-light);
    color: var(--logo-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(0, 82, 204, 0.2);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.who-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.who-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
    margin-bottom: 30px;
}

.who-highlight-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.who-highlight-item:hover {
    border-color: var(--logo-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.who-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--logo-blue-light);
    color: var(--logo-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.who-highlight-text {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.3;
}

/* RIGHT VISUAL STACK */
.who-visual-stack {
    position: relative;
    padding: 20px;
}

.who-img-main {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid #ffffff;
}

.who-floating-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.who-floating-badge.badge-top {
    top: -10px;
    right: -10px;
}

.who-floating-badge.badge-bottom {
    bottom: -15px;
    left: -10px;
}

.who-badge-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--logo-blue);
    line-height: 1;
}

.who-badge-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

/* 3 PILLARS RIBBON BELOW SPLIT */
.who-pillars-ribbon {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid var(--border-color);
}

.pillar-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
    height: 100%;
}

.pillar-box:hover {
    border-color: var(--logo-red);
    box-shadow: var(--shadow-md);
}

.pillar-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
}


/* =========================================================
   CONTACT FORM & FOOTER
   ========================================================= */
.contact-card-light {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
}

.form-control-custom {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.9rem;
    background: #f8fafc;
}

.form-control-custom:focus {
    background: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}

.footer-dark-sec {
    width: 100%;
    background: var(--bg-dark-accent);
    color: #cbd5e1;
    padding: 60px 0 25px 0;
    font-size: 0.88rem;
}

.footer-dark-sec h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list a {
    color: #cbd5e1;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.ref-float-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.ref-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.ref-float-btn.whatsapp { background: #25d366; }
.ref-float-btn.call { background: var(--primary-blue); }

/* =========================================================
   CLEAN HERO SLIDER WITH ZOOM ANIMATION
   ========================================================= */
.hero-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #040d1a;
}

.hero-slider-item {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.zoom-bg-img {
    width: 100%;
    height: 65vh;
    min-height: 420px;
    max-height: 700px;
    object-fit: cover;
    display: block;
    animation: heroZoom 10s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.08); }
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(4,13,26,0.88) 0%,
        rgba(4,13,26,0.55) 50%,
        rgba(4,13,26,0.15) 100%
    );
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-overlay-content {
    padding: 0 0 0 0;
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6,182,212,0.15);
    border: 1px solid rgba(6,182,212,0.4);
    color: #06b6d4;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}

.hero-main-heading {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-main-heading .hero-gradient-word {
    background: linear-gradient(90deg, #06b6d4, #003d99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 560px;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #0052cc, #003d99);
    color: #ffffff !important;
    font-size: 0.98rem;
    font-weight: 800;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,82,204,0.45);
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,82,204,0.6);
    color: #ffffff !important;
}

.btn-hero-ghost {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    color: #ffffff !important;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.5);
    color: #ffffff !important;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.hero-trust-badge i {
    color: #06b6d4;
}

/* SCROLLING PRODUCT MARQUEE TICKER (DARK NAVY - 2 COLOR THEME) */
.marquee-strip {
    background: #040d1a;
    overflow: hidden;
    padding: 14px 0;
    position: relative;
    border-bottom: 1px solid rgba(6, 182, 212, 0.25);
}

.marquee-inner {
    display: flex;
    gap: 0;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 28px;
}

.marquee-item i {
    color: #06b6d4;
    font-size: 0.5rem;
}

/* DARK PRODUCT SECTION */
.products-dark-wrap {
    background: linear-gradient(180deg, #040d1a 0%, #071020 100%);
    position: relative;
    overflow: hidden;
}

.products-dark-wrap::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(0,82,204,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Dark product card override */
.products-dark-wrap .visual-feature-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.products-dark-wrap .visual-feature-card:hover {
    background: rgba(255,255,255,0.07);
    box-shadow: 0 20px 50px rgba(0,82,204,0.2);
}

.products-dark-wrap .feature-card-title {
    color: #f1f5f9;
}

.products-dark-wrap .card-short-desc-compact {
    color: #94a3b8;
}

/* Navbar scrolled: transparent to white */
.main-navbar-light {
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.main-navbar-light.scrolled {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12) !important;
}

/* Blog section dark */
.blog-section-dark {
    background: linear-gradient(180deg, #f0f4ff 0%, #f8f5ff 100%);
}

.blog-card-item {
    border: 1px solid #e8e3ff;
}

.blog-title {
    color: #0f172a;
}

/* CTA SECTION - Dark gradient premium */
.cta-section-premium {
    background: linear-gradient(135deg, #040d1a 0%, #0a1628 40%, #0d2347 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,82,204,0.2) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section-premium::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,61,153,0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-premium-inner {
    position: relative;
    z-index: 1;
}

/* FAQ SECTION DARK */
.faq-section-dark {
    background: #f8faff;
}

/* REFINED PRODUCT CARD LEARN MORE BUTTON */
.products-dark-wrap .btn-primary-blue {
    background: transparent;
    border: 1px solid rgba(6,182,212,0.5);
    color: #06b6d4 !important;
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 30px;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.products-dark-wrap .btn-primary-blue:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(6,182,212,0.4);
}

/* =========================================================
   LIGHT-THEME PREMIUM SECTION OVERHAUL
   Pearl backgrounds, vibrant cards, strategic dark accents
   ========================================================= */

/* FEATURED PRODUCTS — PREMIUM LIGHT GRADIENT */
.products-light-wrap {
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 60%, #f8f5ff 100%);
    position: relative;
    overflow: hidden;
}

.products-light-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #06b6d4, #003d99, #f59e0b, #0052cc);
    background-size: 200% auto;
    animation: rainbowShift 4s linear infinite;
}

@keyframes rainbowShift {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.products-light-wrap .visual-feature-card {
    background: #ffffff;
    border: 1px solid rgba(0,82,204,0.10);
    box-shadow: 0 4px 24px rgba(0,82,204,0.06);
}

.products-light-wrap .visual-feature-card:hover {
    box-shadow: 0 20px 48px rgba(0,82,204,0.14);
    border-color: rgba(0,82,204,0.22);
}

/* INDUSTRIES SECTION - Soft Lavender Pearl */
.industries-section-wrap {
    background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 50%, #f0f9ff 100%);
}

/* BLOG SECTION — Warm Cream Pearl */
.blog-section-warm {
    background: linear-gradient(180deg, #fff9f0 0%, #fef3c7 20%, #ffffff 60%, #f0f4ff 100%);
}

/* ABOUT SECTION subtle text fix */
.about-ref-section .sec-tag {
    -webkit-text-fill-color: transparent;
}

/* CAROUSEL CONTROL ICONS - Make visible on dark hero */
.hero-slider-container .carousel-control-prev-icon,
.hero-slider-container .carousel-control-next-icon {
    filter: none !important;
    opacity: 0.8;
}

/* SECTION DIVIDER RAINBOW LINE - reusable */
.rainbow-top-line {
    position: relative;
}

.rainbow-top-line::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0052cc, #06b6d4, #003d99);
    z-index: 1;
}

/* CARD HOVER GLOW — light section premium override */
.products-light-wrap .card-img-header::after {
    background: linear-gradient(transparent, rgba(0,82,204,0.08));
}

/* LIGHT SECTION SEC-TITLE ACCENT WORD */
.accent-word {
    background: linear-gradient(90deg, #0052cc, #003d99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* INDUSTRIES CARD — colorful icon per industry */
.ind-retail    { background: linear-gradient(135deg, #fef3c7, #fde68a) !important; color: #d97706 !important; }
.ind-corporate { background: linear-gradient(135deg, #dbeafe, #bfdbfe) !important; color: #1d4ed8 !important; }
.ind-edu       { background: linear-gradient(135deg, #d1fae5, #a7f3d0) !important; color: #059669 !important; }
.ind-govt      { background: linear-gradient(135deg, #ebf2ff, #bfdbfe) !important; color: #003d99 !important; }
.ind-hotel     { background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important; color: #be185d !important; }
.ind-events    { background: linear-gradient(135deg, #ffedd5, #fed7aa) !important; color: #ea580c !important; }
.ind-bank      { background: linear-gradient(135deg, #cffafe, #a5f3fc) !important; color: #0891b2 !important; }
.ind-health    { background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important; color: #16a34a !important; }
.ind-transport { background: linear-gradient(135deg, #e0e7ff, #c7d2fe) !important; color: #4338ca !important; }
.ind-outdoor   { background: linear-gradient(135deg, #fef9c3, #fef08a) !important; color: #ca8a04 !important; }
.ind-resi      { background: linear-gradient(135deg, #fae8ff, #f5d0fe) !important; color: #a21caf !important; }
.ind-collab    { background: linear-gradient(135deg, #f0fdf4, #dcfce7) !important; color: #15803d !important; }

/* PREMIUM BTN — gradient pill for light sections */
.btn-gradient-pill {
    background: linear-gradient(135deg, #0052cc, #003d99);
    color: #ffffff !important;
    font-weight: 800;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 22px rgba(0,82,204,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-gradient-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,82,204,0.45);
    color: #ffffff !important;
}

/* CONTINUOUS RIGHT-TO-LEFT BLOG MARQUEE TICKER SLIDER */
.blog-marquee-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.blog-marquee-inner {
    display: flex;
    gap: 24px;
    animation: blogScrollLeft 30s linear infinite;
    width: max-content;
}

.blog-marquee-inner:hover {
    animation-play-state: paused;
}

@keyframes blogScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.blog-marquee-card {
    width: 370px;
    flex-shrink: 0;
}

/* PREMIUM BLOG READ FULL GUIDE BUTTON (CORPORATE ROYAL BLUE) */
.btn-blog-read {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-blog-read:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.45);
    color: #ffffff !important;
    background: linear-gradient(135deg, #003d99 0%, #002966 100%);
}

/* FLOATING ACTION BUTTONS (LEFT BOTTOM: CALL & WHATSAPP | RIGHT BOTTOM: BACK TO TOP) */
.ref-float-actions.left-bottom {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.back-to-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0052cc, #003d99);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 82, 204, 0.6);
    color: #ffffff;
}

/* MEGA DROPDOWN MENU STYLING FOR PRODUCTS/SERVICES */
.ref-mega-menu {
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
}

.mega-sub-list li {
    margin-bottom: 3px;
}

.mega-sub-link {
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    background: transparent;
    width: 100%;
}

.mega-sub-link:hover {
    color: #0052cc !important;
    background: #f1f5f9 !important;
    transform: translateX(4px);
}

.mega-sub-link i {
    transition: transform 0.2s ease;
}

.mega-sub-link:hover i {
    transform: translateX(2px);
}

/* LIGHT FORM PLACEHOLDER & SELECT DROPDOWN STYLING */
.form-control::placeholder,
textarea::placeholder,
.form-select::placeholder {
    color: #94a3b8 !important;
    opacity: 0.65 !important;
    font-weight: 400 !important;
}

.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #94a3b8 !important;
    opacity: 0.65 !important;
    font-weight: 400 !important;
}

.form-control::-moz-placeholder,
textarea::-moz-placeholder {
    color: #94a3b8 !important;
    opacity: 0.65 !important;
    font-weight: 400 !important;
}

.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #94a3b8 !important;
    opacity: 0.65 !important;
    font-weight: 400 !important;
}

select.form-select option[disabled] {
    color: #94a3b8 !important;
}

/* =========================================================
   MASTER MOBILE RESPONSIVE OVERHAUL (INDEX & SITEWIDE)
   ========================================================= */

@media (max-width: 991.98px) {
    /* 1. Header & Navigation Drawer */
    .brand-logo-large {
        height: 44px !important;
        max-width: 200px !important;
    }

    .main-navbar-light .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        margin-top: 12px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .main-navbar-light .navbar-nav {
        gap: 6px !important;
        align-items: stretch !important;
    }

    .main-navbar-light .navbar-nav .nav-link {
        justify-content: flex-start !important;
        padding: 10px 16px !important;
        border-radius: 8px !important;
        width: 100%;
    }

    /* Mega Dropdown Box on Mobile (Prevents Horizontal Overflow) */
    .ref-mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 10px !important;
        left: 0 !important;
        box-shadow: none !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        padding: 16px !important;
    }

    /* 2. Hero Section Mobile Optimization — Remove Blank Space Below Slider */
    .hero-slider-container,
    .hero-slider-item,
    .carousel-inner {
        height: auto !important;
        min-height: 0 !important;
        background: #040d1a !important;
    }

    .zoom-bg-img {
        height: 45vh !important;
        min-height: 260px !important;
        max-height: 450px !important;
        object-fit: cover !important;
        width: 100% !important;
    }

    .carousel-indicators {
        margin-bottom: 8px !important;
        bottom: 5px !important;
    }
}

@media (max-width: 767.98px) {
    /* 3. Section Padding / Spacing on Mobile */
    .section-padding {
        padding: 45px 0 !important;
    }

    .sec-title, .sec-title-light {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
    }

    /* 4. Product Cards Mobile Layout */
    .products-dark-wrap {
        padding: 45px 0 !important;
    }

    .visual-feature-card {
        margin-bottom: 15px;
    }

    /* 5. Stats Ribbon Mobile 2x2 Grid & Font Size Fix */
    .stats-dark-ribbon {
        padding: 30px 0 !important;
    }

    .stat-counter-val, .stat-number {
        font-size: 1.35rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .stat-counter-lbl, .stat-label {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
        margin-top: 4px !important;
    }

    /* 6. Floating Action Buttons Mobile Position */
    .ref-float-actions.left-bottom {
        bottom: 20px !important;
        left: 15px !important;
    }

    .back-to-top-btn {
        bottom: 20px !important;
        right: 15px !important;
    }

    /* 7. Contact CTA Mobile */
    .cta-section-premium {
        padding: 50px 0 !important;
        text-align: center;
    }

    .cta-section-premium .d-flex {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .cta-section-premium .btn {
        width: 100% !important;
    }

    /* 8. Modal Form Mobile */
    .modal-dialog {
        margin: 10px !important;
    }

    .modal-body {
        padding: 20px 15px !important;
    }
}

@media (max-width: 575.98px) {
    .zoom-bg-img {
        height: 38vh !important;
        min-height: 220px !important;
        max-height: 340px !important;
    }

    .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .stat-counter-val, .stat-number {
        font-size: 1.15rem !important;
    }

    .stat-counter-lbl, .stat-label {
        font-size: 0.65rem !important;
    }
}

/* DARK PREMIUM MOBILE SIDEBAR OFFCANVAS STYLES */
.mobile-menu-card {
    display: flex;
    align-items: center;
    background: #13223f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 13px 16px;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.95rem;
}

.mobile-menu-card:hover,
.mobile-menu-card.active {
    background: #1e335b !important;
    border-color: #0284c7 !important;
    border-left: 4px solid #0284c7 !important;
}

.mobile-menu-card-accordion {
    background: #13223f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.mobile-menu-card-accordion .mobile-menu-card {
    border: none !important;
    border-radius: 0 !important;
}

.mobile-subcat-btn {
    background: #111d33;
    color: #ffffff !important;
    font-size: 0.86rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-subcat-btn:hover {
    background: #182949;
    color: #38bdf8 !important;
}

.mobile-sub-link {
    color: rgba(255, 255, 255, 0.80) !important;
    text-decoration: none;
    font-size: 0.80rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: block;
}

.mobile-sub-link:hover {
    color: #38bdf8 !important;
    background: rgba(255, 255, 255, 0.06);
}

.collapse-plus-icon {
    transition: transform 0.3s ease;
}

button[aria-expanded="true"] .collapse-plus-icon {
    transform: rotate(45deg);
}

.mobile-nav-list {
    overflow-y: auto;
    max-height: calc(100vh - 180px);
    padding-right: 4px;
}

.mobile-nav-list::-webkit-scrollbar {
    width: 4px;
}

.mobile-nav-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* MOBILE FEATURE BADGE CARDS OPTIMIZATION */
@media (max-width: 575.98px) {
    .ref-bullet-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .ref-bullet-item {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 14px 10px !important;
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        border-radius: 12px !important;
    }

    .ref-bullet-icon {
        margin-bottom: 6px !important;
        font-size: 1.25rem !important;
    }
}
