/* ============================================
   Omni Teckno - Professional Stylesheet
   Enhanced color harmony and professional design
   ============================================ */

:root {
    /* Primary Brand Colors - Logo Harmony (Cyan & Royal Blue) */
    --color-primary: #00BFFF;
    --color-primary-dark: #0047B8;
    --color-primary-navy: #060B14;
    --color-primary-light: #38BDF8;

    /* Background Colors - Professional Cyber Dark Mode */
    --color-bg-white: #060B14;
    --color-bg-light: #0B1322;
    --color-bg-dark: #040812;
    --color-bg-card: #0B1322;
    --color-bg-card-hover: #0E1A30;
    --color-bg-gradient: linear-gradient(135deg, #00BFFF 0%, #0047B8 100%);
    --color-bg-gradient-light: linear-gradient(135deg, #0B1322 0%, #060B14 100%);

    /* Text Colors */
    --color-text-primary: #F8FAFC;
    --color-text-secondary: #94A3B8;
    --color-text-white: #FFFFFF;
    --color-text-muted: #64748B;
    --color-text-light: #CBD5E1;

    /* Border & Divider Colors */
    --color-border: #1A2844;
    --color-border-light: #121E36;
    --color-border-dark: rgba(56, 189, 248, 0.15);

    /* Status Colors */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #38BDF8;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;

    /* Container */
    --container-width: 1280px;
    --container-padding: 1.5rem;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.7);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: #060B14;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ============================================
   HEADER & NAVIGATION (Sleek Dark Cyber Glassmorphism)
   ============================================ */
.main-header {
    background: rgba(6, 11, 20, 0.88);
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 10px 35px -5px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-icon {
    display: flex;
    align-items: center;
    background: transparent;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Tabs Background Pill matching User Request */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    align-items: center;
    margin: 0;
    padding: 0.35rem 0.6rem;
    background: rgba(11, 19, 34, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 9999px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

.nav-link {
    color: #94A3B8;
    font-weight: 500;
    padding: 0.5rem 0.95rem;
    border-radius: 9999px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    border: 1px solid transparent;
}

.nav-link:hover {
    background-color: rgba(56, 189, 248, 0.12);
    color: #38BDF8;
    border-color: rgba(56, 189, 248, 0.25);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #38BDF8;
    font-weight: 700;
    background: rgba(2, 132, 199, 0.25);
    border: 1px solid rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 16px rgba(2, 132, 199, 0.35);
}

.portal-link {
    background: rgba(14, 26, 48, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38BDF8;
    font-weight: 600;
}

.portal-link:hover {
    background: #00BFFF;
    color: #060B14 !important;
    border-color: #00BFFF;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.btn-nav {
    background: linear-gradient(135deg, #00BFFF 0%, #0047B8 100%);
    color: #FFFFFF !important;
    padding: 0.55rem 1.4rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.35);
    margin-left: 0.35rem;
    border: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.55);
    color: #FFFFFF !important;
}

.btn-nav-quote {
    background: linear-gradient(135deg, #00BFFF 0%, #0284C7 100%);
    color: #060B14 !important;
    padding: 0.55rem 1.35rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #38BDF8;
    text-decoration: none;
    cursor: pointer;
}

.btn-nav-quote:hover {
    background: #38BDF8;
    color: #040812 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.6);
}

.floating-quote-dock {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1040;
    display: flex;
    align-items: center;
}

.floating-quote-pill {
    background: rgba(11, 19, 34, 0.92);
    border: 1px solid #1E2D4A;
    backdrop-filter: blur(12px);
    color: #FFFFFF !important;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 191, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.floating-quote-pill i {
    color: #38BDF8;
    font-size: 0.95rem;
}

.floating-quote-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
    animation: floatingPulse 2s infinite ease-in-out;
}

@keyframes floatingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.5; }
}

.floating-quote-pill:hover {
    background: #0B1322;
    border-color: #38BDF8;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(56, 189, 248, 0.45);
    color: #38BDF8 !important;
}

@media (max-width: 576px) {
    .floating-quote-text {
        display: none;
    }
    .floating-quote-pill {
        padding: 0.75rem;
        border-radius: 50%;
        width: 46px;
        height: 46px;
        justify-content: center;
    }
    .floating-quote-pulse {
        display: none;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    text-align: center;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--color-primary-dark);
    color: var(--color-text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #003595;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-white);
    border: 2px solid var(--color-text-white);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: var(--color-text-white);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   PAGE HEADER (Internal Pages)
   ============================================ */
.page-header {
    background: linear-gradient(rgba(11, 29, 63, 0.9), rgba(11, 29, 63, 0.9)), url("../img/banner-site-img.png");
    background-size: cover;
    background-position: center;
    padding: var(--spacing-2xl) 0;
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.page-header p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0B1D3F 0%, #0047B8 100%);
    padding: var(--spacing-2xl) 0;
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    /* Full screen feel */
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, rgba(0, 71, 184, 0) 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-white);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Hero Image Section */
.hero-image-wrapper {
    position: relative;
    margin-top: 0;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    /* Removed overflow:hidden and shadow to let the PNG cutout breathe if it has transparency, 
       otherwise the box shadow looks boxy on a transparent image. 
       If it's a full rectangular format, the user can re-enable shadow. 
       Assuming PNG cutout based on "professional" request. */
    box-shadow: none;
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 550px;
    /* Constrain size */
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    /* Better for cutouts */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Mobile Responsive Override */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: var(--spacing-lg);
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #FFFFFF;
    margin-bottom: var(--spacing-xs);
    font-weight: 800;
}

.section-title .title-accent {
    color: var(--color-primary);
    display: inline-block;
}

.section-title p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-primary);
}

.section-dark p {
    color: var(--color-text-muted);
}

.section-light {
    background: var(--color-bg-gradient-light);
}

.section-white {
    background-color: var(--color-bg-white);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-gradient);
    color: var(--color-text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */
.card {
    background-color: var(--color-bg-white);
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--color-bg-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.card h3 {
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1.375rem;
    font-weight: 700;
}

.card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Enforce 2-column on desktop for stricter "matched" look if requested, 
   but auto-fit is usually better. However, to avoid 3-1 split on large screens, 
   we can clamp max-width or use media query. 
   Let's try a strict 2-column grid for standard large screens to guarantee 2x2. */
@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 1100px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ============================================
   SERVICES SECTION - ENHANCED
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-lg);
    /* Increased gap for better separation */
    margin-top: var(--spacing-lg);
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2x2 on desktop */
    }
}

.service-card {
    background-color: var(--color-bg-white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    /* More padding */
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Match heights */
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-bg-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
    font-size: 2rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--color-bg-gradient);
    color: var(--color-text-white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--color-primary-dark);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.tier-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.tier-1 {
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.tier-2 {
    background-color: var(--color-primary-dark);
    color: var(--color-text-white);
}

/* Service Tier Headers */
.service-tier-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--color-border);
}

.service-tier-header i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.service-tier-header h3 {
    color: var(--color-primary-dark);
    font-size: 1.75rem;
    margin: 0;
    font-weight: 700;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background-color: var(--color-bg-white);
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    color: var(--color-primary-dark);
    font-size: 1rem;
    margin: 0;
}

.testimonial-info p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--color-bg-white);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.feature-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--color-primary-dark);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ============================================
   IMAGE SECTIONS
   ============================================ */
.image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.image-section.reverse {
    direction: rtl;
}

.image-section.reverse>* {
    direction: ltr;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-content h2 {
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
}

.image-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

@media (min-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    background-color: var(--color-bg-white);
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.team-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--spacing-sm);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-primary-light);
    box-shadow: var(--shadow-md);
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-member-img {
    transform: scale(1.1);
}

.team-info h3 {
    color: var(--color-primary-dark);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-sm);
}

.team-certs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    background-color: var(--color-bg-light);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Hero enhancements for better contrast */
.hero-content h1,
.hero-content p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Placeholder for AI images */
.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    font-size: 1.125rem;
    border-radius: 20px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--color-bg-gradient);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    color: var(--color-text-white);
    border-radius: 20px;
    margin: var(--spacing-xl) 0;
}

.cta-section h2 {
    color: var(--color-text-white);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.cta-section p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   FOOTER (Sleek, Proportional, Executive Senior UX)
   ============================================ */
.main-footer {
    background-color: #060B14;
    color: #94A3B8;
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid #142036;
    font-size: 0.88rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.1fr 1.3fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.85rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-brand-text {
    color: #94A3B8;
    font-size: 0.86rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    max-width: 300px;
}

.footer-portfolio-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    font-size: 0.78rem;
    color: #CBD5E1;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.footer-portfolio-pill:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: #38BDF8;
    color: #38BDF8;
}

.footer-badges-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748B;
    border: 1px solid #1A2844;
    border-radius: 4px;
    padding: 0.25rem 0.55rem;
    background: #0B1322;
    letter-spacing: 0.3px;
}

.footer-pill-tag i {
    color: #38BDF8;
    font-size: 0.7rem;
}

.footer-col-title {
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.1rem;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-nav-list a {
    color: #94A3B8;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: #38BDF8;
    transform: translateX(3px);
}

.footer-loc-item {
    margin-bottom: 0.85rem;
}

.footer-loc-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #38BDF8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-loc-addr {
    color: #CBD5E1;
    font-size: 0.84rem;
    line-height: 1.4;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.5rem;
    font-size: 0.84rem;
    color: #94A3B8;
}

.footer-contact-item a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #38BDF8;
}

.footer-contact-item i {
    color: #38BDF8;
    width: 16px;
    font-size: 0.8rem;
}

.footer-social-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #0B1322;
    border: 1px solid #1A2844;
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    background: rgba(56, 189, 248, 0.12);
    border-color: #38BDF8;
    color: #38BDF8;
    transform: translateY(-2px);
}

.footer-bottom-bar {
    border-top: 1px solid #142036;
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #64748B;
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.footer-bottom-links a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #38BDF8;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-gradient-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.contact-info h2 {
    color: #FFFFFF;
    margin-bottom: var(--spacing-md);
}

.contact-details {
    list-style: none;
    margin-top: var(--spacing-md);
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

.contact-details i {
    color: var(--color-primary);
    width: 24px;
}

.contact-form {
    background-color: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--color-bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .image-section {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --spacing-xl: 3rem;
        --spacing-2xl: 4rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        background-color: var(--color-primary-dark);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: var(--spacing-xl) 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

/* ============================================
   MOBILE NAVIGATION TOGGLE ACTIVE STATE
   ============================================ */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 2px solid #0284C7;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        align-items: stretch;
        gap: 0.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .btn-nav {
        text-align: center;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* ============================================
   SCREENSHOT 1: CLEAN SERVICE CARDS (9-GRID) - DARK MODE
   ============================================ */
.services-section-clean {
    background-color: #081020;
    padding: 5rem 0;
}

.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

@media (max-width: 992px) {
    .services-grid-clean {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid-clean {
        grid-template-columns: 1fr;
    }
}

.service-card-clean {
    background: #0B1322;
    border: 1px solid #1A2844;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.service-card-clean:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -5px rgba(0, 191, 255, 0.2), 0 8px 15px -3px rgba(0, 0, 0, 0.4);
    border-color: #38BDF8;
}

.service-card-top {
    margin-bottom: 1.5rem;
}

.service-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    transition: transform 0.25s ease;
}

.service-card-clean:hover .service-badge-icon {
    transform: scale(1.08);
}

/* Icon Badge Colors matching Screenshot 1 (Dark Theme Enhanced) */
.badge-blue { background: rgba(2, 132, 199, 0.18); color: #38BDF8; border: 1px solid rgba(56, 189, 248, 0.3); }
.badge-red { background: rgba(239, 68, 68, 0.18); color: #F87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-cyan { background: rgba(8, 145, 178, 0.18); color: #22D3EE; border: 1px solid rgba(34, 211, 238, 0.3); }
.badge-green { background: rgba(22, 163, 74, 0.18); color: #4ADE80; border: 1px solid rgba(74, 222, 128, 0.3); }
.badge-purple { background: rgba(147, 51, 234, 0.18); color: #C084FC; border: 1px solid rgba(192, 132, 252, 0.3); }
.badge-orange { background: rgba(234, 88, 12, 0.18); color: #FB923C; border: 1px solid rgba(251, 146, 60, 0.3); }
.badge-teal { background: rgba(13, 148, 136, 0.18); color: #2DD4BF; border: 1px solid rgba(45, 212, 191, 0.3); }
.badge-indigo { background: rgba(37, 99, 235, 0.18); color: #60A5FA; border: 1px solid rgba(96, 165, 250, 0.3); }
.badge-violet { background: rgba(124, 58, 237, 0.18); color: #A78BFA; border: 1px solid rgba(167, 139, 250, 0.3); }

.service-card-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.service-card-desc {
    font-size: 0.93rem;
    color: #94A3B8;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.service-card-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.service-card-clean:hover .service-card-link i {
    transform: translateX(4px);
}

.link-blue { color: #38BDF8; }
.link-red { color: #F87171; }
.link-cyan { color: #22D3EE; }
.link-green { color: #4ADE80; }
.link-purple { color: #C084FC; }
.link-orange { color: #FB923C; }
.link-teal { color: #2DD4BF; }
.link-indigo { color: #60A5FA; }
.link-violet { color: #A78BFA; }

/* ============================================
   SCREENSHOT 3: HIGH-TECH CYBER HERO & OMNIOS EDGE
   ============================================ */
.cyber-hero-section {
    position: relative;
    background-color: #040812;
    background-image: 
        radial-gradient(ellipse at 70% 30%, rgba(2, 132, 199, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        url('../img/cyber_globe_hero.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: #FFFFFF;
    padding: 6rem 0 7rem;
    overflow: hidden;
}

.cyber-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 8, 18, 0.95) 0%, rgba(4, 8, 18, 0.82) 50%, rgba(4, 8, 18, 0.6) 100%);
    z-index: 1;
}

.cyber-hero-content {
    position: relative;
    z-index: 2;
}

.hero-corp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    background: rgba(2, 132, 199, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #38BDF8;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-corp-pill .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38BDF8;
    box-shadow: 0 0 10px #38BDF8;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-tagline-caps {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.hero-main-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-main-title .gradient-text {
    background: linear-gradient(135deg, #38BDF8 0%, #00BFFF 50%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead-para {
    font-size: 1.18rem;
    color: #CBD5E1;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 2.25rem;
}

.hero-actions-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00BFFF 0%, #0047B8 100%);
    color: #FFFFFF;
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px -5px rgba(0, 191, 255, 0.4);
    transition: all 0.25s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 191, 255, 0.6);
    color: #FFFFFF;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #38BDF8;
    color: #38BDF8;
    transform: translateY(-2px);
}

.hero-key-badges {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.75rem;
    flex-wrap: wrap;
}

.hero-key-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-key-item i {
    color: #38BDF8;
    font-size: 1.25rem;
}

.hero-key-item span {
    font-size: 0.92rem;
    color: #94A3B8;
    font-weight: 500;
}

/* OmniOS Edge Technology Advantage Block */
.tech-advantage-section {
    padding: 6rem 0;
    background: #060B14;
}

.tech-advantage-banner {
    background: linear-gradient(135deg, #070D1D 0%, #0F1A30 100%);
    border: 1px solid #1A2844;
    border-radius: 24px;
    padding: 3.5rem;
    color: #FFFFFF;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.tech-advantage-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.tech-edge-logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.omnios-edge-badge {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #38BDF8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edge-sub-tag {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
}

.edge-pillar-text {
    color: #38BDF8;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

/* 5-Stage Lifecycle Stepper (Detect -> Investigate -> Decide -> Respond -> Improve) */
.lifecycle-stepper-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

@media (max-width: 992px) {
    .lifecycle-stepper-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lifecycle-stepper-5 {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(2, 132, 199, 0.12);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-4px);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0284C7;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 12px rgba(2, 132, 199, 0.6);
}

.step-icon {
    font-size: 1.75rem;
    color: #38BDF8;
    margin-bottom: 0.75rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.82rem;
    color: #94A3B8;
    line-height: 1.5;
    margin: 0;
}

/* Who We Are 4-Pillars */
.pillars-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .pillars-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pillars-grid-4 {
        grid-template-columns: 1fr;
    }
}

.pillar-item-box {
    background: #0B1322;
    border: 1px solid #1A2844;
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.pillar-item-box:hover {
    border-color: #38BDF8;
    box-shadow: 0 10px 25px -3px rgba(2, 132, 199, 0.2);
    transform: translateY(-3px);
}

.pillar-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(2, 132, 199, 0.15);
    color: #38BDF8;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(56, 189, 248, 0.25);
}

.pillar-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

/* Comprehensive Cybersecurity Services & Additional Services from Screenshot 3 */
.matrix-services-section {
    padding: 5rem 0;
    background-color: #081020;
}

.matrix-split-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .matrix-split-container {
        grid-template-columns: 1fr;
    }
}

.matrix-card-box {
    background: #0B1322;
    border: 1px solid #1A2844;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.matrix-header {
    border-bottom: 2px solid #16243E;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.matrix-badge-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #38BDF8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.cyber-checklist-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
}

@media (max-width: 640px) {
    .cyber-checklist-columns {
        grid-template-columns: 1fr;
    }
}

.cyber-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: #CBD5E1;
    font-weight: 500;
    line-height: 1.45;
}

.cyber-check-item i {
    color: #38BDF8;
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.additional-services-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.add-service-row {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.add-service-row:hover {
    background: rgba(2, 132, 199, 0.1);
}

.add-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(2, 132, 199, 0.15);
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.add-service-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}

.add-service-info p {
    font-size: 0.88rem;
    color: #94A3B8;
    margin: 0;
}

/* Industries We Serve (Screenshot 3) */
.industries-section {
    padding: 5rem 0;
    background: #060B14;
    color: #FFFFFF;
    border-top: 1px solid #1A2844;
    border-bottom: 1px solid #1A2844;
}

.industries-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

@media (max-width: 992px) {
    .industries-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-grid-8 {
        grid-template-columns: 1fr;
    }
}

.industry-card {
    background: #0B1322;
    border: 1px solid #1A2844;
    border-radius: 14px;
    padding: 1.75rem 1rem;
    text-align: center;
    transition: all 0.25s ease;
}

.industry-card:hover {
    background: rgba(2, 132, 199, 0.15);
    border-color: #38BDF8;
    transform: translateY(-3px);
}

.industry-card i {
    font-size: 2rem;
    color: #38BDF8;
    margin-bottom: 0.85rem;
}

.industry-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

/* Why Choose & Mission Section */
.why-mission-section {
    padding: 5rem 0;
    background: #081020;
}

.why-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .why-mission-grid {
        grid-template-columns: 1fr;
    }
}

.why-mission-grid strong {
    color: #FFFFFF;
}

.why-mission-grid span {
    color: #94A3B8;
}

.mission-banner-box {
    background: linear-gradient(135deg, #0A1E3F 0%, #030816 100%);
    border: 1px solid #1A2844;
    border-radius: 20px;
    padding: 3rem;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.mission-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #E2E8F0;
    font-weight: 400;
    margin-bottom: 2rem;
    font-style: italic;
}

.mission-tagline {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #38BDF8;
}

/* Footer Enhancements */
.footer-top-banner {
    background: #060D1E;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
}

.footer-badge-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #94A3B8;
    font-weight: 500;
}

.footer-badge-item i {
    color: #38BDF8;
}

.footer-badge-item.tech-powered {
    color: #E2E8F0;
    font-weight: 600;
}

.footer-badge-item.tech-powered strong {
    color: #38BDF8;
}

.footer-subsidiary-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(2, 132, 199, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    color: #38BDF8;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-security-seals {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.sec-seal {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94A3B8;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748B;
}

.footer-bottom-tagline {
    color: #38BDF8;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
}

/* ============================================
   SCREENSHOT 4: ANALYST WORKSPACE / PORTAL THEME
   ============================================ */
.analyst-layout-wrapper {
    display: flex;
    min-height: 100vh;
    background-color: #060B14;
    color: #E2E8F0;
    font-family: var(--font-primary);
}

.analyst-sidebar {
    width: 280px;
    background: #0B1322;
    border-right: 1px solid #1A2844;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.75rem 1.25rem;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 100;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .analyst-sidebar {
        position: fixed;
        left: -280px;
        transition: left 0.3s ease;
    }
    .analyst-sidebar.open {
        left: 0;
    }
}

.analyst-workspace-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #64748B;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.analyst-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.analyst-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.analyst-nav-link .nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.analyst-nav-link .nav-left i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.analyst-nav-link .nav-idx {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748B;
    font-mono: monospace;
}

.analyst-nav-link:hover {
    background: rgba(2, 132, 199, 0.1);
    color: #38BDF8;
    border-color: rgba(56, 189, 248, 0.2);
}

.analyst-nav-link.active {
    background: rgba(16, 185, 129, 0.12);
    border-color: #10B981;
    color: #10B981;
}

.analyst-nav-link.active .nav-idx {
    color: #10B981;
}

.analyst-sidebar-footer {
    border-top: 1px solid #1A2844;
    padding-top: 1.25rem;
}

.internal-ops-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.5rem;
}

.internal-ops-badge .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 10px #10B981;
    animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.internal-ops-text {
    font-size: 0.76rem;
    color: #64748B;
    line-height: 1.45;
    margin-bottom: 1.25rem;
}

.analyst-brand-block {
    display: flex;
    flex-direction: column;
}

.analyst-brand-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.3px;
}

.analyst-brand-sub {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #38BDF8;
}

/* Analyst Workspace Main Content */
.analyst-main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #060B14;
}

.analyst-top-bar {
    background: #0B1322;
    border-bottom: 1px solid #1A2844;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
}

.analyst-breadcrumb {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #64748B;
    text-transform: uppercase;
}

.analyst-content-body {
    padding: 2.25rem;
    flex: 1;
}

.analyst-welcome-card {
    background: linear-gradient(135deg, rgba(14, 26, 50, 0.85) 0%, rgba(8, 14, 28, 0.95) 100%), url('../img/cyber_globe_hero.jpg');
    background-size: cover;
    background-position: center right;
    border: 1px solid #1A2C4E;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.analyst-bottom-status-bar {
    background: #080E1A;
    border-top: 1px solid #1A2844;
    padding: 0.85rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #64748B;
    font-weight: 600;
    letter-spacing: 1px;
    flex-wrap: wrap;
    gap: 1rem;
}

.analyst-status-badges {
    display: flex;
    gap: 1.5rem;
}

.analyst-status-badge-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #94A3B8;
}

.analyst-status-badge-item i {
    color: #38BDF8;
}

.analyst-metric-card {
    background: #0B1322;
    border: 1px solid #1A2844;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.analyst-metric-card:hover {
    border-color: #0284C7;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.1);
}

.analyst-table-card {
    background: #0B1322;
    border: 1px solid #1A2844;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.analyst-table-card table {
    width: 100%;
    border-collapse: collapse;
    color: #E2E8F0;
}

.analyst-table-card th {
    background: #080E1A;
    padding: 1rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94A3B8;
    border-bottom: 1px solid #1A2844;
    text-align: left;
}

.analyst-table-card td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #121E33;
    font-size: 0.9rem;
}

.analyst-table-card tr:hover td {
    background: rgba(2, 132, 199, 0.05);
}