
/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ===============================
       BRAND CORE (WF LOGO MATCHED)
       =============================== */
--primary-blue: #1F5EDC;          /* Logo blue */
    --primary-blue-dark: #163EA8;     /* Deeper blue */
    --accent-orange: #F97316;         /* Logo orange */

    --secondary-navy: #0F172A;        /* Enterprise dark */
    --neutral-light: #F8FAFF;
    --neutral-grey: #E2E8F0;
    --neutral-dark: #475569;

    --compliance-green: #059669;
    --warning-orange: var(--accent-orange);
    --risk-red: #DC2626;

    /* Shadows */
    --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.12);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.18);
    --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.35);

    /* ===============================
       RADII
       =============================== */

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* ===============================
       SPACING (UNCHANGED)
       =============================== */

    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
}



body {
   font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--secondary-navy);
    background-color: white;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
   font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--neutral-dark);
}

.text-white {
    color: white;
}

.text-light {
    color: rgba(255, 255, 255, 0.9);
}

.text-center {
    text-align: center;
}

/* Grid System */
.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-lg);
}

.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

/* Spacing Utilities */
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    gap: var(--spacing-sm);
}

.btn-primary {
    background-color:#0B78B5;
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-blue);
    border: 1px solid var(--neutral-grey);
}

.btn-secondary:hover {
    background-color: var(--neutral-light);
    border-color: var(--primary-blue);
}

.btn-small {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.875rem;
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1rem;
}

/* Header */
.header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 80px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}


.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 50px;
}

.logo-img {
    height: 60px; /* adjust as needed */
    width: auto;
}


.logo-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-weight: 700;
    color: var(--secondary-navy);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--neutral-dark);
}

.main-nav {
    display: flex;
    gap: var(--spacing-xl);
     background: #ffffff;
     
}


.nav-link {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    color: var(--neutral-dark);
    font-size: 1.30rem;
    font-weight: 700;
    transition: color 0.2s;
    padding: var(--spacing-sm) 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-blue);
    border-radius: 1px;
}

.header-actions {
    display: flex;
    gap: var(--spacing-md);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--neutral-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: var(--spacing-3xl) 0;
    background: var(--neutral-light);
}

.hero-content {
    padding-right: var(--spacing-2xl);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-navy);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-2xl);
    color: var(--neutral-dark);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.trust-badges {
    display: flex;
    gap: var(--spacing-xl);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--neutral-dark);
}

.badge i {
    color: #2563EB;
}

.hero-image {
    max-width: 600px;
    margin: auto;
}

.hero-dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    aspect-ratio: 3 / 2;   /* matches 1368×912 */
}


.placeholder-label {
    font-size: 0.75rem;
    color: var(--neutral-dark);
    background-color: var(--neutral-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.dashboard-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.dashboard-card {
    background-color: var(--neutral-light);
    border-radius: var(--radius-md);
    height: 80px;
}

.dashboard-chart {
    background-color: var(--neutral-light);
    border-radius: var(--radius-md);
    flex: 1;
}

/* Section Styles */
.section {
    padding: var(--spacing-3xl) 0;
}

.bg-light {
    background-color: var(--neutral-light);
}

.bg-dark {
    background-color: var(--secondary-navy);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-dark);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

/* Feature Cards */
.feature-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.feature-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--neutral-light);
    color: var(--primary-blue);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: var(--spacing-md);
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.checklist-item {
    display: flex;
    gap: var(--spacing-md);
}

.checklist-item i {
    color: var(--compliance-green);
    font-size: 1.25rem;
    margin-top: var(--spacing-xs);
}

/* Compliance Badges */
.compliance-badges {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.badge-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.badge-status {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: var(--spacing-md);
}

.badge-status.active {
    background-color: rgba(5, 150, 105, 0.1);
    color: var(--compliance-green);
}

.badge-status.compliant {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.badge-placeholder {
    background-color: white;
    border: 1px dashed var(--neutral-grey);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    font-weight: 500;
    color: var(--neutral-dark);
}

/* Tier Cards */
.tier-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
    border-top: 4px solid var(--neutral-grey);
}

.tier-1 {
    border-top-color: var(--primary-blue);
}

.tier-2 {
    border-top-color: var(--compliance-green);
}

.tier-3 {
    border-top-color: var(--warning-orange);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.tier-icon {
    width: 48px;
    height: 48px;
    background-color: var(--neutral-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.tier-1 .tier-icon {
    color: var(--primary-blue);
}

.tier-2 .tier-icon {
    color: var(--compliance-green);
}

.tier-3 .tier-icon {
    color: var(--warning-orange);
}

.tier-badge {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.tier-1 .tier-badge {
    background-color: rgba(26, 86, 219, 0.1);
    color: var(--primary-blue);
}

.tier-2 .tier-badge {
    background-color: rgba(5, 150, 105, 0.1);
    color: var(--compliance-green);
}

.tier-3 .tier-badge {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-orange);
}

.tier-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.tier-features i {
    color:#005fd6;
    font-size: 0.875rem;
}

.tier-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--neutral-grey);
    padding-top: var(--spacing-lg);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-navy);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--neutral-dark);
}

/* Services Cards */
.Services-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform 0.2s;
}

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

.Services-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.Services-kpi {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--neutral-light);
    color: var(--primary-blue);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: var(--spacing-md);
}

/* Process Flow */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: nowrap;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  flex: 1;
}

.step-number {
  width: 42px;
  height: 42px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.step-content p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.step-arrow {
  margin-left: 12px;
  color: #2563eb;
  font-size: 18px;
}

/* Hide arrow on last step */
.process-step:last-child .step-arrow {
  display: none;
}

@media (max-width: 1024px) {
  .process-flow {
    flex-direction: column;
    gap: 16px;
  }

  .step-arrow {
    display: none;
  }
}



.flow-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.flow-node {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    min-width: 120px;
    text-align: center;
}

.flow-node.active {
    background-color: var(--primary-blue);
    color: white;
}

.flow-line {
    color: var(--neutral-dark);
}



.placeholder-image.large {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Security Section */
.security-content {
    color: white;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.security-feature {
    display: flex;
    gap: var(--spacing-lg);
}

.security-feature i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: var(--spacing-xs);
}

.security-visual {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.security-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.security-avatar {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
}

.security-info {
    text-align: center;
    width: 100%;
}

.security-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xs);
}

.security-status {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.security-status.active {
    background-color: rgba(5, 150, 105, 0.2);
    color: #10b981;
}

.security-status.standby {
    background-color: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.security-badges .badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

/* Comparison Table */
.comparison-table {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.table-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--secondary-navy);
    color: white;
    padding: var(--spacing-lg);
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--neutral-grey);
}

.table-row:last-child {
    border-bottom: none;
}

.table-col {
    padding: 0 var(--spacing-md);
}

.risk-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
}

.risk-item.high-risk i {
    color: var(--risk-red);
}

.risk-item.medium-risk i {
    color: var(--warning-orange);
}

.risk-item.low-risk i {
    color: var(--compliance-green);
}

.risk-list {
    list-style: none;
}

.risk-list li {
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-left: var(--spacing-md);
}

.risk-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--neutral-dark);
}

.mitigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background-color: var(--neutral-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.mitigation i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

/* Dashboard UI */
.dashboard-ui {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--neutral-grey);
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-navy);
}

.dashboard-period {
    color: var(--neutral-dark);
    font-size: 0.875rem;
}

.kpi-card {
    background-color: var(--neutral-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
}

.kpi-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.kpi-value.green {
    color: var(--compliance-green);
}

.kpi-value.blue {
    color: var(--primary-blue);
}

.kpi-value.orange {
    color: var(--warning-orange);
}

.kpi-label {
    font-size: 0.875rem;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-sm);
}

.kpi-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 0.75rem;
    color: var(--neutral-dark);
}

.kpi-trend i {
    color: var(--compliance-green);
}

.dashboard-chart-placeholder {
    background-color: var(--neutral-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    padding: var(--spacing-lg) var(--spacing-xl);
    background-color: white;
    border-radius: var(--radius-md);
    margin-top: var(--spacing-lg);
}

.chart-bar {
    width: 40px;
    background-color: var(--primary-blue);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    position: relative;
}

.chart-bar::after {
    content: attr(data-month);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--neutral-dark);
}

.dashboard-alerts {
    background-color: var(--neutral-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
}

.alert-title {
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-navy);
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.alert-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: white;
    border-radius: var(--radius-md);
    border-left: 4px solid transparent;
}

.alert-item.warning {
    border-left-color: var(--warning-orange);
}

.alert-item.info {
    border-left-color: var(--primary-blue);
}

.alert-item.success {
    border-left-color: var(--compliance-green);
}

.alert-item i {
    font-size: 1.25rem;
}

.alert-item.warning i {
    color: var(--warning-orange);
}

.alert-item.info i {
    color: var(--primary-blue);
}

.alert-item.success i {
    color: var(--compliance-green);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: var(--spacing-2xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--neutral-grey);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-2xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary-blue);
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.timeline-content {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.timeline-status {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: var(--spacing-md);
}

.timeline-status.completed {
    background-color: rgba(5, 150, 105, 0.1);
    color: var(--compliance-green);
}

.timeline-status.in-progress {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-orange);
}

.timeline-status.pending {
    background-color: rgba(100, 116, 139, 0.1);
    color: var(--neutral-dark);
}

.timeline-status.planned {
    background-color: rgba(26, 86, 219, 0.1);
    color: var(--primary-blue);
}

/* Governance Diagram */
.governance-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.governance-level {
    width: 100%;
    text-align: center;
}

.level-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.level-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    max-width: 400px;
    margin: 0 auto;
}

.level-card.small {
    padding: var(--spacing-lg);
}

.level-card.micro {
    padding: var(--spacing-md);
}

.level-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.governance-arrow {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

/* CRM Section */
.crm-content {
    padding-right: var(--spacing-2xl);
}

.crm-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.crm-stat {
    text-align: center;
    flex: 1;
}

.crm-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.crm-label {
    font-size: 0.875rem;
    color: var(--neutral-dark);
}

.crm-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.crm-feature {
    display: flex;
    gap: var(--spacing-lg);
}

.crm-feature i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: var(--spacing-xs);
}

.workflow-placeholder {
    background-color: var(--neutral-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    height: 100%;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.step-number {
    width: 32px;
    height: 32px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-desc {
    flex: 1;
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step-arrow {
    color: var(--neutral-dark);
}

.workflow-metrics {
    display: flex;
    justify-content: space-between;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--neutral-dark);
}

/* Industry Cards */
.industry-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: transform 0.2s;
}

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

.industry-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--primary-blue);
    font-size: 1.5rem;
}

/* Scale Cards */
.scale-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
}

.scale-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.scale-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-navy);
    margin-bottom: var(--spacing-sm);
}

.scale-detail {
    font-size: 0.875rem;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-lg);
}

.scale-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
}

.scale-trend.positive {
    color: var(--compliance-green);
}

.scale-trend i {
    font-size: 0.75rem;
}

/* Certificates */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.certificate-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.certificate-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(26, 86, 219, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: white;
    font-size: 1.5rem;
}

.certificate-valid {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-md);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-lg);
}

.logos-grid .logo-placeholder {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

/* Checklist Wireframe */
.checklist-wireframe {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.checklist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    background-color: var(--secondary-navy);
    color: white;
}

.checklist-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.checklist-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.completed {
    background-color: var(--compliance-green);
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2);
}

.checklist-items {
    padding: var(--spacing-md);
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--neutral-grey);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item.completed {
    background-color: rgba(5, 150, 105, 0.05);
}

.checklist-item.in-progress {
    background-color: rgba(245, 158, 11, 0.05);
}

.checklist-item.pending {
    background-color: rgba(100, 116, 139, 0.05);
}

.checklist-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-lg);
    flex-shrink: 0;
}

.checklist-item.completed .checklist-check {
    background-color: rgba(5, 150, 105, 0.1);
    color: var(--compliance-green);
}

.checklist-item.in-progress .checklist-check {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-orange);
}

.checklist-item.pending .checklist-check {
    background-color: rgba(100, 116, 139, 0.1);
    color: var(--neutral-dark);
}

.checklist-content {
    flex: 1;
}

.checklist-date {
    font-size: 0.875rem;
    color: var(--neutral-dark);
    flex-shrink: 0;
}

.checklist-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    background-color: var(--neutral-light);
    border-top: 1px solid var(--neutral-grey);
}

.audit-ready {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 500;
    color: var(--compliance-green);
}

.audit-ready i {
    font-size: 1.25rem;
}

/* Safety Cards */
.safety-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.safety-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.safety-list {
    list-style: none;
}

.safety-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-lg);
    position: relative;
}

.safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--compliance-green);
    font-weight: 600;
}

.safety-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.metric-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.metric-value.zero {
    color: var(--compliance-green);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--neutral-dark);
}

/* Partnership Model */
.partnership-model {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.partnership-phase {
    display: flex;
    gap: var(--spacing-2xl);
    align-items: flex-start;
}

.phase-number {
    width: 64px;
    height: 64px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.phase-content {
    flex: 1;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.phase-features {
    list-style: none;
    margin-top: var(--spacing-lg);
}

.phase-features li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-lg);
    position: relative;
}

.phase-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 600;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: var(--neutral-light);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-xl);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    max-height: 500px;
}

/* Footer */
.footer {
    background-color: var(--secondary-navy);
    color: white;
    padding-top: var(--spacing-3xl);
}

.conversion-bar {
    background-color: var(--primary-blue);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

.conversion-content h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.conversion-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.conversion-actions {
    display: flex;
    gap: var(--spacing-lg);
}

.trust-bar {
    display: flex;
    justify-content: space-around;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-3xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.trust-item i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.contact-item i {
    color: var(--primary-blue);
    margin-top: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
}

.contact-placeholders {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-placeholder {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.placeholder-text {
    color: white;
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links-bottom {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-bottom a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-12 {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        grid-column: span 6;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .process-flow {
        flex-direction: column;
        gap: var(--spacing-2xl);
    }
    
    .process-flow::before {
        display: none;
    }
    
    .step-arrow {
        display: none;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .safety-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-12 {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        grid-column: span 1;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        margin-top: var(--spacing-lg);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .conversion-bar {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .conversion-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .trust-bar {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-links-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .partnership-phase {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .phase-number {
        align-self: center;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .safety-metrics {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .governance-diagram .grid-12 {
        grid-template-columns: 1fr;
    }
}
.Services-card {
    
    border-radius: 18px;
    padding: 16px;
    position: relative;
    overflow: hidden;
   
}

/* Image container */
.Services-image {
    width: 100%;
    height: px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
   
}

/* Image itself */
.Services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.4s ease;
}

/* Hover zoom effect */
.Services-card:hover .Services-image img {
    transform: scale(1.06);
}

/* Icon style */
.Services-icon {
    font-size: 28px;
   
    margin-bottom: 10px;
}


/* Base container */
.placeholder-image {
    border-radius: 20px;
    padding: 24px;
    overflow: hidden; /* no scroll by default */
}

/* ===============================
   MOBILE FIRST – VERTICAL FLOW
   =============================== */
.flow-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Flow nodes */
.flow-node {
    width: 100%;
    max-width: 280px;
    text-align: center;
}

/* Arrow line */
.flow-line {
    transform: rotate(90deg);
    font-size: 14px;
    opacity: 0.7;
}

/* ===============================
   TABLET & DESKTOP – HORIZONTAL
   =============================== */
@media (min-width: 768px) {
    .placeholder-image {
        overflow-x: auto; /* allow if needed */
    }

    .flow-visual {
        flex-direction: row;
        justify-content: center;
        min-width: max-content;
    }

    .flow-node {
        width: auto;
        max-width: none;
    }

    .flow-line {
        transform: rotate(0deg);
    }
}

/* ===============================
   GLOBAL SAFETY
   =============================== */
.security-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent flex text clipping */
.security-feature {
    max-width: 100%;
}

.security-feature > div {
    flex: 1;
    min-width: 0; /* CRITICAL for mobile */
}

/* Safe text wrapping */
.security-content h2,
.security-content p,
.security-feature h4,
.security-feature p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* ===============================
   TABLET
   =============================== */
@media (max-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-visual {
        padding: var(--spacing-lg);
    }
}

/* ===============================
   MOBILE
   =============================== */
@media (max-width: 640px) {

    /* Stack & tighten */
    .security-features {
        gap: var(--spacing-lg);
        margin-top: var(--spacing-xl);
    }

    .security-feature {
        gap: var(--spacing-md);
        align-items: flex-start;
    }

    .security-feature i {
        font-size: 1.25rem;
        margin-top: 2px;
    }

    /* Cards */
    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-card {
        padding: var(--spacing-sm);
    }

    .security-avatar {
        width: 56px;
        height: 56px;
    }

    /* Card text */
    .security-info {
        text-align: center;
    }

    /* Badges */
    .security-badges {
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .security-badges .badge {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}


/* ===============================
   CERTIFICATE CARD – RESPONSIVE
   =============================== */

.certificate-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ===============================
   TABLET
   =============================== */
@media (max-width: 1024px) {
    .certificate-card {
        padding: var(--spacing-lg);
    }
}

/* ===============================
   MOBILE
   =============================== */
@media (max-width: 640px) {
    .certificate-card {
        padding: var(--spacing-md);
        border-radius: var(--radius-md);
        text-align: center;
    }

    .certificate-card img,
    .certificate-card svg {
        max-width: 100%;
        height: auto;
    }
}

/* ===============================
   GLOBAL SAFETY
   =============================== */
.checklist-wireframe {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent flex overflow */
.checklist-item {
    max-width: 100%;
}

.checklist-content {
    min-width: 0; /* CRITICAL for flex text wrapping */
}

/* Safe text wrapping */
.checklist-item,
.checklist-content,
.checklist-date {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* ===============================
   TABLET
   =============================== */
@media (max-width: 1024px) {
    .checklist-header,
    .checklist-footer {
        padding: var(--spacing-lg);
    }

    .checklist-item {
        padding: var(--spacing-md);
    }

    .checklist-items {
        padding: var(--spacing-sm);
    }
}

/* ===============================
   MOBILE
   =============================== */
@media (max-width: 640px) {

    /* Header stacks */
    .checklist-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }

    .checklist-title {
        font-size: 1.1rem;
    }

    .checklist-status {
        font-size: 0.8rem;
    }

    /* Checklist rows */
    .checklist-item {
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .checklist-check {
        width: 28px;
        height: 28px;
        margin-right: var(--spacing-md);
    }

    /* Date moves below content */
    .checklist-date {
        font-size: 0.75rem;
        margin-top: 4px;
        flex-shrink: 1;
    }

    /* Footer stacks */
    .checklist-footer {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
}



/* ===============================
   GLOBAL SAFETY
   =============================== */
.footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent flex overflow */
.conversion-bar,
.trust-bar,
.footer-bottom {
    max-width: 100%;
}

/* Safe text wrapping */
.footer h3,
.footer h4,
.footer p,
.footer a,
.contact-item {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* ===============================
   TABLET
   =============================== */
@media (max-width: 1024px) {

    /* Conversion bar stacks */
    .conversion-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
        padding: var(--spacing-xl);
    }

    .conversion-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    /* Trust bar wraps */
    .trust-bar {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
        justify-content: center;
        text-align: center;
    }

    /* Footer grid reduces columns */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

/* ===============================
   MOBILE
   =============================== */
@media (max-width: 640px) {

    /* Conversion bar */
    .conversion-bar {
        padding: var(--spacing-lg);
        border-radius: var(--radius-md);
    }

    .conversion-content h3 {
        font-size: 1.2rem;
    }

    .conversion-content p {
        font-size: 0.9rem;
    }

    .conversion-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-md);
    }

    /* Trust bar */
    .trust-bar {
        padding: var(--spacing-lg) 0;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }

    /* Footer grid → single column */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-col h4 {
        margin-bottom: var(--spacing-md);
    }

    /* Contact items */
    .contact-item {
        font-size: 0.8rem;
        gap: var(--spacing-sm);
    }

    /* Bottom footer stacks */
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
        padding: var(--spacing-lg) 0;
    }

    .footer-links-bottom {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }
}

.hero {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(31, 94, 220, 0.18),
            transparent 45%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(249, 115, 22, 0.18),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #f8faff 0%,
            #ffffff 60%
        );
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--secondary-navy);
}

.hero-title span {
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--accent-orange)
    );
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.hero-float-card {
    border-left: 4px solid var(--primary-blue);
}

.hero-float-card.card-2 {
    border-left-color: var(--accent-orange);
}

.hero-float-card {
    border-left: 4px solid var(--primary-blue);
}

.hero-float-card.card-2 {
    border-left-color: var(--accent-orange);
}

.nav-link.active::after {
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-orange)
    );
}

/* ===============================
   HERO – RESPONSIVE SYSTEM
   =============================== */

/* DESKTOP DEFAULT (already good) */
.hero {
    padding: var(--spacing-3xl) 0;
}

.hero-content {
    padding-right: var(--spacing-2xl);
}

.hero-image {
    max-width: 600px;
    margin-left: auto;
}

/* ===============================
   LAPTOP / SMALL DESKTOP
   =============================== */
@media (max-width: 1200px) {

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        max-width: 520px;
    }
}

/* ===============================
   TABLET (STACK CLEANLY)
   =============================== */
@media (max-width: 1024px) {

    .hero {
        padding: var(--spacing-2xl) 0;
    }

    .grid-12 {
        row-gap: var(--spacing-2xl);
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        max-width: 640px;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }

    .hero-image {
        margin: 0 auto;
        max-width: 520px;
    }
}

/* ===============================
   MOBILE (PREMIUM STACK)
   =============================== */
@media (max-width: 768px) {

    .hero {
        padding: var(--spacing-xl) 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-xl);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-md);
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .hero-image {
        max-width: 100%;
        padding: 0 8px;
    }

    .hero-dashboard-img {
        border-radius: 14px;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
    }
}

/* ===============================
   SMALL MOBILE (SAFE & TIGHT)
   =============================== */
@media (max-width: 480px) {

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .badge {
        font-size: 0.8rem;
    }

    .badge i {
        font-size: 0.9rem;
    }
}

/* ===============================
   WF MANPOWER FEATURE THEME
   =============================== */

.manpower-theme {
    background: linear-gradient(
        180deg,
        #f8faff 0%,
        #ffffff 70%
    );
}

/* Section header */
.manpower-theme .section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--secondary-navy);
}

.manpower-theme .section-header p {
    font-size: 1.05rem;
    color: var(--neutral-dark);
}

/* Feature cards */
.manpower-theme .feature-card {
    position: relative;
    border-radius: 20px;
    padding: 32px 28px;
    background: white;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

/* Gradient top accent (logo inspired) */
.manpower-theme .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-orange)
    );
}

/* Hover effect */
.manpower-theme .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
}

/* Icon container */
.manpower-theme .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(31, 94, 220, 0.12),
        rgba(249, 115, 22, 0.12)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Icon */
.manpower-theme .feature-icon i {
    font-size: 1.6rem;
    color: var(--primary-blue);
}

/* Card title */
.manpower-theme .feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-navy);
}

/* Card text */
.manpower-theme .feature-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--neutral-dark);
}

/* Badge */
.manpower-theme .feature-badge {
    display: inline-block;
    margin-top: 18px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--accent-orange)
    );
    color: white;
}

@media (max-width: 1024px) {
    .manpower-theme .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .manpower-theme .section-header {
        text-align: center;
    }

    .manpower-theme .feature-card {
        padding: 28px 22px;
    }

    .manpower-theme .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .manpower-theme .feature-card h3,
    .manpower-theme .feature-card p {
        text-align: center;
    }

    .manpower-theme .feature-badge {
        margin-left: auto;
        margin-right: auto;
    }
}


/* ===============================
   WF COMPLIANCE SECTION THEME
   =============================== */

.compliance-theme {
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(31, 94, 220, 0.12),
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(249, 115, 22, 0.12),
            transparent 40%
        ),
        var(--neutral-light);
}

/* Heading */
.compliance-theme h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--secondary-navy);
}

/* Subtitle */
.compliance-theme .section-subtitle {
    margin-bottom: var(--spacing-xl);
    font-size: 1.05rem;
    color: var(--neutral-dark);
}

/* ===============================
   CHECKLIST (LEFT)
   =============================== */

.compliance-theme .checklist {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.compliance-theme .checklist-item {
    display: flex;
    gap: var(--spacing-md);
    padding: 18px 20px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.compliance-theme .checklist-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.compliance-theme .checklist-item i {
    font-size: 1.4rem;
    color: var(--compliance-green);
    margin-top: 4px;
}

.compliance-theme .checklist-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.compliance-theme .checklist-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* ===============================
   BADGE CARDS (RIGHT)
   =============================== */

.compliance-theme .compliance-badges {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Badge card */
.compliance-theme .badge-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

/* Top gradient accent */
.compliance-theme .badge-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-orange)
    );
}

/* Icon */
.compliance-theme .badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(31, 94, 220, 0.12),
        rgba(249, 115, 22, 0.12)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.compliance-theme .badge-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* Badge text */
.compliance-theme .badge-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.compliance-theme .badge-card p {
    font-size: 0.9rem;
}

/* Status */
.compliance-theme .badge-status {
    margin-top: 14px;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.compliance-theme .badge-status.active {
    background: rgba(5, 150, 105, 0.15);
    color: var(--compliance-green);
}

.compliance-theme .badge-status.compliant {
    background: rgba(31, 94, 220, 0.15);
    color: var(--primary-blue);
}

/* ===============================
   PLACEHOLDER BADGES
   =============================== */

.compliance-theme .placeholder-image {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.compliance-theme .badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.compliance-theme .badge-placeholder {
    padding: 14px;
    border-radius: 12px;
    background: var(--neutral-light);
    font-weight: 600;
    text-align: center;
    font-size: 0.85rem;
    color: var(--secondary-navy);
}

@media (max-width: 1024px) {

    .compliance-theme h2 {
        font-size: 2rem;
    }

    .compliance-theme .grid-12 {
        row-gap: var(--spacing-2xl);
    }
}

@media (max-width: 768px) {

    .compliance-theme {
        padding: var(--spacing-2xl) 0;
    }

    .compliance-theme h2,
    .compliance-theme .section-subtitle {
        text-align: center;
    }

    .compliance-theme .checklist-item {
        text-align: left;
    }

    .compliance-theme .badge-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .compliance-theme .badge-card h3,
    .compliance-theme .badge-card p,
    .compliance-theme .badge-status {
        text-align: center;
    }

    .compliance-theme .badge-status {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {

    .compliance-theme h2 {
        font-size: 1.7rem;
    }

    .compliance-theme .badge-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   WF WORKFORCE TIERS THEME
   =============================== */

.workforce-theme {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

/* Section header */
.workforce-theme .section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--secondary-navy);
}

.workforce-theme .section-header p {
    font-size: 1.05rem;
    color: var(--neutral-dark);
}

/* ===============================
   TIER CARDS – BASE
   =============================== */

.workforce-theme .tier-card {
    position: relative;
    border-radius: 22px;
    padding: 30px 26px;
    background: white;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

/* Hover lift */
.workforce-theme .tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.25);
}

/* ===============================
   TOP ACCENT (TIER IDENTITY)
   =============================== */

.workforce-theme .tier-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: var(--neutral-grey);
}

/* Tier colors */
.workforce-theme .tier-1::before {
    background: linear-gradient(90deg, var(--primary-blue), #4f7df3);
}

.workforce-theme .tier-2::before {
    background: linear-gradient(90deg, var(--compliance-green), #34d399);
}

.workforce-theme .tier-3::before {
    background: linear-gradient(90deg, var(--accent-orange), #fdba74);
}

/* ===============================
   HEADER
   =============================== */

.workforce-theme .tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.workforce-theme .tier-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(31, 94, 220, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.workforce-theme .tier-icon i {
    font-size: 1.4rem;
    color: var(--primary-blue);
}

/* Tier badge */
.workforce-theme .tier-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    background: var(--neutral-light);
    color: var(--secondary-navy);
}

/* ===============================
   TITLES
   =============================== */

.workforce-theme .tier-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--secondary-navy);
}

/* ===============================
   FEATURES LIST
   =============================== */

.workforce-theme .tier-features {
    list-style: none;
    margin-bottom: 24px;
}

.workforce-theme .tier-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--neutral-dark);
}

.workforce-theme .tier-features i {
    font-size: 0.85rem;
    color:#005fd6;
}

/* ===============================
   STATS
   =============================== */

.workforce-theme .tier-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--neutral-grey);
    padding-top: 18px;
}

.workforce-theme .stat {
    text-align: center;
}

.workforce-theme .stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-navy);
}

.workforce-theme .stat-label {
    font-size: 0.75rem;
    color: var(--neutral-dark);
}

@media (max-width: 1024px) {

    .workforce-theme .section-header h2 {
        font-size: 2rem;
    }

    .workforce-theme .tier-card {
        padding: 26px 22px;
    }
}

@media (max-width: 768px) {

    .workforce-theme .section-header {
        text-align: center;
    }

    .workforce-theme .tier-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .workforce-theme .tier-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .workforce-theme .tier-card h3 {
        text-align: center;
    }

    .workforce-theme .tier-features {
        text-align: left;
    }

    .workforce-theme .tier-stats {
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .workforce-theme .tier-card {
        padding: 22px 18px;
    }

    .workforce-theme .tier-stats {
        flex-direction: column;
        gap: 14px;
    }
}


/* ===============================
   WF SOFT FM Services THEME
   =============================== */

.softfm-theme {
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(31, 94, 220, 0.10),
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(249, 115, 22, 0.10),
            transparent 40%
        ),
        var(--neutral-light);
}

/* Section header */
.softfm-theme .section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--secondary-navy);
}

.softfm-theme .section-header p {
    font-size: 1.05rem;
    color: var(--neutral-dark);
}

/* ===============================
   Services CARD – PREMIUM
   =============================== */

.softfm-theme .Services-card {
    position: relative;
    border-radius: 22px;
    padding: 18px;
    background: white;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    height: 100%;
}

/* Top accent */
.softfm-theme .Services-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-orange)
    );
}

/* Hover */
.softfm-theme .Services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.25);
}

/* ===============================
   Services IMAGE
   =============================== */

.softfm-theme .Services-image {
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.softfm-theme .Services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.softfm-theme .Services-card:hover .Services-image img {
    transform: scale(1.06);
}

/* ===============================
   ICON
   =============================== */

.softfm-theme .Services-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(31, 94, 220, 0.14),
        rgba(249, 115, 22, 0.14)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.softfm-theme .Services-icon i {
    font-size: 1.3rem;
    color: var(--primary-blue);
}

/* ===============================
   TEXT
   =============================== */

.softfm-theme .Services-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-navy);
}

.softfm-theme .Services-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--neutral-dark);
    margin-bottom: 14px;
}

/* ===============================
   KPI BADGE
   =============================== */

.softfm-theme .Services-kpi {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    background: rgba(31, 94, 220, 0.12);
    color: var(--primary-blue);
}

/* ===============================
   NAVBAR SLIDING ACTIVE INDICATOR
   =============================== */

.main-nav {
    position: relative;
    display: flex;
    gap: var(--spacing-xl);
}

/* Nav links */
.nav-link {
    position: relative;
    padding: 8px 0;
    font-weight: 600;
    color: var(--neutral-dark);
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

/* Moving indicator */
.nav-indicator {
    position: absolute;
    bottom: -6px;
    height: 3px;
    width: 0;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--warning-orange)
    );
    border-radius: 999px;
    transition: 
        left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


.dashboard-ui {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f8faff 100%
    );
    border-radius: 20px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.7);
    border: 1px solid rgba(31, 94, 220, 0.08);
}

.dashboard-header {
    background: linear-gradient(
        90deg,
        rgba(31, 94, 220, 0.06),
        rgba(249, 115, 22, 0.06)
    );
    padding: 20px 24px;
    border-radius: 14px;
    margin-bottom: var(--spacing-xl);
}

.dashboard-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.dashboard-period {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neutral-dark);
}

.kpi-card {
    background: white;
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(31, 94, 220, 0.08);
}

.kpi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(31, 94, 220, 0.15);
}

.kpi-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.kpi-value.green { color: var(--compliance-green); }
.kpi-value.blue  { color: var(--primary-blue); }
.kpi-value.orange { color: var(--warning-orange); }

.kpi-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.kpi-trend {
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kpi-trend i {
    font-size: 0.7rem;
}

.dashboard-chart-placeholder {
    margin-top: var(--spacing-2xl);
    background: linear-gradient(
        180deg,
        #ffffff,
        #f8faff
    );
    border-radius: 18px;
    border: 1px solid rgba(31, 94, 220, 0.08);
    box-shadow: var(--shadow-sm);
}

.chart-bar {
    background: linear-gradient(
        180deg,
        var(--primary-blue),
        var(--warning-orange)
    );
    border-radius: 8px 8px 0 0;
    transition: transform 0.25s ease;
}

.chart-bar:hover {
    transform: scaleY(1.05);
}

.dashboard-alerts {
    margin-top: var(--spacing-xl);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(31, 94, 220, 0.08);
}

.alert-title {
    font-size: 1rem;
    font-weight: 700;
}

.alert-item {
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.alert-item:hover {
    transform: translateX(6px);
}

@media (max-width: 768px) {

    .dashboard-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .kpi-value {
        font-size: 1.9rem;
    }

    .chart-container {
        padding: 16px;
        gap: 12px;
    }

    .chart-bar {
        width: 28px;
    }
}

/* MOBILE NAV DEFAULT STATE */
@media (max-width: 768px) {
  .main-nav {
    display: none; 
    width: 100%;
    height: 90vh;  
    align-items: center;
           /* 🔴 REQUIRED */
   
  }

  .main-nav.active {
    display: flex;          /* ✅ OPEN ONLY AFTER CLICK */
  }
}



.conversion-bar {
  background: #2563eb;
  border-radius: 18px;
  padding: 28px;
}

/* 🔑 KEY FIX */
.conversion-actions {
  margin-top: 24px;
  padding: 16px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.btn {
  width: 100%;
  border-radius: 14px;
  border: none;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(90deg, #4f46e5, #f97316);
  color: #fff;
}

.btn-secondary {
   background: linear-gradient(90deg, #4f46e5, #f97316);
  color: #fff;
}

.footer-credit {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: -10px;
    font-size: 13px;
    color: #9aa0a6;
}

.footer-credit .credit-link {
    color: #0b5ed7;
    text-decoration: none;
    font-weight: 500;
}

.footer-credit .credit-link:hover {
    text-decoration: underline;
}

/* ===============================
   ABOUT / HERO IMAGE – TALL STYLE
   =============================== */

.hero-image {
    display: flex;
    align-items: stretch;
}

.hero-dashboard-img {
    width: 100%;
    height: 520px;         
    object-fit: cover;
    border-radius: 22px;   
    box-shadow: 
        0 30px 70px rgba(15, 23, 42, 0.35);
    aspect-ratio: 3 / 2;   /* matches 1368×912 */
}
@media (max-width: 768px) {
    .hero-dashboard-img {
        height: 360px;
        border-radius: 18px;
    }
}



.contact-form {
    margin-top: 20px;
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-group textarea {
    resize: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

.hero-center {
    text-align: center;
}

.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-badges {
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* FORM VALIDATION STYLES */
.error-msg {
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc2626;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #16a34a;
}
.contact-item-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--neutral-dark);
}

.contact-item-row i {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-top: 3px;
    min-width: 18px;
}

.contact-item-row span {
    line-height: 1.6;
}

/* Services HERO CENTER ALIGN */
.Services-hero-center {
    text-align: center;
}

.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-badges {
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Navbar base */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

/* Dropdown wrapper */
.nav-dropdown {
  position: relative;
}

/* Arrow */
.arrow {
  font-size: 12px;
  margin-left: 4px;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-size: 17px;
}

.dropdown-menu a:hover {
  background: #f2f6ff;
  color: #005fd6;
}

/* Show dropdown on hover */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ===== Common ===== */
.svc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.svc-section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #0b1c3d;
}

/* ===== Hero ===== */
.svc-hero {
  position: relative;
  min-height: 55vh;
  padding: 80px 20px;

  background:
    linear-gradient(
      rgba(245, 248, 255, 0.92),
      rgba(245, 248, 255, 0.92)
    ),
    url("https://picsum.photos/1920/900?business,office");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.svc-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 18px;

  /* GRADIENT TEXT */
  background: linear-gradient(
    90deg,
    #2563eb 0%,   /* blue */
    #7c3aed 40%,  /* purple */
    #f97316 100%  /* orange */
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.svc-subtitle {
  max-width: 720px;
  margin: 16px auto 0;
  color: #5b6b8c;
}

.svc-breadcrumb {
  font-size: 13px;
  color: #005fd6;
}

/* ===== Overview ===== */
.svc-overview {
  padding: 80px 0;
}

.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.svc-overview-media img {
  width: 100%;
  border-radius: 18px;
}

.svc-checklist {
  list-style: none;
  padding: 0;
}

.svc-checklist li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.svc-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color:  #2563eb 0%,   /* blue */
    #7c3aed 40%,  /* purple */
    #f97316 100% ;
}

/* ===== Features ===== */
.svc-features {
  background: #f6f9ff;
  padding: 80px 0;
}

.svc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.svc-feature-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
}

.svc-feature-card img {
  width: 48px;
  margin-bottom: 16px;
}

/* ===== Process ===== */
.svc-process {
  padding: 80px 0;
}

.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.svc-process-step {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.svc-process-step span {
  color: #ff7a18;
  font-weight: 700;
}

/* ===== CTA ===== */
.svc-cta {
  background: linear-gradient(90deg, #005fd6, #003a8f);
  padding: 70px 20px;
  color: #fff;
  text-align: center;
}

.svc-btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #fff;
  color: #005fd6;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}


/* small eyebrow text */
.svc-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1f4fd8; /* logo blue */
  margin-bottom: 8px;
}

/* intro text */
.svc-intro {
  font-size: 17px;
  color: #475569;
  margin-bottom: 10px;
}

/* supporting line */
.svc-subtext {
  font-size: 15.5px;
  color: #64748b;
  margin-bottom: 22px;
}

/* trust line */
.svc-trust {
  margin-top: 24px;
  font-size: 14px;
  color: #1e293b;
}

.svc-trust strong {
  color: #1f4fd8;
}




/* ================= MOBILE HEADER FIX ================= */
@media (max-width: 991px) {

  /* Hide desktop nav by default */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    display: none;              /* 🔴 KEY LINE */
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    z-index: 999;
  }

  /* Show when active */
  .main-nav.active {
    display: flex;
  }

  .nav-link {
    padding: 14px 0;
    font-size: 18px;
  }

  

  /* Show hamburger */
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
}

/* Desktop only */
@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}



/* ===============================
   MAP SECTION
================================ */
.map-section {
  width: 100%;
  padding: 60px 0;
  background: #f8f8f8;
}

/* Responsive iframe wrapper */
.map-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===============================
   TABLET (iPad, iPad Pro)
================================ */
@media (max-width: 1024px) {
  .map-container {
    height: 380px;
    margin: 0 20px;
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 767px) {
  .map-section {
    padding: 40px 0;
  }

  .map-container {
    height: 300px;
    margin: 0 15px;
    border-radius: 10px;
  }
}

/* ===============================
   SMALL MOBILES
================================ */
@media (max-width: 420px) {
  .map-container {
    height: 260px;
  }
}


.mw-video-section {
  padding: 80px 0;
  background: #ffffff;
}

.mw-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mw-video-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.mw-video-content p {
  color: #555;
  margin-bottom: 20px;
}

.mw-video-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.mw-video-points li {
  margin-bottom: 10px;
  color: #333;
}

.mw-video-points i {
  color: #005fd6;
  margin-right: 8px;
}

.mw-video-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mw-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .mw-video-grid {
    grid-template-columns: 1fr;
  }
}

.mw-faq-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.mw-faq-item {
  border-bottom: 1px solid #ddd;
}

.mw-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.mw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  color: #555;
  padding-right: 20px;
}

.mw-faq-item.active .mw-faq-answer {
  max-height: 300px;
  padding-bottom: 15px;
}

.mw-faq-item.active .mw-faq-question span {
  transform: rotate(45deg);
}


.mw-faq-item {
  border-bottom: 1px solid #ddd;
}

.mw-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: #555;
  padding-right: 20px;
}

.mw-faq-item.active .mw-faq-answer {
  max-height: 300px; /* increase if answers are longer */
  padding-bottom: 15px;
}

.mw-faq-item.active .mw-faq-question span {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* ===============================
   AWARDS & RECOGNITIONS
================================ */
.awards-theme {
  background: #f8fafc;
}

.awards-grid {
  margin-top: 40px;
}

.award-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
}

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

.award-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #005fd6, #003a8f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 26px;
}

.award-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.award-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.award-year {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #005fd6;
}

/* ===============================
   OUR CLIENTS SLIDER
================================ */
.clients-theme {
  background: #ffffff;
  overflow: hidden;
}

.clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.clients-track {
  display: flex;
  width: calc(250px * 12);
  animation: scrollClients 35s linear infinite;
}

.client-logo {
  width: 250px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .client-logo {
    width: 180px;
    padding: 0 20px;
  }

  .client-logo img {
    max-width: 120px;
  }
}


/* ===============================
   WORKFORCE PARTNER SECTION
================================ */
.workforce-partner-theme {
  background: #ffffff;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #005fd6;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-intro {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
  color: #333;
}

.section-subtext {
  font-size: 15px;
  color: #555;
  margin-top: 12px;
}

.partner-benefits {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.partner-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 14px;
  color: #222;
}

.partner-benefits i {
  color:#005fd6;
  font-size: 18px;
}

.partner-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .partner-visual {
    margin-top: 30px;
  }
}

.youtube-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===============================
   MANPOWER Services 
================================ */

.manpower-Services-theme {
  background: #f6f9fc;
}

/* Grid */
.manpower-icon-grid {
  margin-top: 40px;
  display: flex;
  gap: 30px;
}

/* Force 4 cards in one row */
.manpower-icon-grid .col-3 {
  width: 25%;
}

/* Card */
.manpower-icon-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 26px 36px;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Gradient top border */
.manpower-icon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #6366f1 40%,
    #f97316 100%
  );
}

/* Hover */
.manpower-icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Icon container */
.manpower-icon-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f1f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Icon */
.manpower-icon-card .icon-circle i {
  font-size: 22px;
  color: #2563eb;
}

/* Title */
.manpower-icon-card h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: #0b1c39;
  margin-bottom: 10px;
}

/* Description */
.manpower-icon-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5f6b7a;
  margin: 0;
}
@media (max-width: 992px) {
  .manpower-icon-grid {
    flex-wrap: wrap;
  }

  .manpower-icon-grid .col-3 {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .manpower-icon-grid .col-3 {
    width: 100%;
  }
}


/* ===============================
   Services FEATURES
================================ */

.svc-features {
  background: #f6f9fc;
  padding: 80px 0;
}

.svc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Title */
.svc-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0b1c39;
  margin-bottom: 48px;
}

/* Grid */
.svc-feature-grid {
  display: flex;
  gap: 28px;
}

/* Cards */
.svc-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 28px 38px;
  width: 33.333%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}

/* Gradient top border */
.svc-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #6366f1 40%,
    #f97316 100%
  );
}

/* Hover */
.svc-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Icon styling */
.svc-feature-card img {
  width: 46px;
  height: 46px;
  background: #f1f5ff;
  padding: 10px;
  border-radius: 14px;
  margin-bottom: 20px;
}

/* Heading */
.svc-feature-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0b1c39;
  margin-bottom: 10px;
}

/* Description */
.svc-feature-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5f6b7a;
  margin: 0;
}
@media (max-width: 992px) {
  .svc-feature-grid {
    flex-wrap: wrap;
  }

  .svc-feature-card {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .svc-feature-card {
    width: 100%;
  }
}



/* ===============================
   SECTION 3 – CONTRACT LABOUR
================================ */
.contract-labour-theme {
  background: #ffffff;
}

.section-subtext {
  font-size: 15px;
  color: #555;
  margin-top: 12px;
}

.section-cta {
  margin-top: 26px;
}

/* Reuse existing styles */
.Services-points {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.Services-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 14px;
  color: #222;
}

.Services-points i {
  color:#005fd6;
  font-size: 18px;
}

/* Image container */
.mw-video-box {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.mw-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  aspect-ratio: 3 / 2;   /* matches 1368×912 */
}

.mw-video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .mw-video-box {
    margin-top: 30px;
  }
}

/* ===============================
   MANPOWER CATEGORIES
================================ */

.manpower-category-theme {
  background: #f6f9fc;
}

/* Grid */
.manpower-category-grid {
  margin-top: 40px;
  display: flex;
  gap: 28px;
}

/* Force 3 cards in one row */
.manpower-category-grid .col-4 {
  width: 33.333%;
}

/* Card */
.manpower-category-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px 36px;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Gradient top border */
.manpower-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #6366f1 40%,
    #f97316 100%
  );
}

/* Hover */
.manpower-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Icon container (replacing circle feel but keeping class) */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f1f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Icon */
.icon-circle i {
  font-size: 22px;
  color: #2563eb;
}

/* Title */
.manpower-category-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0b1c39;
}

/* Description */
.category-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5f6b7a;
  margin-bottom: 16px;
}

/* Points */
.category-points {
  padding-left: 18px;
  margin: 0;
}

.category-points li {
  font-size: 14px;
  color: #0b1c39;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .manpower-category-grid {
    flex-wrap: wrap;
  }

  .manpower-category-grid .col-4 {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .manpower-category-grid .col-4 {
    width: 100%;
  }
}



/* ===============================
   FTC MANPOWER
================================ */

/* Grid spacing */
.ftc-icon-grid {
  margin-top: 40px;
  display: flex;
  gap: 28px;
}

/* Force 4 cards in one row */
.ftc-icon-grid .col-3 {
  width: 25%;
}

/* Card */
.ftc-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 26px 36px;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Gradient top border */
.ftc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #6366f1 40%,
    #f97316 100%
  );
}

/* Hover */
.ftc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Icon container */
.ftc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f1f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Icon */
.ftc-icon i {
  font-size: 22px;
  color: #2563eb;
}

/* Title */
.ftc-card h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: #0b1c39;
  margin-bottom: 10px;
}

/* Description */
.ftc-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5f6b7a;
  margin: 0;
}

@media (max-width: 992px) {
  .ftc-icon-grid {
    flex-wrap: wrap;
  }

  .ftc-icon-grid .col-3 {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .ftc-icon-grid .col-3 {
    width: 100%;
  }
}


/* COMPLIANCE SECTION */
.compliance-theme {
  background: #ffffff;
}

/* IMAGE */
.compliance-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* CONTENT */
.compliance-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0b1c39;
}

.compliance-content .section-intro {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b1c39;
}

.compliance-content .section-subtext {
  font-size: 15px;
  margin-bottom: 18px;
  color: #5f6b7a;
}

/* LIST */
.compliance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.compliance-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 12px;
  color: #0b1c39;
}

.compliance-list i {
  color:#005fd6;
  font-size: 18px;
}

/* RESULT */
.compliance-result {
  margin: 18px 0 26px;
  font-size: 16px;
  color: #0b1c39;
}

/* GRADIENT CTA BUTTON */
.compliance-cta-btn {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  text-align: center;

  padding: 16px 40px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #5b4ce2 0%,
    #6a5acd 35%,
    #f97316 100%
  );

  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  border: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.compliance-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05);
}

/* ACTIVE (CLICK) */
.compliance-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}


@media (max-width: 576px) {
  .compliance-cta-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px 24px;
  }
}

/* ===============================
   AUDIT SECTION 
================================ */

/* Section background */
.audit-theme {
  background: #f6f9fc;
}

/* Grid spacing */
.audit-icon-grid {
  margin-top: 40px;
  display: flex;
  gap: 28px;
}

/* Force 4 cards in one row */
.audit-icon-grid .col-3 {
  width: 25%;
}

/* Card style */
.audit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 26px 36px;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Gradient top border */
.audit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #6366f1 40%,
    #f97316 100%
  );
}

/* Hover */
.audit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Icon container */
.audit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f1f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Icon */
.audit-icon i {
  font-size: 22px;
  color: #2563eb;
}

/* Title */
.audit-card h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: #0b1c39;
  margin: 0;
}

@media (max-width: 992px) {
  .audit-icon-grid {
    flex-wrap: wrap;
  }

  .audit-icon-grid .col-3 {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .audit-icon-grid .col-3 {
    width: 100%;
  }
}

/* ===============================
   Services PROCESS
================================ */

.svc-process {
  background: #f6f9fc;
  padding: 80px 0;
}

.svc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Title */
.svc-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0b1c39;
  margin-bottom: 48px;
}

/* Grid */
.svc-process-grid {
  display: flex;
  gap: 28px;
}

/* Step Card */
.svc-process-step {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 28px 38px;
  width: 25%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Gradient top border */
.svc-process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #6366f1 40%,
    #f97316 100%
  );
}

/* Hover */
.svc-process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Step Number */
.svc-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f1f5ff;
  color: #2563eb;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Heading */
.svc-process-step h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0b1c39;
  margin-bottom: 10px;
}

/* Description */
.svc-process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5f6b7a;
  margin: 0;
}

/* ===============================
   INDUSTRIES – IMAGE STYLE THEME
================================ */

.industries-image-theme {
  background: #ffffff;
  padding: 90px 0;
}

.industries-wrapper {
  align-items: center;
}

/* IMAGE */
.industries-image-box img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* CONTENT */
.industries-content-box {
  padding-right: 42px;
}

/* TITLE */
.industries-content-box h2 {
  font-size: 36px;
  font-weight: 900;
  color: #0b1c39;
  margin-bottom: 14px;
}

/* LEAD */
.industries-lead {
  font-size: 18px;
  font-weight: 600;
  color: #0b1c39;
  margin-bottom: 22px;
}

/* CHECKLIST */
.industries-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.industries-checklist li {
  position: relative;
  padding-left: 34px;
  font-size: 15.5px;
  color: #0b1c39;
  margin-bottom: 14px;
}

/* Blue check */
.industries-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}





/* NOTE */
.industries-note {
  font-size: 15px;
  color: #5f6b7a;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .industries-content-box {
    padding-right: 0;
    margin-bottom: 36px;
  }

  .industries-content-box h2 {
    font-size: 28px;
  }
}

/* ===============================
   RECRUITMENT PROCESS THEME
================================ */

.recruitment-theme {
  background: #f6f9fc;
}

/* GRID */
.recruitment-grid {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

/* Card */
.recruitment-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 26px 34px;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
}

/* Gradient top border */
.recruitment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #6366f1 40%,
    #f97316 100%
  );
}

/* Hover */
.recruitment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Icon container */
.recruitment-icon {
  width: 40px;
  height: 56px;
  border-radius: 14px;
  background: #f1f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

/* Icon */
.recruitment-icon i {
  font-size: 22px;
  color: #2563eb;
}

/* Title */
.recruitment-card h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: #0b1c39;
  line-height: 1.4;
  margin: 0;
}



@media (max-width: 992px) {
  .recruitment-grid .col-4 {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .recruitment-grid .col-4 {
    width: 100%;
  }
}







/* Image container */
.contact-image {
    margin-top: 24px;
    border-radius: 14px;
    overflow: hidden;
}

/* Image itself */
.contact-image img {
    width: 100%;
    height: 350px;  
    object-fit: cover;
    display: block;
}
/* Extra spacing before image */
.contact-image {
    margin-top: 28px;
}


@media (max-width: 768px) {
    .contact-image {
        display: none;
    }
}
/* ===============================
   TEAM SECTION
================================ */

.team-theme {
  background: #f6f9fc;
}

/* GRID */
.team-grid {
  margin-top: 40px;
  display: flex;
  gap: 28px;
}

/* CARD */
.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding-bottom: 26px;
}

/* ===============================
   TEAM – FULL IMAGE CARDS
================================ */

.team-fullimage-theme {
  background: #f6f9fc;
}

/* GRID */
.team-fullimage-grid {
  margin-top: 40px;
  display: flex;
  gap: 28px;
}

/* CARD */
.team-full-card {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

/* IMAGE */
.team-full-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER */
.team-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

/* DARK GRADIENT OVERLAY */
.team-full-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 28, 57, 0.85),
    rgba(11, 28, 57, 0.15),
    transparent
  );
}

/* TEXT OVERLAY */
.team-overlay {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  color: #ffffff;
}

/* NAME */
.team-overlay h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

/* ROLE */
.team-overlay span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}
@media (max-width: 992px) {
  .team-fullimage-grid {
    flex-wrap: wrap;
  }

  .team-fullimage-grid .col-4 {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .team-fullimage-grid .col-4 {
    width: 100%;
  }

  .team-full-card {
    height: 360px;
  }
}
/* TEAM GRID – 3 CARDS PER ROW */
.team-fullimage-grid {
  display: flex;
  flex-wrap: wrap;     /* important */
  gap: 28px;
}

/* Each card takes 1/3 width */
.team-fullimage-grid .col-4 {
  width: calc(33.333% - 19px);
}
@media (max-width: 992px) {
  .team-fullimage-grid .col-4 {
    width: calc(50% - 14px);   /* 2 per row */
  }
}

@media (max-width: 576px) {
  .team-fullimage-grid .col-4 {
    width: 100%;              /* 1 per row */
  }
}
/* ===============================
   RECRUITMENT PROCESS – HORIZONTAL
================================ */

/* Grid in one row */
.recruitment-grid {
  display: flex;
  gap: 28px;
}

/* Force 4 equal cards in one line */
.recruitment-grid .col-3 {
  width: 25%;
}

/* Card design (same premium theme) */
.recruitment-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Gradient top border */
.recruitment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #6366f1 40%,
    #f97316 100%
  );
}

/* Hover */
.recruitment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Icon */
.recruitment-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f1f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.recruitment-icon i {
  font-size: 22px;
  color: #2563eb;
}

/* Title */
.recruitment-card h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: #0b1c39;
  line-height: 1.4;
  margin: 0;
}
/* SECTION */
.recruitment-section {
  padding: 80px 0;
  background: #f8fbff;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0b1c39;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 15.5px;
  color: #5f6b7a;
}

/* GRID */
.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  justify-content: center;
  gap: 28px;
}

/* CARD */
.recruitment-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* TOP GRADIENT LINE */
.recruitment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(
    90deg,
    #2563eb,
    #6366f1,
    #f97316
  );
}

/* ICON BOX */
.icon-box {
  width: 56px;
  height: 56px;
  background: #f1f5ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.icon-box i {
  font-size: 22px;
  color: #2563eb;
}

/* TITLE */
.recruitment-card h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: #0b1c39;
  line-height: 1.4;
  margin: 0;
}

/* HOVER */
.recruitment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .recruitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .recruitment-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   Services PROCESS – MOBILE ONLY FIX
================================ */
@media (max-width: 576px) {

  .svc-process-grid {
    grid-template-columns: 1fr;   /* one card per row */
    gap: 18px;
  }

  .svc-process-step {
    width: 100%;
    max-width: 100%;
    padding: 22px 20px;
    text-align: left;
    border-radius: 18px;
  }

  /* step number box */
  .svc-process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .svc-process-step h4 {
    font-size: 16px;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .svc-process-step p {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* ===============================
   Services PROCESS – MOBILE ONLY
================================ */
@media (max-width: 576px) {

  .svc-process-grid {
    display: grid;
    grid-template-columns: 1fr;   /* one card per row */
    gap: 18px;
  }

  .svc-process-step {
    width: 100%;
    padding: 22px 20px;
    border-radius: 18px;
    text-align: left;
  }

  .svc-process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .svc-process-step h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .svc-process-step p {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* Video card layout */
.video-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* Video styling */
.video-card video {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  display: block;
}
@media (max-width: 576px) {
  .video-card {
    margin-top: 24px;
  }
}
.video-card {
  height: 360px;              /* increase height */
  display: flex;
  align-items: center;
}
/* ===== CTA SECTION FIX ===== */

/* Center section header text */
.recruitment-section .section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

/* Center CTA cards */
.recruitment-section .recruitment-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* CTA cards size consistency */
.recruitment-section .recruitment-card {
  width: 320px;
  text-align: center;
}

/* Icon center */
.recruitment-section .icon-box {
  margin: 0 auto 16px;
}

/* Bottom brand text center */
.recruitment-section .section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .recruitment-section .recruitment-grid {
    flex-direction: column;
    align-items: center;
  }

  .recruitment-section .recruitment-card {
    width: 100%;
    max-width: 360px;
  }
}
/* FAQ accordion width reference */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

/* CTA same width as FAQ */
.section-cta {
  max-width: 820px;
  margin: 32px auto 0;
  text-align: center;
}

/* CTA button full width inside FAQ width */
.section-cta .btn {
  width: 100%;
}

/* ===============================
   FLOATING CALL & WHATSAPP
================================ */
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Call button */
.call-btn {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* WhatsApp button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Hover effect */
.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

/* Mobile spacing */
@media (max-width: 576px) {
  .floating-contact {
    right: 14px;
    bottom: 16px;
  }
}

/* ===============================
   Services HERO – BACKGROUND IMAGE
================================ */
.svc-hero {
  position: relative;
  background-image: url("./assets/manpower.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
}

/* Dark overlay for readability */
.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.svc-hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}

/* Title & subtitle color */
.svc-title {
  color: #ffffff;
}

.svc-subtitle {
  color: #e5e7eb;
}

/* ===============================
   PRIVACY POLICY THEME
================================ */

/* Section background & spacing */
.section.bg-light {
  background-color: #f8fafc;
  padding: 60px 0;
}

/* Container consistency */
.section.bg-light .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styling */
.section.bg-light .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section.bg-light .section-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.section.bg-light .section-header p {
  font-size: 14px;
  color: #64748b;
}

/* Content area */
.section.bg-light .content-area {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

/* Paragraphs */
.section.bg-light .content-area p {
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 16px;
}

/* Headings inside policy */
.section.bg-light .content-area h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 32px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 12px;
}

.section.bg-light .content-area h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 18px;
  background-color: #2563eb; /* theme blue */
  border-radius: 2px;
}

/* Lists */
.section.bg-light .content-area ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.section.bg-light .content-area ul li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Links */
.section.bg-light .content-area a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.section.bg-light .content-area a:hover {
  text-decoration: underline;
}

/* Contact info emphasis */
.section.bg-light .content-area strong {
  color: #0f172a;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section.bg-light .content-area {
    padding: 24px;
  }

  .section.bg-light .section-header h1 {
    font-size: 28px;
  }

  .section.bg-light .content-area h3 {
    font-size: 18px;
  }
}
.section.bg-light .content-area::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2563eb,
    #f97316
  );
  border-radius: 4px 4px 0 0;
  margin-bottom: 24px;
}
/* ===============================
   WORDS FROM CEO – STYLING
================================ */

.ceo-words-section {
  background: #ffffff;
}

.ceo-words-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.ceo-text-content {
  flex: 1;
}

.ceo-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.ceo-underline {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: #2563eb;
  margin-bottom: 20px;
  border-radius: 2px;
}

.ceo-text-content p {
  color: #334155;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.ceo-name {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 2px solid #f97316;
  color: #0f172a;
}

.ceo-image-content {
  flex: 0 0 420px;
}

.ceo-image-content img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.ceo-image-box {
  width: 100%;
  max-width: 560px;   /* width increase */
  height: 400px;      /* height decrease */
  border-radius: 28px;
  overflow: hidden;   /* IMPORTANT for curve */
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.ceo-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* image properly crop */
  display: block;
}


/* Responsive */
@media (max-width: 992px) {
  .ceo-words-wrapper {
    flex-direction: column;
  }

  .ceo-image-content {
    max-width: 100%;
  }
}
.ceo-image-box {
  width: 100%;
  height: 500px;              /* desktop height */
  overflow: hidden;
  border-radius: 16px;
}

.ceo-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* KEY FIX */
  display: block;
}
@media (max-width: 768px) {
  .ceo-image-box {
    height: auto;
  }

  .ceo-image-box img {
    height: auto;
  }
}
/* HOVER EFFECT (Desktop only) */
@media (hover: hover) {
  .ceo-image-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  }

  .ceo-image-box:hover img {
    transform: scale(1.08);
  }

  .ceo-image-box:hover::after {
    opacity: 1;
  }
}

/* Mobile fix */
@media (max-width: 768px) {
  .ceo-image-box {
    height: auto;
  }

  .ceo-image-box img {
    height: auto;
  }
}
.ceo-image-box {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image auto-fit */
.ceo-image-box img {
  width: 100%;
  height: auto;          /* KEY: auto height */
  object-fit: contain;   /* NO crop */
  display: block;
  transition: transform 0.6s ease;
}

/* Desktop hover only */
@media (hover: hover) {
  .ceo-image-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  }

  .ceo-image-box:hover img {
    transform: scale(1.05);
  }
}

/* ===============================
   POPUP MODAL
================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 460px;
    padding: 30px;
    border-radius: 14px;
    position: relative;
    animation: popupScale 0.3s ease;
}

@keyframes popupScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-subtitle {
    margin-bottom: 20px;
    color: #555;
}

.popup-form .form-group {
    margin-bottom: 14px;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.w-100 {
    width: 100%;
}

.section {
  padding: 90px 0;
}

/* Reduce overall modal spacing */
.modal-box {
    padding: 20px 25px;  /* smaller padding */
}

/* Reduce space between fields */
.popup-form .form-group {
    margin-bottom: 12px;
}

/* Smaller label spacing */
.popup-form label {
    font-size: 14px;
    margin-bottom: 4px;
}

/* Reduce input height */
.popup-form input,
.popup-form select {
    padding: 8px 12px;
    height: 38px;
    font-size: 14px;
}

/* Reduce textarea height */
.popup-form textarea {
    min-height: 80px;   /* was probably 120+ */
    padding: 8px 12px;
    font-size: 14px;
}

/* Reduce button height slightly */
.popup-form .btn {
    padding: 10px;
    font-size: 15px;
}



/* ===============================
   CAREERS IMAGE FIX
================================ */
.image-card {
  width: 100%;
  height: 100%;
  max-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* KEY FIX */
  display: block;
}

/* Mobile fix */
@media (max-width: 768px) {
  .image-card {
    max-height: 260px;
    margin-top: 30px;
  }
}


/* ===============================
   HOW TO APPLY – CAREERS
================================ */
.apply-careers-theme {
  background: #f5f7fb;
}

.apply-header {
  text-align: center;
  margin-bottom: 50px;
}

.apply-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0b1c39;
}

.apply-header p {
  font-size: 17px;
  color: #5f6b7a;
  max-width: 700px;
  margin: 10px auto 0;
}

/* Layout */
.apply-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Cards */
.apply-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.apply-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b1c39;
}

/* Contact list */
.apply-contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.apply-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 14px;
}

.apply-contact-list i {
  color: #1f4ed8;
  font-size: 18px;
}

/* Form */
.career-apply-form .form-group {
  margin-bottom: 16px;
}

.career-apply-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.career-apply-form input,
.career-apply-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dbe2f1;
  font-size: 15px;
}

.career-apply-form input:focus,
.career-apply-form select:focus {
  outline: none;
  border-color: #1f4ed8;
}

/* Responsive */
@media (max-width: 900px) {
  .apply-wrapper {
    grid-template-columns: 1fr;
  }
}

.footer-map {
  margin-top: 2px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.footer-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
}


.Services-link {
  cursor: pointer;
}

.Services-link {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform 0.2s;
}

.Services-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Top accent */
.softfm-theme .Services-link::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-orange)
    );
}

.softfm-theme .Services-link {
    position: relative;
    border-radius: 22px;
    padding: 18px;
    background: white;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    height: 100%;
}

/* Services card base (if not already styled) */
.Services-link {
 position: relative;
    border-radius: 22px;
    padding: 18px;
    background: white;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    height: 100%;
}

/* 🔵🟠 Gradient TOP BORDER */
.Services-link::before {
  content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-orange));
}


.certifications-section .section-header h2 {
  color: white; 
}

.certifications-section .section-header p {
  color: white;
}

.cert-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.cert-logo-card {
  background: #111827;
  
  border-radius: 12px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-logo-card img {
  max-height: 50px;
  max-width: 85%;
  object-fit: contain;
  border-radius: 10px;

  border: 4px solid transparent;   /* needed for gradient border */
  background: 
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #2563eb 0%, #f97316 100%) border-box;
}




/* Responsive */
@media (max-width: 1024px) {
  .cert-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .cert-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   SECURITY GRID – BASE
================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ===============================
   CARD
================================ */
.security-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.security-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.4);
}

/* ===============================
   AVATAR
================================ */
.security-avatar {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
}

/* Role Colors */
.security-avatar.access {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

.security-avatar.patrol {
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
}

.security-avatar.emergency {
  background: linear-gradient(135deg, #f97316, #c2410c);
}

/* ===============================
   TEXT
================================ */
.security-info {
  display: flex;
  flex-direction: column;
}

.security-role {
  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
}

.security-status {
  font-size: 13px;
  margin-top: 4px;
}

.security-status.active {
  color: #22c55e;
}

.security-status.standby {
  color: #facc15;
}

/* ===============================
   TABLET (≤ 1024px)
================================ */
@media (max-width: 1024px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   MOBILE (≤ 640px)
================================ */
@media (max-width: 640px) {
  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-card {
    padding: 16px;
    gap: 12px;
  }

  .security-avatar {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .security-role {
    font-size: 14px;
  }

  .security-status {
    font-size: 12px;
  }
}

/* Floating Contact Container */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Common Button Style */
.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* 🔵🟠 Blue + Orange Gradient */
.call-btn,
.whatsapp-btn {
  background: linear-gradient(135deg, #2563eb 0%, #f97316 100%);
}

/* Hover Effect */
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.footer-social-links {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f2937; /* dark footer tone */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.footer-social-links a:hover {
  background: linear-gradient(135deg, #2563eb, #f97316);
  transform: translateY(-3px);
}


/* Intro paragraph (centered, premium) */
.about-intro {
  max-width: 820px;
  margin: 0 auto 56px auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: #1f2937;
}

/* Body container (centered block, left-aligned text) */
.about-body {
  max-width: 1500px;
  margin: 0 auto;
}

/* Each section */
.about-section {
  margin-bottom: 48px;
}

.about-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
  color: #0f172a;
}

.about-section p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #374151;
}
.justify-text {
  max-width: 1500px;
  margin: 0 auto;
  text-align: justify;
  line-height: 1.8;
  font-size: 16px;
  color: #374151;
}

/* Role-based colors */
.security-avatar.access {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

.security-avatar.patrol {
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
}

.security-avatar.emergency {
  background: linear-gradient(135deg, #f97316, #c2410c);
}

.security-info {
  display: flex;
  flex-direction: column;
}

.security-role {
  font-weight: 600;
  color: #ffffff;
}

.security-status {
  font-size: 13px;
  margin-top: 4px;
}

.security-status.active {
  color: #22c55e;
}

.security-status.standby {
  color: #facc15;
}

.clients-track.reverse {
  animation: scroll-right 35s linear infinite;
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.enhanced-context {
  padding: 90px 0;
  background: #f9fbff;
}

.enhanced-header h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.4px;
}

.enhanced-body {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.enhanced-body p {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.enhanced-highlights {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.highlight {
  text-align: center;
}

.highlight-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0b5cff;
  margin-bottom: 6px;
}

.highlight-label {
  font-size: 14px;
  text-transform: uppercase;
   font-weight: 400;
  letter-spacing: 0.06em;
  color: #0F172A;
}

.enhanced-divider {
  margin: 70px auto 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #0b5cff, #7c9cff);
  border-radius: 3px;
}




.highlight-value {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;

  /* GRADIENT TEXT */
  background: linear-gradient(
    90deg,
    #2f6bff 0%,
    #6a5cff 45%,
    #ff7a18 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.ceo-name {
  line-height: 1.5;
}

.ceo-role {
  background: linear-gradient(90deg, #5b5de6, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.ceo-company {
  font-style: italic;
  color: #6b7280; /* subtle gray, change if needed */
}

.ceo-person {
  font-weight: 700;
  color: #0b1c39;
}

/* THANK YOU POPUP */
.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.thankyou-popup {
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  pointer-events: auto; /* ✅ VERY IMPORTANT */
}


.thankyou-icon {
  font-size: 46px;
  margin-bottom: 10px;
}

.thankyou-popup h2 {
  margin-bottom: 10px;
  color: #0b1c39;
}

.thankyou-popup p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

@keyframes scaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.cta-text {
    color: #ffffff;
}

/* ================================
   CERTIFICATION CARDS (KEEP HTML)
================================ */

.cert-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(13, 45, 120, 0.08);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(13, 45, 120, 0.15);
}

/* ================================
   IMAGE FIX (IMPORTANT PART)
================================ */

.cert-image {
  background:  linear-gradient(
    90deg,
    #2f6bff 0%,
    #6a5cff 45%,
    #ff7a18 100%
  );;
  border-radius: 5px;
  padding: 3px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Uniform image area */
.cert-image img {
  width: 100%;
  height: 220px;              /* KEY: fixed height */
  object-fit: contain;       /* prevents crop */
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;             /* space for tall certs */
}

/* ================================
   TEXT (UNCHANGED, CLEAN)
================================ */

.cert-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0b1c39;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}

.cert-card .award-year {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 500px;
  background: rgba(13, 71, 161, 0.08);
  color: #0d47a1;
}

/* ================================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
  .awards-grid .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 24px;
  }

  .cert-image img {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .awards-grid .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cert-card {
    padding: 16px;
  }

  .cert-image img {
    height: 180px;
  }
}

/* Touch devices – remove hover jump */
@media (hover: none) {
  .cert-card:hover {
    transform: none;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  }
}

/* 🔥 SERVER-SAFE FLEX FIX (REQUIRED) */
.awards-grid .col-3 {
  min-width: 0;
}

.cert-card {
  min-width: 0;
}

.cert-image {
  min-width: 0;
}



.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border: 1px solid red;
}

.error-msg {
    color: red;
    font-size: 13px;
    display: none;
}

.consult-thankyou-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.consult-thankyou-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 350px;
}

.consult-thankyou-overlay.active {
    display: flex;
}


/* Logo container */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Show text on desktop */
.logo-text {
    display: block;          /* 🔥 show on desktop */
    font-weight: 800;
    font-size: 19px;
    white-space: nowrap;     /* Prevent line break */

    background: linear-gradient(
        90deg,
        #1f4db8 0%,
        #6f7687 50%,
        #f26522 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop logo size */
.logo-img {
    height: 42px;
}

/* Mobile */
@media (max-width: 768px) {

    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 14px;
    }
}


.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.thankyou-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thankyou-box h3 {
  margin-bottom: 10px;
  color: #0b1c39;
}

.thankyou-box p {
  margin-bottom: 20px;
  color: #555;
}








