/* -------------------------------------------------------------
   SALVIN IT SOLUTIONS - Main CSS Stylesheet
   Designed with premium aesthetics, rich variables, and smooth animations.
   Optimized strictly for the Hero-only viewport layout.
   ------------------------------------------------------------- */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --primary: #0A3C94;
  --primary-hover: #072C70;
  --primary-light: #EBF2FF;
  --secondary: #3B82F6;
  --secondary-hover: #2563EB;
  --secondary-light: #EFF6FF;
  
  --dark-navy: #0B192C;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  
  --bg-body: #FFFFFF;
  --bg-light: #FAFDFE;
  --bg-dark-ribbon: #003698;
  
  --success: #10B981;
  --success-light: #ECFDF5;
  
  --border-color: #E2E8F0;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.25;
}

button {
  font-family: inherit;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.highlight-blue {
  color: #1E56A0; /* Solid corporate blue highlight */
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  background-color: #E6EEFA;
  color: #0A3C94;
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary) !important;
  color: #FFFFFF !important;
}

.btn-primary:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 60, 148, 0.15);
}

.btn-outline {
  background-color: transparent;
  border-color: #1E56A0;
  color: #1E56A0;
}

.btn-outline:hover {
  background-color: rgba(30, 86, 160, 0.05);
  transform: translateY(-1px);
}

.btn-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* -------------------------------------------------------------
   Header & Navigation
   ------------------------------------------------------------- */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: transparent;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-normal);
}

.header-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 80px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--primary);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--secondary);
  margin-top: 1px;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: #1E293B;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 250px;
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1010;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.dropdown-link:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1020;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--dark-navy);
  margin: 6px 0;
  transition: var(--transition-normal);
}

/* -------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------- */
.hero-section {
  flex-grow: 1;
  position: relative;
  background-color: var(--bg-light);
  padding-top: 140px;
  padding-bottom: 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content {
  z-index: 10;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0F172A;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  line-height: 1.65;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

/* Mini Features Block under Hero Content - 100% replica */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.hero-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.hero-feature-icon {
  background: none !important;
  color: #1E56A0 !important;
  padding: 0;
  width: auto;
  height: auto;
  display: inline-flex;
}

.hero-feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: #1E56A0;
  stroke-width: 1.5;
  fill: none;
}

.hero-feature-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
  font-family: var(--font-heading);
}

/* Hero Right Side Visual */
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full Viewport Background spanning right side */
.hero-full-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%; /* Spans the entire hero section */
  height: 100%;
  background-image: url('assets/factory-bg.png');
  background-size: cover;
  background-position: right center; /* Align factory image assets to the right side */
  z-index: 1;
}

.hero-full-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 80% white gradient, only the last 20% clearly shows the image on the right */
  background: linear-gradient(90deg, #FAFDFE 0%, #FAFDFE 65%, rgba(250, 253, 254, 0.9) 80%, rgba(250, 253, 254, 0) 100%);
  z-index: 2;
}

/* Dashboard Mockup card floating in front */
.dashboard-mockup {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 50px -10px rgba(10, 60, 148, 0.12);
  z-index: 5;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--font-body);
}

/* Mockup Header */
.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.mockup-logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.mockup-logo span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.05em;
}

.mockup-search {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.025);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  width: 195px;
}

.mockup-search input {
  border: none;
  background: none;
  font-size: 0.75rem;
  outline: none;
  width: 100%;
  color: var(--text-dark);
}

.mockup-search svg {
  width: 11px;
  height: 11px;
  stroke: var(--text-muted);
  fill: none;
}

.mockup-admin {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mockup-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #3B82F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.mockup-admin-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mockup-admin-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.mockup-admin-role {
  font-size: 0.58rem;
  color: var(--text-muted);
}

/* Mockup Layout Grid */
.mockup-body {
  display: grid;
  grid-template-columns: 95px 1fr;
  min-height: 290px;
}

/* Mockup Sidebar */
.mockup-sidebar {
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mockup-side-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.mockup-side-item svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  fill: none;
}

.mockup-side-item span {
  font-size: 0.58rem;
  font-weight: 500;
}

.mockup-side-item.active {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.mockup-side-item:hover:not(.active) {
  background-color: rgba(0, 0, 0, 0.02);
  color: var(--dark-navy);
}

/* Mockup Dashboard Content */
.mockup-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-navy);
}

/* Metrics row */
.mockup-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.mockup-metric-card {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 0.5rem 0.65rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mockup-metric-title {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mockup-metric-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.mockup-metric-change {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.52rem;
  font-weight: 600;
  color: var(--success);
}

.mockup-metric-change.up::before {
  content: '▲';
  font-size: 0.45rem;
}

/* Main Dashboard Charts/Lists Grid - 2 columns stacked */
.mockup-charts-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0.4rem;
}

.mockup-panel {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mockup-panel h5 {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--dark-navy);
}

/* Chart Canvas / SVG wrapper */
.mockup-chart-container {
  height: 135px;
  position: relative;
  width: 100%;
}

.mockup-svg-chart {
  width: 100%;
  height: 100%;
}

/* Stacked panel area */
.mockup-right-panels {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Donut Chart and Legend */
.mockup-donut-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.mockup-donut-svg {
  width: 50px;
  height: 50px;
}

.mockup-legend {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mockup-legend-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.52rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mockup-legend-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

/* Recent Feed */
.mockup-feed {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mockup-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}

.mockup-feed-icon {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.mockup-feed-icon svg {
  width: 8px;
  height: 8px;
  stroke-width: 2.2;
}

.mockup-feed-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mockup-feed-title {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.mockup-feed-desc {
  font-size: 0.52rem;
  color: var(--text-muted);
}

.mockup-feed-time {
  font-size: 0.46rem;
  color: #94A3B8;
  margin-top: 1px;
}

/* -------------------------------------------------------------
   Value Ribbon Strip (Bottom Viewport Footer)
   ------------------------------------------------------------- */
.value-strip {
  background-color: var(--bg-dark-ribbon);
  color: var(--white);
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
  margin-top: auto; /* Push to bottom */
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.value-col {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.value-icon {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: #FFFFFF;
  stroke-width: 1.5;
  fill: none;
}

.value-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.value-text h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.value-text p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

/* -------------------------------------------------------------
   Interactive Modal System
   ------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 18, 37, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
  padding: 0.25rem;
}

.modal-close:hover {
  color: var(--dark-navy);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2.2rem;
}

.modal-title h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.modal-title p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-navy);
}

.form-control {
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.65rem 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background-color: #F8FAFC;
  transition: var(--transition-fast);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

/* Form Submit Success State Alert */
.submit-success-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  text-align: center;
  gap: 0.8rem;
}

.success-checkmark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.05);
}

.success-checkmark svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 3.5;
  fill: none;
}

/* -------------------------------------------------------------
   Responsive Breakpoints
   ------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-factory-bg {
    width: 90%;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-factory-bg {
    position: relative;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Hero Dashboard Mockup Mobile Layout */
  .dashboard-mockup {
    position: relative !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
  }
  .mockup-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mockup-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 0.4rem;
    gap: 0.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
  .mockup-side-item {
    flex-direction: row;
    padding: 0.3rem 0.6rem;
    gap: 0.3rem;
    flex-shrink: 0;
    align-items: center;
  }
  .mockup-side-item span {
    display: inline;
  }
  .mockup-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .mockup-charts-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .mockup-right-panels {
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  .header-nav {
    height: 70px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-link.active::after {
    display: none;
  }
  .nav-dropdown:hover .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    width: 100%;
    padding-left: 1.5rem;
  }
  .dropdown-menu {
    display: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .nav-actions {
    display: none;
  }
  .hero-section {
    padding-top: 110px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* =============================================================
   Our Solutions Section Styles
   ============================================================= */
.solutions-section {
  background-color: #FFFFFF;
  padding: 5rem 0 4rem 0;
}

.badge-solutions {
  display: inline-block;
  color: #1E56A0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.solutions-deck {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.solution-card {
  background-color: #FFFFFF;
  border: 1px solid #E9EFF6;
  border-radius: var(--border-radius-md);
  padding: 2.2rem 1.4rem;
  box-shadow: 0 10px 30px -15px rgba(10, 60, 148, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(10, 60, 148, 0.09);
  border-color: rgba(30, 86, 160, 0.15);
}

.solution-card-icon {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

/* Color mappings for icons */
.crm-icon { color: #2563EB; }
.erp-icon { color: #10B981; }
.mobile-icon { color: #8B5CF6; }
.automation-icon { color: #F97316; }
.custom-icon { color: #EA580C; }

.solution-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1.2rem;
}

.solution-bullet-list {
  padding-left: 1.1rem;
  margin-bottom: 1.8rem;
  flex-grow: 1;
  list-style-type: disc;
}

.solution-bullet-list li {
  font-size: 0.82rem;
  color: #475569;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.learn-more-link {
  font-size: 0.85rem;
  color: #1E56A0;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-fast);
}

.learn-more-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* =============================================================
   Industries We Serve Styles
   ============================================================= */
.serve-industries-section {
  background-color: #FAFDFE;
  padding: 4rem 0 6rem 0;
}

.badge-industries {
  display: inline-block;
  color: #1E56A0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.industries-unified-row {
  background-color: #FFFFFF;
  border: 1px solid #E9EFF6;
  border-radius: var(--border-radius-md);
  display: flex;
  box-shadow: 0 10px 30px -15px rgba(10, 60, 148, 0.03);
  overflow: hidden;
}

.industry-col {
  flex: 1;
  padding: 2.2rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  border-right: 1px solid #F1F5F9;
  transition: all 0.3s ease;
}

.industry-col:last-child {
  border-right: none;
}

.industry-col:hover {
  background-color: #FAFDFE;
  transform: translateY(-2px);
}

.industry-col-icon {
  color: #1E56A0;
  display: inline-flex;
}

.industry-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.4;
  font-family: var(--font-heading);
}

/* =============================================================
   Responsive Additions for Solutions & Industries
   ============================================================= */
@media (max-width: 1024px) {
  .solutions-deck {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .industries-unified-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .industry-col {
    border-bottom: 1px solid #F1F5F9;
  }
  .industry-col:nth-child(3), .industry-col:nth-child(6) {
    border-right: none;
  }
  .industry-col:nth-child(4), .industry-col:nth-child(5), .industry-col:nth-child(6) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .solutions-deck {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-unified-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-col {
    border-right: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
  }
  .industry-col:nth-child(2n) {
    border-right: none;
  }
  .industry-col:nth-child(5), .industry-col:nth-child(6) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .solutions-deck {
    grid-template-columns: 1fr;
  }
  .industries-unified-row {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .industry-col {
    padding: 1.5rem 0.5rem !important;
    border-right: 1px solid #F1F5F9 !important;
    border-bottom: 1px solid #F1F5F9 !important;
  }
  .industry-col h4 {
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
  }
  .industry-col:nth-child(3n) {
    border-right: none !important;
  }
  .industry-col:nth-child(4),
  .industry-col:nth-child(5),
  .industry-col:nth-child(6) {
    border-bottom: none !important;
  }
}

/* =============================================================
   Key Features Section Styles
   ============================================================= */
.key-features-section {
  background-color: #FFFFFF;
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.features-visual {
  width: 100%;
}

.features-dashboard-mockup {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 35px -5px rgba(10, 60, 148, 0.08);
  display: grid;
  grid-template-columns: 95px 1fr;
  overflow: hidden;
  font-family: var(--font-body);
}

/* Mockup Sidebar - Solid primary dark blue */
.f-mockup-sidebar {
  background-color: #0A3C94;
  padding: 0.6rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.f-mockup-side-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  color: rgba(255, 255, 255, 0.65);
}

.f-mockup-side-item svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.f-mockup-side-item span {
  font-size: 0.55rem;
  font-weight: 500;
}

.f-mockup-side-item.active {
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-weight: 600;
}

.f-mockup-side-item:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

/* Mockup Main content area */
.f-mockup-main {
  display: flex;
  flex-direction: column;
  background-color: #FAFDFE;
  overflow: hidden;
}

/* Mockup Header */
.f-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  background-color: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
}

.f-mockup-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.f-mockup-admin {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.f-mockup-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
}

.f-mockup-admin-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.f-mockup-admin-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.f-mockup-admin-role {
  font-size: 0.58rem;
  color: var(--text-muted);
}

/* Mockup Body Content layout */
.f-mockup-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Metrics Row */
.f-mockup-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.f-mockup-metric-card {
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 0.6rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.f-mockup-metric-title {
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--text-muted);
}

.f-mockup-metric-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.f-mockup-metric-change {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--success);
}

.f-mockup-metric-change.up::before {
  content: '▲';
  font-size: 0.45rem;
  margin-right: 1px;
}

/* Charts and Customers Row */
.f-mockup-charts-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.6rem;
}

.f-mockup-panel {
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.f-mockup-panel h5 {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

/* Chart Canvas SVG Wrapper */
.f-mockup-chart-container {
  height: 120px;
  position: relative;
  width: 100%;
}

.f-mockup-svg-chart {
  width: 100%;
  height: 100%;
}

/* Customers Panel Details */
.f-customer-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.f-customer-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 0.45rem;
}

.f-customer-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.f-customer-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar-blue { background-color: #3B82F6; }
.avatar-orange { background-color: #F59E0B; }
.avatar-green { background-color: #10B981; }

.f-customer-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-grow: 1;
}

.f-customer-name {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.f-customer-subtitle {
  font-size: 0.5rem;
  color: var(--text-muted);
}

.f-customer-amount {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.f-recent-act-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-top: auto;
  border-top: 1px solid #F1F5F9;
  padding-top: 0.5rem;
}

/* Right Side: Key Features Typography & List */
.features-content {
  display: flex;
  flex-direction: column;
}

.badge-features {
  display: inline-block;
  color: #1E56A0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.features-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 2.2rem;
  line-height: 1.25;
}

.features-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--transition-fast);
  cursor: pointer;
}

.checklist-item:hover {
  transform: translateX(4px);
}

.checklist-item:hover .check-circle-icon {
  background-color: var(--primary);
  transform: scale(1.1);
}

.check-circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--secondary);
  border-radius: 50%;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.check-circle-icon svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 4;
  fill: none;
}

.checklist-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E293B;
}

/* Responsive styles for Key Features section */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .features-checklist-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .features-title {
    font-size: 1.8rem;
  }
  .features-dashboard-mockup {
    grid-template-columns: 1fr;
  }
  .f-mockup-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 0.4rem;
    gap: 0.5rem;
  }
  .f-mockup-side-item {
    flex-direction: row;
    padding: 0.3rem 0.6rem;
    gap: 0.3rem;
    flex-shrink: 0;
  }
  .f-mockup-side-item span {
    display: inline;
  }
  .f-mockup-charts-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

/* =============================================================
   Process Section Styles
   ============================================================= */
.process-section {
  background-color: #FAFDFE;
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.badge-process {
  display: inline-block;
  color: #1E56A0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 4rem;
  position: relative;
  gap: 1rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  flex: 1;
}

.process-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(10, 60, 148, 0.25);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.process-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.process-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.4;
  max-width: 130px;
  font-family: var(--font-heading);
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  color: #94A3B8;
}

.process-arrow svg {
  width: 20px;
  height: 20px;
}

/* Hover effects */
.process-step:hover .process-icon-wrap {
  background-color: var(--secondary);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 24px -6px rgba(59, 130, 246, 0.35);
}

/* =============================================================
   Why Choose Us Section Styles
   ============================================================= */
.why-choose-section {
  background-color: #FFFFFF;
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}

.why-choose-wrapper {
  background-color: #FFFFFF;
  border: 1px solid #E9EFF6;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px -15px rgba(10, 60, 148, 0.03);
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.why-choose-badge-row {
  display: flex;
  justify-content: center;
}

.badge-why-choose {
  display: inline-block;
  color: #1E56A0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.why-choose-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid #F1F5F9;
  transition: all var(--transition-normal);
  cursor: pointer;
  gap: 1rem;
}

.why-choose-col:last-child {
  border-right: none;
}

.why-choose-icon {
  color: var(--secondary);
  display: inline-flex;
}

.why-choose-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.why-choose-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.35;
  font-family: var(--font-heading);
}

.why-choose-col p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.why-choose-col:hover {
  transform: translateY(-4px);
}

.why-choose-col:hover .why-choose-icon {
  color: var(--primary);
}

/* =============================================================
   Testimonials Section Styles
   ============================================================= */
.testimonials-section {
  background-color: #FAFDFE;
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.badge-testimonials {
  display: inline-block;
  color: #1E56A0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background-color: #FFFFFF;
  border: 1px solid #E9EFF6;
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: 0 10px 30px -15px rgba(10, 60, 148, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(10, 60, 148, 0.08);
  border-color: rgba(30, 86, 160, 0.15);
}

.quote-icon {
  color: var(--secondary);
  display: inline-flex;
}

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

.testimonial-text {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid #F1F5F9;
  padding-top: 1rem;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.author-title {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Carousel Indicators */
.testimonial-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary);
  background-color: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.indicator-dot.active {
  background-color: var(--secondary);
  width: 10px;
  height: 10px;
}

/* =============================================================
   Responsive styles for Process, Why Choose & Testimonials
   ============================================================= */
@media (max-width: 1024px) {
  .process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1rem;
  }
  .process-arrow {
    display: none;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1rem;
  }
  .why-choose-col {
    border-right: none !important;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem 0.5rem !important;
  }
  .process-icon-wrap {
    width: 60px !important;
    height: 60px !important;
  }
  .process-icon-wrap svg {
    width: 24px !important;
    height: 24px !important;
  }
  .process-step h4 {
    font-size: 0.72rem !important;
    max-width: 100% !important;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* =============================================================
   CTA Banner Section Styles
   ============================================================= */
.cta-banner-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  color: #FFFFFF;
  z-index: 10;
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/factory-bg.png');
  background-size: cover;
  background-position: center left;
  z-index: 1;
}

.cta-banner-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient screen overlay: blue tint on the left, blending into solid corporate blue */
  background: linear-gradient(90deg, rgba(10, 60, 148, 0.88) 0%, rgba(10, 60, 148, 0.96) 50%, rgba(10, 60, 148, 1) 100%);
  z-index: 2;
}

.cta-banner-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-text-area {
  flex: 1;
}

.cta-text-area h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  font-family: var(--font-heading);
}

.cta-text-area p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.btn-white {
  background-color: #FFFFFF !important;
  color: var(--primary) !important;
  border: 2px solid #FFFFFF !important;
}

.btn-white:hover {
  background-color: var(--primary-light) !important;
  color: var(--primary-hover) !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-outline-white {
  background-color: transparent !important;
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-1px);
}

/* Responsive styles for CTA section */
@media (max-width: 992px) {
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .cta-text-area p {
    margin: 0 auto;
  }
  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta-text-area h2 {
    font-size: 1.8rem;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

/* =============================================================
   Footer Section Styles
   ============================================================= */
.footer {
  background-color: #0B192C;
  padding: 5rem 0 2rem 0;
  color: rgba(255, 255, 255, 0.7);
  z-index: 10;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1.4fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  font-family: var(--font-heading);
  text-transform: capitalize;
}

/* Brand column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer .logo-main {
  color: #FFFFFF;
}

.footer .logo-sub {
  color: var(--secondary);
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social-links {
  display: flex;
  gap: 0.8rem;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
  transition: all var(--transition-fast);
}

.social-icon-link svg {
  width: 16px;
  height: 16px;
}

.social-icon-link:hover {
  background-color: var(--secondary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Links lists */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 3px;
}

/* Contact Details column */
.footer-contact-col {
  display: flex;
  flex-direction: column;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-contact-list li.align-start {
  align-items: flex-start;
}

.footer-contact-list li a {
  transition: var(--transition-fast);
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list li a:hover {
  color: #FFFFFF;
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}

.mt-1 {
  margin-top: 2px;
}

/* Footer Bottom row */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

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

.footer-bottom-links .divider {
  color: rgba(255, 255, 255, 0.15);
}

/* Responsive Footer styles */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }
  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 2rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* =============================================================
   About Us Section Styles
   ============================================================= */
.about-section {
  background-color: #FFFFFF;
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.badge-about {
  display: inline-block;
  color: #1E56A0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1E56A0;
  line-height: 1.1;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About Visual card */
.about-visual {
  width: 100%;
}

.about-showcase-card {
  background-color: #FFFFFF;
  border: 1px solid #E9EFF6;
  border-radius: var(--border-radius-md);
  padding: 2rem 1.8rem;
  box-shadow: 0 15px 35px -5px rgba(10, 60, 148, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase-card-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 1rem;
}

.showcase-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.showcase-card-dot.red { background-color: #EF4444; }
.showcase-card-dot.yellow { background-color: #F59E0B; }
.showcase-card-dot.green { background-color: #10B981; }

.showcase-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: auto;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.architecture-flow-item {
  display: flex;
  gap: 1.2rem;
}

.arch-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(30, 86, 160, 0.18);
  font-family: var(--font-heading);
  line-height: 1;
}

.arch-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.arch-details h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.arch-details p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* =============================================================
   Contact Us Section Styles
   ============================================================= */
.contact-section {
  background-color: #FAFDFE;
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
}

.badge-contact {
  display: inline-block;
  color: #1E56A0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 2rem;
  line-height: 1.25;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background-color: #FFFFFF;
  border: 1px solid #E9EFF6;
  border-radius: 8px;
  padding: 1.1rem 1.5rem;
  box-shadow: 0 4px 10px rgba(10, 60, 148, 0.01);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  fill: none;
}

.info-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.info-card-text h5 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-card-text a,
.info-card-text span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-navy);
  transition: var(--transition-fast);
}

.info-card-text a:hover {
  color: var(--secondary);
}

/* Contact Form area */
.contact-form-area {
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2.8rem;
  box-shadow: 0 15px 35px -5px rgba(10, 60, 148, 0.06);
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.4rem;
}

.contact-form-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Responsive Rules for About & Contact */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 576px) {
  .about-title,
  .contact-section-title {
    font-size: 1.8rem;
  }
  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  .info-card {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    gap: 0.8rem;
  }
}





