/**
 * Theme Name:     FSNIT
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   fsnit
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */


/*
 * sentinel-shield.css
 * Place in: /wp-content/themes/your-child-theme/sentinel-shield/sentinel-shield.css
 * ─────────────────────────────────────────────────────────────────────────────
 * Recolored to match FSN IT Solutions brand palette:
 *   Steel Blue  #4E90C8  (the "FSN" medium blue)
 *   Deep Navy   #1B3A5C  (the "IT" dark navy)
 *   Brand Navy  #1B3158  (the SOLUTIONS bar background)
 * Background: dark #2e3035 environment
 * ─────────────────────────────────────────────────────────────────────────────
 */

/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body,
.elementor-page {
    background-color: #050a12 !important;
    font-family: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
}
.elementor-widget-container { padding: 0 !important; }
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1280px;
}

/* ─── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
    /* Primary brand accent — steel blue from "FSN" */
    --ss-accent:        #4E90C8;
    /* Secondary accent — lighter sky blue for gradients */
    --ss-accent-2:      #6FB3E8;
    /* Darker shade for hover/pressed states */
    --ss-accent-dark:   #3A72A8;
    /* Deep navy from "IT" lettering */
    --ss-navy:          #1B3A5C;
    /* SOLUTIONS bar navy */
    --ss-navy-bar:      #1B3158;

    /* Backgrounds — dark charcoal environment */
    --ss-bg-dark:       #2a2d33;
    --ss-bg-mid:        #2f3239;
    --ss-bg-darkest:    #22252b;

    /* Borders */
    --ss-border:        rgba(255,255,255,0.09);
    --ss-border-accent: rgba(78,144,200,0.30);

    /* Text */
    --ss-text-muted:    rgba(255,255,255,0.52);
    --ss-text-dim:      rgba(255,255,255,0.35);

    /* Shape */
    --ss-radius:        14px;
    --ss-radius-sm:     8px;
    --ss-radius-lg:     20px;

    /* Spacing */
    --ss-section-px:    40px;
    --ss-section-py:    80px;
}

/* ─── Typography helpers ─────────────────────────────────────────────────────── */
.ss-gradient-text {
    background: linear-gradient(135deg, #4E90C8, #6FB3E8, #A8D4F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ss-section-label {
    display: block;
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ss-accent);
    margin-bottom: 14px;
    font-weight: 700;
}
.ss-section-title {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.ss-section-desc {
    text-align: center;
    color: var(--ss-text-muted);
    max-width: 540px;
    margin: 0 auto 48px;
    font-size: 15px;
    line-height: 1.75;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────────── */
/* Primary — steel blue → navy gradient (mirrors the logo's two-tone feel) */
.ss-btn-primary {
    background: linear-gradient(135deg, #4E90C8, #1B3A5C);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    display: inline-block;
}
.ss-btn-primary:hover { opacity: 0.85; }

.ss-btn-primary-lg {
    background: linear-gradient(135deg, #4E90C8, #2A5F96);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: var(--ss-radius-sm);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(78,144,200,0.40);
    display: inline-block;
    border: none;
    cursor: pointer;
}
.ss-btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(78,144,200,0.55);
}

.ss-btn-outline-lg {
    border: 1px solid rgba(78,144,200,0.50);
    color: var(--ss-accent);
    padding: 14px 30px;
    border-radius: var(--ss-radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.2s;
    background: transparent;
    display: inline-block;
}
.ss-btn-outline-lg:hover { background: rgba(78,144,200,0.10); }

.ss-card-link {
    color: var(--ss-accent);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}
.ss-card-link:hover { text-decoration: underline; }

/* ─── Shared card base ─────────────────────────────────────────────────────────── */
.ss-card-base {
    background: rgba(255,255,255,0.030);
    border: 1px solid var(--ss-border);
    border-radius: var(--ss-radius);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.ss-card-base:hover {
    border-color: var(--ss-border-accent);
    background: rgba(78,144,200,0.06);
    transform: translateY(-5px);
}

/* ─── Icon box ─────────────────────────────────────────────────────────────────── */
.ss-icon-box {
    width: 54px;
    height: 54px;
    background: rgba(78,144,200,0.12);
    border: 1px solid rgba(78,144,200,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

/* ─── Section wrapper ───────────────────────────────────────────────────────────── */
.ss-section-wrap {
    padding: var(--ss-section-py) var(--ss-section-px);
    max-width: 1280px;
    margin: 0 auto;
}
.ss-section-outer {
    padding: var(--ss-section-py) var(--ss-section-px);
}

/* ─── Keyframe Animations ───────────────────────────────────────────────────────── */
@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50%       { transform: scale(1.05); opacity: 1; }
}
@keyframes floatShield {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
@keyframes scanLine {
    0%   { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 6px rgba(78,144,200,0.85); }
    50%       { box-shadow: 0 0 18px rgba(111,179,232,1); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}
.ss-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ss-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
/* Steel-blue glow top-right */
.glow-1 {
    width: 700px; height: 700px;
    top: -200px; right: -150px;
    background: radial-gradient(circle, rgba(78,144,200,0.12) 0%, transparent 70%);
}
/* Deep navy glow bottom-left */
.glow-2 {
    width: 500px; height: 500px;
    bottom: -100px; left: -100px;
    background: radial-gradient(circle, rgba(27,58,92,0.18) 0%, transparent 70%);
}
.ss-hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(78,144,200,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78,144,200,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.ss-hero-inner {
    position: relative; z-index: 1;
    max-width: 1280px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.ss-badge-pill {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(78,144,200,0.10);
    border: 1px solid rgba(78,144,200,0.30);
    border-radius: 100px; padding: 7px 18px;
    font-size: 13px; color: var(--ss-accent);
    margin-bottom: 28px; font-weight: 500;
}
.ss-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--ss-accent);
    box-shadow: 0 0 10px rgba(78,144,200,0.9);
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}
.ss-hero-h1 {
    font-size: clamp(38px,5vw,66px);
    font-weight: 900; line-height: 1.08;
    color: #fff; margin: 0 0 22px; letter-spacing: -1.5px;
}
.ss-hero-p {
    font-size: 16px; color: rgba(255,255,255,0.58);
    line-height: 1.75; margin: 0 0 36px; max-width: 480px;
}
.ss-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.ss-hero-trust { display: flex; gap: 12px; flex-wrap: wrap; }
.ss-trust-pill {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 100px; padding: 5px 14px;
}
.ss-dot-green {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--ss-accent);
    box-shadow: 0 0 8px rgba(78,144,200,0.85); flex-shrink: 0;
}

/* Shield animation */
.ss-hero-right { display: flex; align-items: center; justify-content: center; }
.ss-shield-wrap {
    position: relative; width: 340px; height: 340px;
    display: flex; align-items: center; justify-content: center;
}
.ss-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(78,144,200,0.20);
    animation: pulseRing 4s ease-in-out infinite;
}
.r1 { width: 200px; height: 200px; border-color: rgba(78,144,200,0.45); animation-delay: 0s; }
.r2 { width: 270px; height: 270px; animation-delay: 0.7s; }
.r3 { width: 340px; height: 340px; animation-delay: 1.4s; }
.ss-shield-box {
    position: relative; z-index: 3;
    /* Navy-to-steelblue gradient card mirrors logo palette */
    background: linear-gradient(145deg, rgba(27,49,88,0.60), rgba(78,144,200,0.10));
    border: 1px solid rgba(78,144,200,0.35);
    border-radius: 24px; padding: 36px;
    backdrop-filter: blur(12px); text-align: center;
    animation: floatShield 5s ease-in-out infinite; overflow: hidden;
}
.ss-scan-line {
    position: absolute; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(78,144,200,0.70), transparent);
    animation: scanLine 3s linear infinite;
}
.ss-shield-label {
    margin-top: 10px; font-size: 11px; letter-spacing: 3px;
    color: var(--ss-accent); font-weight: 700;
}
.ss-orbit-dot {
    position: absolute; width: 10px; height: 10px;
    border-radius: 50%; background: var(--ss-accent);
    box-shadow: 0 0 12px rgba(78,144,200,0.95);
}
.od1 { animation: orbit1 6s linear infinite; }
.od2 { animation: orbit2 8s linear infinite; }
.od3 { animation: orbit3 10s linear infinite; }
@keyframes orbit1 {
    from { transform: rotate(0deg) translateY(-160px) rotate(0deg); }
    to   { transform: rotate(360deg) translateY(-160px) rotate(-360deg); }
}
@keyframes orbit2 {
    from { transform: rotate(120deg) translateY(-135px) rotate(-120deg); }
    to   { transform: rotate(480deg) translateY(-135px) rotate(-480deg); }
}
@keyframes orbit3 {
    from { transform: rotate(240deg) translateY(-160px) rotate(-240deg); }
    to   { transform: rotate(600deg) translateY(-160px) rotate(-600deg); }
}
@media (max-width: 900px) {
    .ss-hero-inner { grid-template-columns: 1fr; }
    .ss-hero-right { display: none; }
    .ss-hero { min-height: auto; padding: 60px 24px; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   STATS WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-stats { padding: 20px 40px; }
.ss-stats-wrap {
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    align-items: center; gap: 0;
}
.ss-stat { text-align: center; padding: 24px 20px; }
.ss-stat-number {
    font-size: clamp(34px,4.5vw,58px);
    font-weight: 900; color: #fff;
    letter-spacing: -2px; line-height: 1;
}
/* Stat accent uses steel blue */
.ss-stat-accent { color: var(--ss-accent); }
.ss-stat-line {
    width: 40px; height: 2px;
    /* Logo gradient: steel blue → sky blue */
    background: linear-gradient(90deg, #1B3A5C, #4E90C8, #6FB3E8);
    margin: 10px auto 8px; border-radius: 2px;
}
.ss-stat-label {
    font-size: 12px; color: rgba(255,255,255,0.40);
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;
}
.ss-stat-sep {
    width: 1px; height: 64px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.13), transparent);
}
@media (max-width: 768px) {
    .ss-stats-wrap { grid-template-columns: 1fr 1fr; }
    .ss-stat-sep { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SERVICES WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-services { padding: var(--ss-section-py) var(--ss-section-px); }
.ss-svc-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.ss-svc-card {
    background: rgba(255,255,255,0.030);
    border: 1px solid var(--ss-border);
    border-radius: var(--ss-radius); padding: 30px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
}
.ss-svc-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(78,144,200,0.07), rgba(27,58,92,0.06));
    opacity: 0; transition: opacity 0.3s;
}
.ss-svc-card:hover {
    border-color: rgba(78,144,200,0.40);
    background: rgba(78,144,200,0.05);
    transform: translateY(-5px);
}
.ss-svc-card:hover::after { opacity: 1; }
.ss-svc-icon {
    width: 54px; height: 54px;
    background: rgba(78,144,200,0.12);
    border: 1px solid rgba(78,144,200,0.25);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.ss-svc-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 10px; }
.ss-svc-card p  { font-size: 14px; color: var(--ss-text-muted); line-height: 1.7; margin: 0 0 18px; }
@media (max-width: 900px) { .ss-svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .ss-svc-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────────────────
   ABOUT WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-about { padding: var(--ss-section-py) var(--ss-section-px); }
.ss-about-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.ss-about-title {
    font-size: clamp(28px,3.8vw,48px); font-weight: 900; color: #fff;
    margin: 0 0 22px; line-height: 1.12; letter-spacing: -0.5px;
}
.ss-about-p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.78; margin: 0 0 16px; }
.ss-about-right { display: flex; flex-direction: column; gap: 16px; }
.ss-about-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--ss-border);
    /* Left accent stripe uses the logo's steel blue */
    border-left: 3px solid var(--ss-accent);
    border-radius: 12px; padding: 20px 22px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: background 0.3s, transform 0.3s;
}
.ss-about-card:hover { background: rgba(78,144,200,0.07); transform: translateX(4px); }
.ss-about-card-ico {
    width: 42px; height: 42px;
    background: rgba(78,144,200,0.12); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
}
.ss-about-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.ss-about-card p  { font-size: 13.5px; color: var(--ss-text-muted); margin: 0; line-height: 1.65; }
@media (max-width: 900px) { .ss-about-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ─────────────────────────────────────────────────────────────────────────────
   ADVANTAGE WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-adv {
    padding: var(--ss-section-py) var(--ss-section-px);
}

.ss-adv-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ss-adv-card {
    background: rgba(255,255,255,0.028);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--ss-radius);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.ss-adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B3A5C, #4E90C8, #6FB3E8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.ss-adv-card:hover {
    border-color: rgba(78,144,200,0.35);
    background: rgba(78,144,200,0.04);
    transform: translateY(-5px);
}

.ss-adv-card:hover::before {
    transform: scaleX(1);
}

.ss-adv-num {
    font-size: 52px;
    font-weight: 900;
    color: rgba(78,144,200,0.12);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
    letter-spacing: -2px;
}

.ss-adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(78,144,200,0.10);
    border: 1px solid rgba(78,144,200,0.20);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ss-adv-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.ss-adv-card p {
    font-size: 14px;
    color: var(--ss-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .ss-adv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px;
    }

    .ss-adv-card {
        padding: 24px;
    }

    .ss-adv-num {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ss-adv {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ss-adv-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .ss-adv-card {
        padding: 20px;
        width: 100%;
    }

    .ss-adv-num {
        font-size: 36px;
    }

    .ss-adv-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 12px;
    }

    .ss-adv-card h3 {
        font-size: 16px;
    }

    .ss-adv-card p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIALS WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-testi { padding: var(--ss-section-py) var(--ss-section-px); }
.ss-testi-grid {
    max-width: 1280px; margin: 0 auto 56px;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.ss-testi-card {
    background: rgba(255,255,255,0.030);
    border: 1px solid var(--ss-border);
    border-radius: var(--ss-radius); padding: 30px;
    transition: border-color 0.3s, transform 0.3s;
}
.ss-testi-card:hover { border-color: rgba(78,144,200,0.30); transform: translateY(-4px); }
/* Star color: steel blue stays on-brand vs generic yellow */
.ss-testi-stars { color: var(--ss-accent); font-size: 15px; letter-spacing: 3px; margin-bottom: 16px; }
.ss-testi-card p {
    font-size: 14.5px; color: rgba(255,255,255,0.68);
    line-height: 1.75; margin: 0 0 22px; font-style: italic;
}
.ss-testi-author { display: flex; align-items: center; gap: 13px; }
.ss-testi-av {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 13px; color: #fff;
    /* Avatar uses the navy-to-blue logo gradient */
    background: linear-gradient(135deg, #1B3A5C, #4E90C8);
    flex-shrink: 0; letter-spacing: 0.5px;
}
.ss-testi-name { font-size: 14px; font-weight: 700; color: #fff; }
.ss-testi-role { font-size: 12px; color: rgba(255,255,255,0.42); margin-top: 2px; }
.ss-client-logos-row { text-align: center; max-width: 1280px; margin: 0 auto; }
.ss-client-tagline {
    font-size: 11px; color: rgba(255,255,255,0.28);
    text-transform: uppercase; letter-spacing: 2.5px; margin: 0 0 20px;
}
.ss-logos { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ss-logo-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--ss-border);
    border-radius: var(--ss-radius-sm); padding: 11px 28px;
    font-size: 13px; color: rgba(255,255,255,0.32);
    font-weight: 700; letter-spacing: 1.5px;
}
@media (max-width: 900px) { .ss-testi-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────────────────
   CASE STUDIES WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-cases { padding: var(--ss-section-py) var(--ss-section-px); }
.ss-cases-tabs {
    display: flex; gap: 8px; justify-content: center;
    margin-bottom: 44px; flex-wrap: wrap;
}
.ss-tab {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.60);
    padding: 9px 22px; border-radius: 100px;
    font-size: 13px; cursor: pointer; transition: 0.2s; font-weight: 500;
}
/* Active tab uses brand gradient (navy → steel blue) */
.ss-tab.active,
.ss-tab:hover {
    background: linear-gradient(135deg, #1B3A5C, #4E90C8);
    color: #ffffff; border-color: transparent; font-weight: 700;
}
.ss-cases-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.ss-case-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; overflow: hidden;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
}
.ss-case-card:hover { border-color: rgba(78,144,200,0.35); transform: translateY(-5px); }
.ss-case-img {
    height: 150px;
    background: rgba(78,144,200,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.ss-case-img img { width: 100%; height: 100%; object-fit: cover; }
.ss-case-cat {
    font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--ss-accent); font-weight: 700; padding: 16px 22px 0;
}
.ss-case-card h3 {
    font-size: 16px; font-weight: 700; color: #fff;
    padding: 8px 22px 0; margin: 0; line-height: 1.35;
}
.ss-case-card p {
    font-size: 13.5px; color: var(--ss-text-muted);
    line-height: 1.68; padding: 10px 22px 24px; margin: 0;
}
@media (max-width: 768px) { .ss-cases-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────────────────
   BLOG WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-blog { padding: var(--ss-section-py) var(--ss-section-px); }
.ss-blog-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.ss-blog-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--ss-radius); overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    display: flex; flex-direction: column;
}
.ss-blog-card:hover { border-color: rgba(78,144,200,0.30); transform: translateY(-5px); }
.ss-blog-thumb {
    height: 148px;
    background: rgba(78,144,200,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.ss-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ss-blog-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.ss-blog-meta {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 10px;
}
.ss-blog-tag {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--ss-accent); font-weight: 700;
}
.ss-blog-date { font-size: 11.5px; color: rgba(255,255,255,0.30); }
.ss-blog-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 10px; line-height: 1.35; }
.ss-blog-card p  { font-size: 13.5px; color: var(--ss-text-muted); line-height: 1.68; margin: 0 0 16px; flex: 1; }
@media (max-width: 768px) { .ss-blog-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-faq { padding: var(--ss-section-py) var(--ss-section-px); }
.ss-faq-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.ss-faq-item {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--ss-border);
    border-radius: 12px; overflow: hidden; transition: border-color 0.3s;
}
.ss-faq-item.open {
    border-color: rgba(78,144,200,0.40);
    background: rgba(78,144,200,0.05);
}
.ss-faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; cursor: pointer;
    font-size: 15px; font-weight: 600; color: #fff;
    gap: 16px; user-select: none; transition: color 0.2s;
}
.ss-faq-item.open .ss-faq-q { color: var(--ss-accent); }
.ss-faq-arrow {
    color: rgba(255,255,255,0.40); flex-shrink: 0;
    transition: transform 0.3s, color 0.3s;
}
.ss-faq-item.open .ss-faq-arrow { transform: rotate(180deg); color: var(--ss-accent); }
.ss-faq-a {
    display: none; padding: 0 22px 20px;
    font-size: 14.5px; color: rgba(255,255,255,0.60); line-height: 1.75;
}
.ss-faq-item.open .ss-faq-a { display: block; }

/* ─────────────────────────────────────────────────────────────────────────────
   CTA BAND WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-cta-band { padding: 40px; }
.ss-cta-inner {
    max-width: 1280px; margin: 0 auto;
    /* Full brand gradient band: deep navy → steel blue */
    background: linear-gradient(135deg, rgba(27,49,88,0.55), rgba(78,144,200,0.15));
    border: 1px solid rgba(78,144,200,0.25);
    border-radius: var(--ss-radius-lg); padding: 44px 52px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 48px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.ss-cta-glow {
    position: absolute; width: 400px; height: 400px;
    top: -150px; right: -100px;
    background: radial-gradient(circle, rgba(78,144,200,0.18), transparent 60%);
    pointer-events: none;
}
.ss-cta-left { position: relative; z-index: 1; }
.ss-cta-left h3 {
    font-size: clamp(20px,2.5vw,26px); font-weight: 800; color: #fff;
    margin: 0 0 8px; letter-spacing: -0.3px;
}
.ss-cta-left p { font-size: 14.5px; color: rgba(255,255,255,0.55); margin: 0; max-width: 380px; }
.ss-cta-right { position: relative; z-index: 1; flex: 1; min-width: 300px; }
.ss-cta-form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.ss-cta-input {
    flex: 1; min-width: 220px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--ss-radius-sm); padding: 12px 18px;
    color: #fff; font-size: 14px; outline: none; transition: border-color 0.2s;
}
.ss-cta-input:focus { border-color: rgba(78,144,200,0.60); }
.ss-cta-input::placeholder { color: rgba(255,255,255,0.30); }
.ss-cta-note { font-size: 12px; color: rgba(255,255,255,0.32); margin: 10px 0 0; }

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT WIDGET
─────────────────────────────────────────────────────────────────────────────── */
.ss-contact { padding: var(--ss-section-py) var(--ss-section-px); }
.ss-contact-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 300px 1fr;
    gap: 48px; align-items: start;
}
.ss-contact-sidebar { display: flex; flex-direction: column; gap: 18px; }
.ss-ci { display: flex; gap: 14px; align-items: flex-start; }
.ss-ci-ico {
    width: 44px; height: 44px;
    background: rgba(78,144,200,0.12);
    border: 1px solid rgba(78,144,200,0.25);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ss-ci-lbl {
    font-size: 11.5px; color: rgba(255,255,255,0.38);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 600;
}
.ss-ci-val { font-size: 14px; color: #fff; font-weight: 500; line-height: 1.5; }
.ss-contact-cert { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
/* Certification badges styled like the SOLUTIONS bar: navy bg + blue border */
.ss-cert-badge {
    background: rgba(27,49,88,0.55);
    border: 1px solid rgba(78,144,200,0.30);
    border-radius: 6px; padding: 5px 12px;
    font-size: 11px; color: var(--ss-accent); font-weight: 700; letter-spacing: 0.5px;
}
.ss-contact-form {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--ss-border);
    border-radius: 18px; padding: 36px;
}
.ss-form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ss-fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.ss-fg label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); }
.ss-fg input,
.ss-fg select,
.ss-fg textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--ss-radius-sm); padding: 12px 16px;
    color: #fff; font-size: 14px; outline: none;
    transition: border-color 0.2s; width: 100%; box-sizing: border-box; font-family: inherit;
}
.ss-fg input:focus,
.ss-fg select:focus,
.ss-fg textarea:focus {
    border-color: rgba(78,144,200,0.55);
    background: rgba(78,144,200,0.05);
}
.ss-fg input::placeholder,
.ss-fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.ss-fg select { cursor: pointer; color: rgba(255,255,255,0.65); }
.ss-fg select option { background: #2a2d33; color: #fff; }
.ss-fg textarea { resize: vertical; min-height: 110px; }
.ss-submit-btn {
    width: 100%; text-align: center;
    justify-content: center; border: none;
    cursor: pointer; font-family: inherit; font-size: 15px;
}
.ss-form-success { text-align: center; padding: 48px 24px; display: none; }
.ss-form-success .ss-success-ico {
    width: 64px; height: 64px;
    background: rgba(78,144,200,0.14);
    border: 1px solid rgba(78,144,200,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.ss-form-success h3 { color: #fff; font-size: 20px; margin: 0 0 10px; }
.ss-form-success p  { color: rgba(255,255,255,0.55); font-size: 14px; margin: 0; }
@media (max-width: 900px) {
    .ss-contact-grid { grid-template-columns: 1fr; }
    .ss-form-row2 { grid-template-columns: 1fr; }
}


