/**
 * SD CORE PVT LTD - Main Style sheet
 * Enterprise Technology Theme
 */

/* ==========================================================================
   1. CSS Variables & Theme Setup
   ========================================================================== */
:root {
    /* Brand Palette */
    --color-deep-navy: #020B17;
    --color-navy: #062B5F;
    --color-royal-blue: #0057D9;
    --color-charcoal: #20262D;
    --color-teal: #00A6A6;
    --color-cyan: #00D4FF;
    --color-white: #FFFFFF;
    --color-off-white: #F6F8FA;
    --color-silver: #D8DEE6;
    --color-muted: #6B7280;
    --color-border: #E5E7EB;
    --color-dark-card: #071727;
    --color-green: #10B981;
    --color-red: #EF4444;

    /* Theme Fonts */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Theme-specific Utility Classes */
    .font-sora { font-family: 'Sora', sans-serif; }
    .glow-line { background: linear-gradient(90deg, transparent, #00A6A6, transparent); height: 1px; width: 100%; }
    .glass-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.5); }
    .tech-grid { background-image: radial-gradient(#D8DEE6 1px, transparent 1px); background-size: 30px 30px; }

    /* Standard Spacing & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 8px rgba(2, 11, 23, 0.04);
    --shadow-md: 0 12px 30px rgba(2, 11, 23, 0.08);
    --shadow-lg: 0 20px 50px rgba(2, 11, 23, 0.12);
}

/* Logo CSS variables for light/dark layout overrides */
.logo-light {
    --logo-blue: var(--color-deep-navy);
    --logo-grey: var(--color-charcoal);
    --logo-text: var(--color-deep-navy);
    --logo-text-muted: var(--color-muted);
}

.logo-dark {
    --logo-blue: var(--color-royal-blue);
    --logo-grey: var(--color-white);
    --logo-text: var(--color-white);
    --logo-text-muted: var(--color-cyan);
}

/* ==========================================================================
   2. Reset & Global Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Core helper wrappers */
.container {
    width: 100%;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.relative-z {
    position: relative;
    z-index: 5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    outline: none;
}

/* Section Header Typography */
.section-header {
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-royal-blue);
    margin-bottom: 12px;
}

.section-tag.tag-cyan {
    color: var(--color-cyan);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-title.text-navy {
    color: var(--color-deep-navy);
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-muted);
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.7;
}


/* Professional inline icon system */
.icon-svg {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    vertical-align: -0.15em;
}
.icon-fill {
    fill: currentColor;
    stroke: none;
}
.list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--color-teal);
}
.status-dot {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
    background-color: currentColor;
    margin-right: 6px;
    box-shadow: 0 0 0 4px rgba(0, 166, 166, 0.12);
}

/* ==========================================================================
   3. Loading Experience (Preloader)
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-deep-navy);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    width: 280px;
}

.preloader-logo {
    margin-bottom: 24px;
    opacity: 0;
    transform: scale(0.9);
    animation: preloader-logo-fade 0.8s ease forwards 0.2s;
}

.preloader-bar {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-royal-blue), var(--color-cyan));
    animation: preloader-progress-animation 1.5s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}

@keyframes preloader-logo-fade {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes preloader-progress-animation {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ==========================================================================
   4. Sticky Corporate Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

.site-header.sticky {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px border var(--color-border);
    box-shadow: var(--shadow-sm);
}

.site-header.sticky-dark {
    background-color: rgba(2, 11, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* Toggle header logos based on stickiness and theme */
.site-header .logo-dark {
    display: none;
}

.site-header .logo-light {
    display: block;
}

/* Dark mode configurations for pages like Home or dark subheadings */
.site-header.transparent-header .logo-light {
    display: none;
}

.site-header.transparent-header .logo-dark {
    display: block;
}

.site-header.transparent-header.sticky .logo-light {
    display: block;
}

.site-header.transparent-header.sticky .logo-dark {
    display: none;
}

/* Navigation Links */
.desktop-nav {
    display: block;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-charcoal);
    position: relative;
    padding: 8px 0;
}

.site-header.transparent-header .nav-link {
    color: var(--color-white);
}

.site-header.transparent-header.sticky .nav-link {
    color: var(--color-charcoal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-royal-blue);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Action CTA */
.btn-header {
    padding: 10px 24px !important;
    font-size: 13px !important;
}

/* ==========================================================================
   5. Buttons Styles (Premium corporate grade)
   ========================================================================== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #020B17 0%, #062B5F 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 166, 166, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 166, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--color-deep-navy);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-off-white);
    transform: translateY(-2px);
}

/* Buttons on Dark backgrounds */
.btn-secondary.border-white {
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary.border-white:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-white);
}

.bg-cyan-glow {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-cyan) 100%);
    color: var(--color-deep-navy);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
    border: none;
}

.bg-cyan-glow:hover {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
    color: var(--color-deep-navy);
}

.w-full {
    width: 100%;
}

/* ==========================================================================
   6. Hero Slider Section (With interactive canvas/dashboard visual)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    background-color: var(--color-deep-navy);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(0, 87, 217, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.slide-content {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.slide-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease forwards 0.4s, transform 0.6s ease forwards 0.4s;
}

.slide.active .slide-text {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    display: inline-block;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 24px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    background-color: rgba(0, 212, 255, 0.04);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-silver);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Slider Controls (Arrows) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background-color: var(--color-royal-blue);
    border-color: var(--color-royal-blue);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
    left: 24px;
}

.slider-arrow.next {
    right: 24px;
}

/* Dots Indicators */
.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--color-cyan);
}

/* ==========================================================================
   6a. Dashboard Mockup Design (High-end CSS Artistry)
   ========================================================================== */
.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease forwards 0.3s, transform 0.8s ease forwards 0.3s;
}

.slide.active .slide-visual {
    opacity: 1;
    transform: scale(1);
}

.tech-dashboard-mockup {
    position: relative;
    width: 440px;
    height: 380px;
    background-color: rgba(7, 23, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
}

.mockup-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Floating Glassmorphism Cards */
.floating-card {
    position: absolute;
    background-color: rgba(7, 23, 39, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    padding: 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 5;
    animation: floating-bounce 4s ease-in-out infinite;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0,212,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 12px;
}

.floating-card h4 {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--color-silver);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-cyan);
}

.badge-online {
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.card-icon {
    color: var(--color-cyan);
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.08);
}

.card-icon .icon-svg {
    width: 18px;
    height: 18px;
}

/* Positionings for slide 1 cards */
.stat-card-1 {
    top: 40px;
    left: -20px;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: 50px;
    right: -20px;
    animation-delay: 1.5s;
}

.stat-card-3 {
    top: 210px;
    left: -40px;
    animation-delay: 0.8s;
}

/* Mini chart inside stat card 3 */
.mini-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 24px;
    margin-top: 4px;
}

.mini-bar-chart span {
    width: 4px;
    background-color: var(--color-royal-blue);
    border-radius: 2px;
}

/* Central Core Glow */
.central-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.core-ring-1, .core-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.core-ring-1 {
    width: 120px;
    height: 120px;
    border: 1px dashed rgba(0, 212, 255, 0.2);
    animation: rotate-clockwise 15s linear infinite;
}

.core-ring-2 {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0, 166, 166, 0.15);
    animation: rotate-counter-clockwise 10s linear infinite;
}

.core-point {
    width: 12px;
    height: 12px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-cyan);
    transform: translate(-50%, -50%);
}

@keyframes floating-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate-clockwise {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-counter-clockwise {
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Dashboard Mockup Variation 2 (Website structure wireframe) */
.dashboard-wireframe {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    background-color: rgba(2, 11, 23, 0.8);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wireframe-header {
    height: 28px;
    background-color: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}

.wireframe-header .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
}

.wireframe-body {
    flex: 1;
    display: flex;
}

.sidebar-mock {
    width: 60px;
    border-right: 1px solid rgba(255,255,255,0.05);
    background-color: rgba(255,255,255,0.01);
}

.main-mock {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.grid-mock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.block-mock {
    height: 40px;
    background-color: rgba(0, 87, 217, 0.1);
    border: 1px solid rgba(0, 87, 217, 0.2);
    border-radius: 4px;
}

.line-mock {
    height: 6px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 2px;
    width: 60%;
}

.line-mock.long {
    width: 90%;
}

.floating-badge {
    position: absolute;
    background-color: var(--color-deep-navy);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-top {
    top: 30px;
    right: 20px;
}

.badge-bottom {
    bottom: 30px;
    left: 20px;
}

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

/* Dashboard Mockup Variation 3 (LMS Network Nodes) */
.network-node {
    position: absolute;
    background-color: var(--color-deep-navy);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--color-white);
    font-weight: 600;
}

.node-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-royal-blue);
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0,212,255,0.3);
}

.node-t {
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.node-s {
    bottom: 15%;
    left: 15%;
}

.node-a {
    bottom: 15%;
    right: 15%;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stat-card-mini {
    bottom: 150px;
    right: -20px;
}

/* ==========================================================================
   7. Trust Strip Section
   ========================================================================== */
.trust-strip-section {
    background-color: var(--color-deep-navy);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 32px 0;
    position: relative;
    z-index: 10;
}

.trust-strip {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--color-cyan);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.trust-icon .icon-svg {
    width: 22px;
    height: 22px;
}

.trust-text h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
}

.trust-text p {
    color: var(--color-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ==========================================================================
   8. Services Bento Grid Section
   ========================================================================== */
.services-bento-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bento-card {
    position: relative;
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    padding: 40px;
    transition: var(--transition-normal);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--color-white);
    border-color: rgba(0, 87, 217, 0.2);
}

/* Bento card sizing rules */
.card-marketing, .card-logistics {
    grid-column: span 5;
}

.card-web, .card-lms {
    grid-column: span 7;
}

.card-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0, 87, 217, 0.03) 0%, transparent 60%);
    pointer-events: none;
    transition: var(--transition-normal);
}

.bento-card:hover .card-bg-glow {
    background: radial-gradient(circle at 10% 10%, rgba(0, 87, 217, 0.08) 0%, transparent 60%);
}

.card-inner {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    transition: var(--transition-normal);
}

.bento-card:hover .card-header-icon {
    border-color: rgba(0, 87, 217, 0.3);
    box-shadow: var(--shadow-sm);
}

.stroke-teal { color: var(--color-teal); }
.stroke-royal { color: var(--color-royal-blue); }
.stroke-cyan { color: var(--color-cyan); }

.card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 12px;
}

.card-desc {
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.card-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.card-bullets li .list-icon {
    color: var(--color-teal);
}

.card-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-royal-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link svg {
    transition: transform var(--transition-fast);
}

.card-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   9. Services Slider (Carousel) Section
   ========================================================================== */
.services-slider-section {
    padding: 100px 0;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.carousel-controls {
    display: flex;
    gap: 12px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-deep-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-arrow:hover {
    background-color: var(--color-royal-blue);
    border-color: var(--color-royal-blue);
    color: var(--color-white);
}

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

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform var(--transition-normal);
}

.carousel-card {
    flex: 0 0 calc((100% - 48px) / 3); /* Default 3 columns visible */
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.carousel-card:hover {
    border-color: var(--color-teal);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.cc-header {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 12px;
}

.cc-text {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
}

.carousel-dots-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-silver);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dots span.active {
    background-color: var(--color-royal-blue);
    width: 16px;
    border-radius: 4px;
}

/* ==========================================================================
   10. Why SD CORE Section (Strategic trust metrics)
   ========================================================================== */
.why-sdcore-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition-normal);
}

.why-card:hover {
    background-color: var(--color-deep-navy);
    border-color: var(--color-deep-navy);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-num {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-royal-blue);
    margin-bottom: 24px;
}

.why-card:hover .why-num {
    color: var(--color-cyan);
}

.why-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.why-card:hover .why-title {
    color: var(--color-white);
}

.why-desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    transition: var(--transition-fast);
}

.why-card:hover .why-desc {
    color: var(--color-silver);
}

/* ==========================================================================
   11. Technology Solutions Section (Immersive Dark Grid Layout)
   ========================================================================== */
.tech-solutions-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.grid-animation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
}

.glow-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.glow-card {
    position: relative;
    background-color: var(--color-dark-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 32px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.glow-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0,212,255,0.1);
}

.gc-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gc-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.gc-desc {
    font-size: 13.5px;
    color: var(--color-silver);
    line-height: 1.6;
}

/* ==========================================================================
   12. Process Section
   ========================================================================== */
.process-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.timeline-line {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 5;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-royal-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.process-step:hover .step-number {
    background-color: var(--color-royal-blue);
    border-color: var(--color-royal-blue);
    color: var(--color-white);
    box-shadow: 0 0 15px rgba(0, 87, 217, 0.4);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 13.5px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ==========================================================================
   13. Case Study (Portfolio) Slider Section
   ========================================================================== */
.portfolio-slider-section {
    padding: 100px 0;
}

.portfolio-card {
    flex: 0 0 100%; /* Shows 1 card at a time */
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 48px;
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    gap: 48px;
    align-items: center;
    transition: var(--transition-normal);
}

.portfolio-card:hover {
    box-shadow: var(--shadow-md);
}

.p-category {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 8px;
}

.p-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-deep-navy);
}

.p-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-text-line {
    font-size: 15px;
    color: var(--color-charcoal);
    line-height: 1.6;
}

.p-text-line strong {
    color: var(--color-deep-navy);
}

.p-result {
    border-left: 3px solid var(--color-teal);
    padding-left: 16px;
    font-weight: 500;
    color: var(--color-navy);
}

/* ==========================================================================
   14. Industries Section
   ========================================================================== */
.industries-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.industry-card {
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.industry-card:hover {
    background-color: var(--color-white);
    border-color: rgba(0, 166, 166, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.ind-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    color: var(--color-royal-blue);
    background: linear-gradient(135deg, rgba(0, 87, 217, 0.08), rgba(0, 166, 166, 0.08));
    border: 1px solid rgba(0, 87, 217, 0.12);
}

.ind-icon .icon-svg {
    width: 30px;
    height: 30px;
}

.industry-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-deep-navy);
}

/* ==========================================================================
   15. Testimonials Section
   ========================================================================== */
.testimonial-section {
    padding: 100px 0;
}

.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 48px auto 0 auto;
    min-height: 220px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.star-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    color: var(--color-teal);
}

.star-icon {
    width: 18px;
    height: 18px;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-deep-navy);
    margin-bottom: 32px;
    position: relative;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-deep-navy);
    font-style: normal;
}

.author-company {
    font-size: 12px;
    color: var(--color-muted);
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-silver);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dots span.active {
    background-color: var(--color-royal-blue);
    width: 16px;
    border-radius: 4px;
}

/* ==========================================================================
   16. Accordion FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.faq-accordion-list {
    max-width: 740px;
    margin: 48px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background-color: var(--color-white);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(0, 87, 217, 0.2);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-deep-navy);
    cursor: pointer;
}

.faq-icon-symbol {
    font-size: 18px;
    color: var(--color-royal-blue);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon-symbol {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

.faq-content p {
    font-size: 14.5px;
    color: var(--color-muted);
    line-height: 1.6;
    padding-bottom: 24px;
}

/* ==========================================================================
   17. Final CTA / Static Pages Hero
   ========================================================================== */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-decor-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 42px;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 17px;
    color: var(--color-silver);
    max-width: 580px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   18. Static Pages Common Elements
   ========================================================================== */
.inner-hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.inner-hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 87, 217, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.badge-cyan {
    color: var(--color-cyan);
    border-color: rgba(0, 212, 255, 0.2);
    background-color: rgba(0, 212, 255, 0.05);
}

.inner-hero-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--color-white);
}

.inner-hero-subtitle {
    font-size: 17px;
    color: var(--color-silver);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   19. About Page Subsections
   ========================================================================== */
.about-intro-section {
    padding: 100px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1.6;
    margin-bottom: 24px;
}

.body-text {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro-metrics-panel {
    position: relative;
    background-color: var(--color-deep-navy);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}

.about-metrics-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0, 87, 217, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.metric-block {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 24px;
}

.metric-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.metric-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    color: var(--color-cyan);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-silver);
    font-weight: 600;
}

/* Mission Vision Triad */
.mission-vision-section {
    padding: 100px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mv-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 48px;
    transition: var(--transition-normal);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 16px;
    color: var(--color-royal-blue);
    background: rgba(0, 87, 217, 0.06);
    border: 1px solid rgba(0, 87, 217, 0.12);
}

.mv-icon .icon-svg {
    width: 34px;
    height: 34px;
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 16px;
}

.mv-desc {
    font-size: 15.5px;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Values Grid */
.values-wrapper {
    margin-top: 80px;
}

.values-header {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    transition: var(--transition-normal);
}

.value-item:hover {
    border-color: rgba(0, 166, 166, 0.3);
}

.v-num {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-teal);
    display: block;
    margin-bottom: 16px;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-deep-navy);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 12px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Strategic Framework */
.about-framework-section {
    padding: 100px 0;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.framework-card {
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
}

.framework-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-deep-navy);
    margin-bottom: 16px;
}

.framework-card p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ==========================================================================
   20. Services Page Subsections
   ========================================================================== */
.service-details-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.service-details-grid.grid-reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.service-details-grid.grid-reverse .sd-text {
    grid-column: 2;
}

.service-details-grid.grid-reverse .sd-visual {
    grid-column: 1;
    grid-row: 1;
}

.sd-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 12px;
}

.sd-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 34px;
    color: var(--color-deep-navy);
    margin-bottom: 16px;
}

.sd-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1.6;
    margin-bottom: 24px;
}

.sd-desc {
    font-size: 14.5px;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.sd-capabilities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.sc-item h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-deep-navy);
    margin-bottom: 6px;
}

.sc-item p {
    font-size: 12.5px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Service visual mockups */
.sd-visual {
    display: flex;
    justify-content: center;
}

.service-mockup-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 320px;
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 32px;
}

/* Card Mockup Variants */
.sm-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    position: absolute;
    width: 200px;
}

.sm-card-primary {
    top: 40px;
    left: 20px;
    z-index: 5;
}

.sm-card-secondary {
    bottom: 40px;
    right: 20px;
    z-index: 3;
    width: 220px;
}

.sm-card h4 {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--color-muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.sm-stat {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-deep-navy);
}

.trend-up {
    color: var(--color-green);
    font-size: 12px;
}

.sm-progress-bar {
    width: 100%;
    height: 4px;
    background-color: var(--color-border);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.sm-progress-bar span {
    display: block;
    height: 100%;
    background-color: var(--color-teal);
}

.sm-card-secondary ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
}

.sm-card-secondary ul li {
    display: flex;
    justify-content: space-between;
}

/* Code visual mockup */
.code-mockup {
    background-color: #0d1117;
    border-color: rgba(255,255,255,0.05);
    padding: 24px;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.code-header .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
}

.file-tab {
    color: #8b949e;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    margin-left: 10px;
}

.code-body {
    color: #c9d1d9;
    font-size: 12.5px;
    line-height: 1.7;
    font-family: 'Courier New', Courier, monospace;
}

.font-mono {
    font-family: 'Courier New', Courier, monospace;
}

.c-keyword { color: #ff7b72; }
.c-class { color: #ffa657; }
.c-func { color: #d2a8ff; }
.c-var { color: #79c0ff; }
.c-string { color: #a5d6ff; }

/* LMS mockup */
.lms-mockup {
    background-color: var(--color-deep-navy);
    border-color: rgba(255,255,255,0.05);
    color: var(--color-white);
}

.lms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.lms-header h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
}

.stud-badge {
    background-color: var(--color-cyan);
    color: var(--color-deep-navy);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.video-placeholder {
    height: 140px;
    background-color: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--color-silver);
    margin-bottom: 16px;
}

.pdf-item {
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 11px;
    color: var(--color-cyan);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pdf-file-icon {
    width: 14px;
    height: 14px;
}

/* Cargo Mockup */
.cargo-mockup {
    background-color: var(--color-white);
}

.cargo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.cargo-header h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--color-deep-navy);
}

.tracking-no {
    font-size: 10px;
    font-weight: 600;
    background-color: var(--color-off-white);
    padding: 4px 10px;
    border-radius: 4px;
}

.cargo-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cargo-steps li {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 9px;
}

.cargo-steps li.completed {
    color: var(--color-deep-navy);
}

.cargo-steps li.active {
    color: var(--color-royal-blue);
    font-weight: 600;
}

.cargo-status-icon,
.cargo-status-dot,
.cargo-status-empty {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.cargo-check-icon {
    width: 15px;
    height: 15px;
    color: var(--color-teal);
}

.cargo-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--color-royal-blue);
    box-shadow: 0 0 0 4px rgba(0, 87, 217, 0.08);
    margin-left: 3px;
}

.cargo-status-empty {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    margin-left: 2px;
}

/* ==========================================================================
   21. Solutions Page Subsections (Comparison grid)
   ========================================================================== */
.solutions-packages-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.package-card {
    position: relative;
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 87, 217, 0.2);
}

.package-card.featured-package {
    background-color: var(--color-deep-navy);
    border-color: var(--color-royal-blue);
    color: var(--color-white);
    box-shadow: 0 15px 40px rgba(0, 87, 217, 0.15);
}

.package-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 16px;
}

.package-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-royal-blue);
    margin-bottom: 20px;
}

.package-card.featured-package .package-badge {
    color: var(--color-cyan);
}

.package-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 12px;
}

.package-card.featured-package .package-title {
    color: var(--color-white);
}

.package-desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.package-card.featured-package .package-desc {
    color: var(--color-silver);
}

.package-price-line {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.package-card.featured-package .package-price-line {
    border-color: rgba(255,255,255,0.1);
}

.price-basis {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-muted);
    font-weight: 500;
}

.package-card.featured-package .price-basis {
    color: var(--color-silver);
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.package-features li {
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-charcoal);
}

.package-card.featured-package .package-features li {
    color: var(--color-silver);
}

.package-features li .list-icon {
    color: var(--color-teal);
}

.package-card.featured-package .package-features li .list-icon {
    color: var(--color-cyan);
}

/* Comparison Table */
.solutions-comparison {
    padding: 100px 0;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
    margin-top: 48px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    min-width: 700px;
}

.comparison-table th, .comparison-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.comparison-table th {
    background-color: var(--color-deep-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--color-deep-navy);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* ==========================================================================
   22a. Portfolio Page Subsections
   ========================================================================== */
.portfolio-cases-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.portfolio-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.portfolio-case-card {
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.portfolio-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 87, 217, 0.2);
}

.pcc-image-placeholder {
    height: 200px;
    background-color: var(--color-deep-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pcc-image-placeholder span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: rgba(255,255,255,0.15);
    letter-spacing: 1px;
}

.pcc-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0,212,255,0.1) 0%, transparent 60%);
}

.pcc-content {
    padding: 32px;
}

.pcc-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.tag-cyan { color: var(--color-teal); }
.tag-blue { color: var(--color-royal-blue); }
.tag-teal { color: var(--color-teal); }

.pcc-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 16px;
}

.pcc-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pcc-line {
    font-size: 13.5px;
    color: var(--color-muted);
    line-height: 1.6;
}

.pcc-line strong {
    color: var(--color-charcoal);
}

.pcc-result {
    border-left: 2px solid var(--color-teal);
    padding-left: 12px;
    color: var(--color-navy);
    font-weight: 500;
}

/* ==========================================================================
   23. Industries Page Subsections
   ========================================================================== */
.industries-detailed-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.ind-detail-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 48px;
    margin-bottom: 48px;
}

.ind-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.ind-detail-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--color-royal-blue);
    background: linear-gradient(135deg, rgba(0, 87, 217, 0.08), rgba(0, 166, 166, 0.08));
    border: 1px solid rgba(0, 87, 217, 0.14);
}

.ind-detail-icon .icon-svg {
    width: 36px;
    height: 36px;
}

.ind-detail-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 12px;
}

.ind-detail-desc {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ind-solutions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ind-solutions-tags span {
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-charcoal);
}

/* ==========================================================================
   24. Contact Page Subsections
   ========================================================================== */
.contact-grid-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: flex-start;
}

.cd-lead {
    font-size: 15.5px;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cd-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.cd-info-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: center;
}

.cd-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-royal-blue);
}

.cd-icon-box .icon-svg {
    width: 22px;
    height: 22px;
}

.cd-info-text h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 4px;
}

.cd-info-text p {
    font-size: 13.5px;
    color: var(--color-muted);
}

.cd-link {
    color: var(--color-royal-blue);
    font-weight: 500;
}

.cd-link:hover {
    text-decoration: underline;
}

/* Map Mockup */
.contact-map-placeholder {
    height: 160px;
    background-color: var(--color-deep-navy);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
}

.map-inner-card {
    position: relative;
    z-index: 5;
    background-color: rgba(7, 23, 39, 0.85);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
}

.map-marker {
    width: 36px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
    color: var(--color-cyan);
    animation: floating-bounce 2s ease-in-out infinite;
}

.map-marker .icon-svg {
    width: 24px;
    height: 24px;
}

.map-inner-card h5 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 12px;
}

.map-inner-card p {
    font-size: 10px;
    color: var(--color-cyan);
}

/* Contact form container styling */
.contact-form-panel {
    position: relative;
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 48px;
    overflow: hidden;
}

.form-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0, 166, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 16px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 8px;
}

.form-desc {
    font-size: 13.5px;
    color: var(--color-muted);
    margin-bottom: 32px;
}

/* Alert Boxes (Success / Errors) */
.form-alert {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.5;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--color-green);
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--color-red);
}

.alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.alert-svg {
    width: 18px;
    height: 18px;
}

.alert-list {
    list-style: disc;
    padding-left: 16px;
}

/* Inputs & Form Controls */
.corporate-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 5;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-deep-navy);
}

.required {
    color: var(--color-red);
}

.form-control {
    width: 100%;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--color-charcoal);
    transition: var(--transition-fast);
}

.form-control::placeholder {
    color: var(--color-silver);
}

.form-control:focus {
    border-color: var(--color-royal-blue);
    box-shadow: 0 0 0 3px rgba(0, 87, 217, 0.1);
}

.select-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.textarea-control {
    resize: vertical;
}

/* ==========================================================================
   25. Dark Corporate Footer Style
   ========================================================================== */
.site-footer {
    position: relative;
    background-color: var(--color-deep-navy);
    color: var(--color-silver);
    padding: 80px 0 0 0;
    overflow: hidden;
}

.footer-top-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.footer-glow-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--color-teal) 30%, var(--color-cyan) 50%, var(--color-royal-blue) 70%, transparent 100%);
}

.footer-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 56px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-about-text {
    font-size: 13.5px;
    color: var(--color-silver);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-silver);
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-royal-blue);
    border-color: var(--color-royal-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--color-silver);
}

.footer-links a:hover {
    color: var(--color-cyan);
    padding-left: 4px;
}

/* Contact Column */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--color-silver);
}

.contact-item svg {
    color: var(--color-cyan);
    margin-top: 2px;
}

.contact-item a:hover {
    color: var(--color-cyan);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.copyright {
    font-size: 12px;
    color: var(--color-muted);
}

.sri-lanka-stamp {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
}

/* ==========================================================================
   26. Interactive Mobile Navigation Overlay
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: var(--transition-normal);
}

.site-header.transparent-header .hamburger-bar {
    background-color: var(--color-white);
}

.site-header.transparent-header.sticky .hamburger-bar {
    background-color: var(--color-charcoal);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-deep-navy);
    z-index: 999;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    padding: 0 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 48px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
}

.mobile-nav-link.active {
    color: var(--color-cyan);
}

.mobile-menu-cta {
    margin-top: auto;
}

.mobile-menu-contact-info {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
}

.mobile-menu-contact-info .phone {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 4px;
}

.mobile-menu-contact-info .email {
    color: var(--color-cyan);
}

/* Close/Open animations for burger bars */
.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-white) !important;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-white) !important;
}

/* ==========================================================================
   27. Scroll Reveal Animation Classes
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================================== 
   Production visual corrections - hero, buttons, and partner logo wall
   ========================================================================== */
.site-header.sticky {
    border-bottom: 1px solid var(--color-border);
}

.site-header.transparent-header .btn-header {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-teal) 100%);
    color: var(--color-deep-navy);
    box-shadow: 0 10px 28px rgba(0, 212, 255, 0.18);
}

.site-header.transparent-header.sticky .btn-header {
    background: linear-gradient(135deg, #020B17 0%, #062B5F 100%);
    color: var(--color-white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    padding: 13px 24px;
    border-radius: 12px;
    line-height: 1.2;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #00D4FF 0%, #00A6A6 100%);
    color: var(--color-deep-navy);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 14px 32px rgba(0, 166, 166, 0.22);
}

.btn-primary:hover {
    color: var(--color-deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0, 166, 166, 0.32);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.86);
    color: var(--color-deep-navy);
    border: 1px solid rgba(2, 11, 23, 0.1);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-white);
    border-color: rgba(0, 166, 166, 0.28);
    transform: translateY(-2px);
}

.hero-actions .btn-secondary,
.bg-navy .btn-secondary,
.final-cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.hero-actions .btn-secondary:hover,
.bg-navy .btn-secondary:hover,
.final-cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.hero-slider-section {
    height: clamp(720px, 86vh, 860px);
    min-height: 720px;
    background:
        radial-gradient(circle at 75% 20%, rgba(0, 212, 255, 0.13) 0%, transparent 34%),
        linear-gradient(135deg, #020B17 0%, #062B5F 58%, #020B17 100%);
}

.hero-slider-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    opacity: .55;
    z-index: 1;
}

.slide {
    align-items: center;
}

.slide-content {
    padding: 96px 32px 128px;
    grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
    gap: 60px;
}

.hero-title {
    max-width: 790px;
    font-size: clamp(44px, 3.35vw, 64px);
    line-height: 1.06;
    letter-spacing: -2.4px;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 680px;
    margin-bottom: 30px;
}

.hero-actions {
    align-items: center;
    flex-wrap: wrap;
}

.slider-arrow {
    top: auto;
    bottom: 44px;
    transform: none;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    transform: translateY(-2px);
    background: rgba(0, 212, 255, 0.18);
    border-color: rgba(0, 212, 255, 0.45);
}

.slider-arrow.prev {
    left: max(24px, calc((100vw - 1240px) / 2 + 32px));
}

.slider-arrow.next {
    left: max(82px, calc((100vw - 1240px) / 2 + 90px));
    right: auto;
}

.slider-dots {
    left: max(148px, calc((100vw - 1240px) / 2 + 156px));
    bottom: 62px;
    transform: none;
}

.trust-strip-section {
    background: #020B17;
    padding: 24px 0;
}

.trust-strip {
    align-items: stretch;
}

.trust-item {
    flex: 1 1 190px;
    min-width: 185px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.partner-ecosystem-section {
    position: relative;
    padding: 84px 0 92px;
    background:
        radial-gradient(circle at 16% 20%, rgba(0, 166, 166, 0.08), transparent 28%),
        linear-gradient(180deg, #F6F8FB 0%, #FFFFFF 100%);
    overflow: hidden;
}

.partner-ecosystem-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    background: linear-gradient(180deg, var(--color-cyan), var(--color-teal), var(--color-royal-blue));
}

.partner-ecosystem-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.partner-rail {
    position: sticky;
    top: 110px;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(160deg, #020B17 0%, #062B5F 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.partner-rail::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.14);
    filter: blur(8px);
}

.rail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 18px;
}

.rail-kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-cyan);
    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.13);
}

.partner-rail h2 {
    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1.18;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.partner-rail p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

.partner-wall-wrap {
    min-width: 0;
}

.partner-wall-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.partner-wall-header .section-tag {
    margin-bottom: 0;
}

.partner-wall-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.2;
    color: var(--color-deep-navy);
}

.partner-logo-wall {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.partner-logo-card {
    min-width: 0;
    height: 78px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(216, 222, 230, 0.95);
    box-shadow: 0 10px 26px rgba(2, 11, 23, 0.045);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 16px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.partner-logo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 166, 166, 0.3);
    box-shadow: 0 18px 38px rgba(2, 11, 23, 0.08);
}

.partner-logo-card img {
    display: block;
    width: 100%;
    max-width: 160px;
    max-height: 48px;
    object-fit: contain;
}

.delivery-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0, 166, 166, 0.08);
    border: 1px solid rgba(0, 166, 166, 0.16);
    color: var(--color-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
