/* =============================================
   RIYA ROADWAYS – CORPORATE THEME
   Inspired by Tejas Cargo India Limited
   ============================================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,600;1,700&display=swap");

/* ─── DESIGN TOKENS ─── */
:root {
  --primary: #15803d;
  --primary-dark: #0f5f31;
  --primary-light: #34d399;
  --primary-rgb: 21, 128, 61;
  --accent: #ff6b35;

  --navy: #050d1a;
  --navy-light: #0a1628;
  --navy-card: #0e1d30;

  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-grey: #f1f3f5;
  --mid-grey: #e9ecef;
  --border-grey: #dee2e6;
  --text-dark: #212529;
  --text-body: #495057;
  --text-muted: #6c757d;
  --text-light: #adb5bd;
  --text-white: #ffffff;
  --text-white-muted: #e2e8f0;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

    --font: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --header-h: 72px;
  --container: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  animation: pageFadeIn 0.35s ease-out forwards;
}
@keyframes pageFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover {
  color: var(--primary-dark);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}
p {
  margin-bottom: 24px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  max-width: 75ch;
  hyphens: auto;
}
p:last-child {
  margin-bottom: 0;
}
ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   TOP INFO BAR
   ============================================= */
.top-bar {
  background: var(--navy);
  color: var(--text-white-muted);
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a {
  color: var(--text-white-muted);
}
.top-bar a:hover {
  color: var(--primary-light);
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-light);
  flex-shrink: 0;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-grey);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.35s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: transparent;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
}
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo img {
  height: 65px;
  width: auto;
}
.footer-col img.footer-logo {
  height: 85px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 4px;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  position: relative;
}
.main-nav a:hover {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
  text-decoration: none;
}
.main-nav a.active {
  color: var(--primary);
  font-weight: 600;
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =============================================
   HERO – Content styles (slides handled below)
   ============================================= */
.hero-content {
  max-width: 720px;
  padding: 100px 0;
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  line-height: 1.8;
  margin-left: 0;
  margin-right: auto;
}
.hero-note {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 20px !important;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  position: relative;
  background: var(--navy);
  background-image: url("hero-slide-4.jpg");
  background-size: cover;
  background-position: center;
  padding: 140px 0 100px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 13, 26, 0.98) 0%,
    rgba(15, 23, 42, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.5s 0.1s forwards;
}
.page-hero-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary);
}
.page-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  max-width: 800px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.5s 0.2s forwards;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.page-hero p {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 0;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.5s 0.35s forwards;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  background: var(--primary);
  color: #fff;
}
.btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  box-shadow: none;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background: var(--navy-light);
  color: #fff;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 90px 0;
}
.bg-grey {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.bg-dark {
  background: var(--navy);
  color: var(--text-white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.bg-dark .section-title,
.bg-image-section .section-title {
  color: #fff;
}

.section-subtitle {
  font-size: 16px;
  color: #475569;
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.text-center {
  text-align: center;
}
.text-center p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.max-width-text {
  max-width: 650px;
}

/* =============================================
   LAYOUT
   ============================================= */
.section-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.section-flex.align-center {
  align-items: center;
}

.text-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
}

.row-split {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.col-main {
  flex: 7;
  min-width: 0;
}
.col-side {
  flex: 5;
  min-width: 0;
}

/* =============================================
   "WHAT WE DO" – Company Info Card
   ============================================= */
.info-card {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: 6px;
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* =============================================
   HIGHLIGHT STATS
   ============================================= */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.highlight-item {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: 6px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.highlight-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-2px);
}
.highlight-item h4 {
  margin: 0 0 4px;
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.highlight-item p {
  margin: 0;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.highlights-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* =============================================
   PROCESS STEPS (How We Operate)
   ============================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: 6px;
  padding: 30px 24px;
  text-align: center;
  counter-increment: step;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.process-step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.process-step::before {
  content: "0" counter(step);
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: rgba(var(--primary-rgb), 0.08);
  margin-bottom: 8px;
  line-height: 1;
}
.process-step strong {
  display: block;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.process-step span {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-left: 3px solid var(--primary);
  border-radius: 0 6px 6px 0;
  padding: 28px;
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.service-card:last-child {
  margin-bottom: 0;
}
.service-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 6px;
}
.service-benefit {
  display: block;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-top: 8px;
}

/* =============================================
   INDUSTRY CARDS
   ============================================= */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.industry-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.industry-split::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: 30%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(16, 185, 129, 0),
    rgba(16, 185, 129, 0.25)
  );
  z-index: -1;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 991px) {
  .industry-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.industry-visual-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  animation: subtleHeroIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes subtleHeroIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.industry-visual-block .img-box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.industry-visual-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.industry-visual-block:hover img {
  transform: scale(1.05);
}
.industry-visual-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.75) 0%,
    rgba(15, 23, 42, 0.15) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}
.industry-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  z-index: 3;
  pointer-events: none;
}
/* Map embed overlay link */
.map-embed {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  height: 100%;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}
.map-embed-link {
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(0,0,0,0);
  z-index: 4;
  cursor: pointer;
}

/* Hero slide background images (moved from inline styles) */
.hero-slide.hero-slide-1 { background-image: url('hero-slide-4.jpg'); }
.hero-slide.hero-slide-2 { background-image: url('fleet-truck-1.jpeg'); }
.hero-slide.hero-slide-3 { background-image: url('hero-slide-3.jpg'); }
.hero-slide.hero-slide-4 { background-image: url('fleet-truck-2.jpeg'); }
.hero-slide { background-size: cover; background-position: center; }

.overlay-hero {
  margin-bottom: 20px;
}
.overlay-hero h3 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.overlay-hero p {
  color: rgba(226, 232, 240, 0.85);
  font-size: 15.5px;
  margin: 0;
}
.stat-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  font-weight: 500;
  color: #f8fafc;
}
.stat-tag svg {
  width: 20px;
  height: 20px;
  color: #047857;
  flex-shrink: 0;
  stroke-width: 3px;
  filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.3));
}
.industry-icon-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.05);
  margin-bottom: 20px;
  color: var(--primary);
  transition: all 0.25s ease;
}
.industry-icon-box svg {
  width: 31px;
  height: 31px;
}
.industry-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  position: relative;
  z-index: 2;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
}
.industry-card:hover .industry-icon-box {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  transform: scale(1.1);
}

.industry-cta-divider {
  text-align: center;
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--border-grey);
}
.industry-cta-btn {
  padding: 16px 36px !important;
  font-size: 15.5px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: none;
}
.industry-cta-btn:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.1);
  background-color: var(--primary-dark);
}
.industry-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.industry-card p {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 0;
}

/* =============================================
   FLEET ROWS
   ============================================= */
.fleet-row {
  display: flex;
  gap: 36px;
  margin-bottom: 28px;
  padding: 40px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.4);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.02);
  align-items: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fleet-row:hover {
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04);
  background: #f8fafc;
  border-color: rgba(var(--primary-rgb), 0.25);
  transform: translateY(-6px);
}
.fleet-row.reverse {
  flex-direction: row-reverse;
  background: #fcfcfd; /* Subtle alternate rhythm */
}

.fleet-image {
  flex: 0 0 360px;
  overflow: hidden;
  border-radius: 12px;
}
.fleet-image .img-box-fleet {
  height: 280px;
}
.fleet-image .img-box-fleet img {
  object-fit: contain;
  padding: 20px;
}
.fleet-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fleet-row:hover .fleet-image img {
  transform: scale(1.05);
}

.fleet-info {
  flex: 1;
}
.fleet-info h3 {
  color: #0f172a;
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.fleet-info p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
}

.fleet-info .content-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.fleet-info .content-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 12px;
  line-height: 1.6;
}
.fleet-info .content-list li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  font-size: 14px;
  background: rgba(var(--primary-rgb), 0.1);
  width: 20px;
  height: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* =============================================
   IMAGE BOXES
   ============================================= */
.img-box {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 16px;
  background: #f8fafc;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05); /* Soft structured shadow */
  position: relative;
}
.img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 26, 0.02);
  z-index: 1;
  transition: background 0.3s ease;
  pointer-events: none;
}
.img-box:hover::before {
  background: rgba(5, 13, 26, 0.06);
}
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.img-box:hover img {
  transform: scale(1.03); /* Subtle sophisticated zoom */
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.image-grid .img-box {
  height: 220px;
}

/* =============================================
   CONTENT LIST (Why Choose Us)
   ============================================= */
ul.content-list {
  padding-left: 0;
  margin-top: 0;
  list-style: none;
}
ul.content-list li {
  margin-bottom: 12px;
  color: var(--text-body);
  line-height: 1.6;
}

.bg-image-section {
  position: relative;
  background-image: url("fleet-truck-1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}
.bg-image-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 13, 26, 0.92) 0%,
    rgba(5, 13, 26, 0.78) 100%
  );
  z-index: 1;
}
.bg-image-section .container {
  position: relative;
  z-index: 2;
}

/* =============================================
   LOGOS CAROUSEL
   ============================================= */
.logos-container {
  overflow: hidden;
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
}
.logos-header {
  text-align: center;
  margin-bottom: 28px;
}
.logos-header h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 40s linear infinite;
}
.logos-track:hover {
  animation-play-state: paused;
}
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 30px));
  }
}
.logo-img {
  height: 44px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: all 0.3s var(--ease);
}
.logo-img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* =============================================
   QUOTE BANNER
   ============================================= */
.quote-banner {
  background: var(--navy);
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}
.quote-banner h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* =============================================
   BRANCH CARDS
   ============================================= */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.branch-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top: 4px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.branch-card:hover {
  border-top-color: var(--primary);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}
.branch-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}
.branch-card .branch-focus {
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.branch-card p {
  font-size: 14.5px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   DATA TABLE (Branches)
   ============================================= */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-grey);
  background: var(--white);
  margin-top: 20px;
}
.data-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 18px;
  text-align: left;
}
.data-table tbody td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-body);
  border-bottom: 1px solid var(--mid-grey);
}
.data-table tbody tr:last-child td {
  border-bottom: none;
}
.data-table tbody tr:hover {
  background: rgba(var(--primary-rgb), 0.04);
}
.data-table tbody td strong {
  color: var(--text-dark);
}

/* =============================================
   CONTACT CARDS
   ============================================= */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.contact-card:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}
.contact-icon svg {
  width: 22px;
  height: 22px;
}
.contact-card h5 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 15px;
  color: #0f172a;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}
.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-card a:hover {
  color: var(--primary-dark);
}

/* =============================================
   FORMS
   ============================================= */
.quote-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  color: #0f172a;
  background: #f8fafc;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15);
  background: #ffffff;
}
.form-control::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

/* =============================================
   CORE VALUES SECTION
   ============================================= */
.values-section {
  background-color: #f8fafc; /* Subtle corporate grey/blue tint */
  padding: 90px 0;
  border-top: 1px solid #e2e8f0; /* Section anchor */
  border-bottom: 1px solid #e2e8f0;
}
.values-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.values-accent {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 16px;
  border-radius: 2px;
}
.values-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a; /* Deep charcoal/near-black */
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.values-subtitle {
  font-size: 16px;
  color: #475569; /* Clear, readable mid-charcoal */
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.values-card {
  background: #ffffff;
  border: 1px solid #e2e8f0; /* Stronger than default border */
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}
.values-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08); /* Deep enterprise shadow */
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(var(--primary-rgb), 0.25);
}
.values-card .icon-wrapper {
  width: 56px;
  height: 56px;
  color: var(--primary);
  margin-bottom: 24px;
  background: rgba(var(--primary-rgb), 0.05); /* Subtle circular ground */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.values-card .icon-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}
.values-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}
.values-card-desc {
  font-size: 14.5px;
  color: #334155; /* Highly readable dark grey */
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .values-card {
    padding: 32px 24px;
  }
}

/* =============================================
   NETWORK MAP PRO
   ============================================= */
.network-flex {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.map-enterprise-container {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 2500 / 2843; /* Adjusted for india.svg */
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}
.enterprise-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(100%) opacity(0.3)
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.node-pulse {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.node-pulse::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 16px rgba(var(--primary-rgb), 0.8);
  animation: nodePulse 2.5s infinite;
}
.node-pulse span {
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.node-pulse:hover span {
  opacity: 1;
  transform: translateY(0);
}

@keyframes nodePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(var(--primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
  }
}

.node-patna {
  top: 39%;
  left: 58%;
  z-index: 3;
}
.node-patna::before {
  width: 16px;
  height: 16px;
  background: var(--accent);
  animation-duration: 2s;
}
.node-rudrapur {
  top: 28%;
  left: 39%;
}
.node-jamshedpur {
  top: 49%;
  left: 62%;
}
.node-ranchi {
  top: 47%;
  left: 59%;
}
.node-pune {
  top: 64%;
  left: 20%;
}

.map-lines-pro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.route-spoke {
  fill: none;
  stroke: var(--primary);
  vector-effect: non-scaling-stroke;
  stroke-width: 1.5;
  stroke-dasharray: 6, 8;
  opacity: 0.35;
  animation: routeFlow 5s linear infinite;
  stroke-linecap: round;
}
.map-enterprise-container:hover .route-spoke {
  opacity: 0.8;
  stroke-width: 2.5;
  animation-duration: 2s;
}
@keyframes routeFlow {
  to {
    stroke-dashoffset: -32;
  }
}

/* =============================================
   FOOTER – Tejas Cargo Style
   ============================================= */
.site-footer {
  background: var(--navy);
  color: #ffffff;
  padding: 56px 0 0;
  font-size: 13.5px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 18px;
}
.footer-col p {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-col ul {
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #ffffff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.footer-col ul li a::before {
  content: "→";
  color: var(--primary-light);
  font-weight: 700;
  font-size: 12px;
}
.footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
  text-decoration: none;
}
.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-col a:hover {
  color: var(--primary-light);
}

/* Footer contact with icons */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item span {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
}
.footer-contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-contact-item a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: #ffffff;
  font-size: 12.5px;
  margin: 0;
  opacity: 0.8;
}

/* =============================================
   FLOATING ACTION BUTTONS
   ============================================= */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.wa-btn,
.quote-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: all 0.25s var(--ease);
}
.wa-btn {
  background: #25d366;
}
.quote-btn {
  background: var(--primary);
}
.wa-btn:hover,
.quote-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
  color: #fff;
  text-decoration: none;
}
.wa-btn svg,
.quote-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Tooltip */
.wa-btn::after,
.quote-btn::after {
  position: absolute;
  right: 62px;
  background: var(--navy);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-btn::after {
  content: "WhatsApp";
}
.quote-btn::after {
  content: "Get Quote";
}
.wa-btn:hover::after,
.quote-btn:hover::after {
  opacity: 1;
}

/* =============================================
   SCROLL PROGRESS
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  z-index: 10001;
  transition: width 0.1s linear;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.stagger-children > .fade-up:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger-children > .fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger-children > .fade-up:nth-child(3) {
  transition-delay: 0.15s;
}
.stagger-children > .fade-up:nth-child(4) {
  transition-delay: 0.2s;
}
.stagger-children > .fade-up:nth-child(5) {
  transition-delay: 0.25s;
}
.stagger-children > .fade-up:nth-child(6) {
  transition-delay: 0.3s;
}

/* =============================================
   HERO SLIDESHOW
   ============================================= */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 13, 26, 0.92) 0%,
    rgba(5, 13, 26, 0.6) 55%,
    rgba(5, 13, 26, 0.25) 100%
  );
}
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
}
.hero-dot.active {
  background: var(--primary-light);
  transform: scale(1.3);
}

/* Duplicate MAP EMBED block removed */

/* =============================================
   FOOTER SOCIAL ICONS
   ============================================= */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white-muted);
  transition: all 0.25s var(--ease);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-row {
    flex-direction: column !important;
  }
  .fleet-image {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }
  .top-bar {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 76px 20px 20px;
    gap: 2px;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    z-index: 999;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav a {
    font-size: 15px;
    padding: 12px 14px;
    width: 100%;
  }
  .main-nav a.active::after {
    display: none;
  }

  .hero {
    min-height: 380px;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .page-hero {
    padding: 80px 0 40px;
  }
  .section {
    padding: 50px 0;
  }
  .section-flex {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .row-split {
    flex-direction: column;
    gap: 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-block {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .network-flex {
    grid-template-columns: 1fr;
  }
  .floating-actions {
    right: 14px;
    bottom: 14px;
  }
  .wa-btn::after,
  .quote-btn::after {
    display: none;
  }

  .hero-dots {
    bottom: 16px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-content h1 {
    font-size: 22px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    margin: 0 !important;
  }
  .section-title {
    font-size: 22px;
  }
  .branch-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ENTERPRISE HOMEPAGE REDESIGN (NEW)
   ============================================= */

/* Hero */
.hero-enterprise {
  background: var(--navy);
}
.hero-zoom .hero-slide.active {
  animation: heroZoom 10s linear forwards;
}
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(5, 13, 26, 0.95) 0%,
    rgba(5, 13, 26, 0.7) 45%,
    rgba(5, 13, 26, 0.3) 100%
  );
}
.hero-container {
  position: relative;
  z-index: 2;
}
.hero-content-enterprise {
  max-width: 720px;
}
.hero-title-strong {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.hero-subtitle {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-buttons-new {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.btn-solid-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
  position: relative;
  overflow: hidden;
}
.btn-solid-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-solid-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(var(--primary-rgb), 0.45);
  color: #fff;
  text-decoration: none;
}
.btn-solid-primary:hover::after {
  opacity: 1;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.25s var(--ease);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.hero-note-clean {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  font-weight: 500;
}

/* Operational Highlights */
.highlights-grid-enterprise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-item-pro {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.25s var(--ease);
}
.highlight-item-pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border-color: var(--primary);
}
.highlight-item-pro h4 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.highlight-item-pro p {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Timeline UI */
.timeline-ui {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 24px;
}
.timeline-line {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}
.timeline-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.timeline-node-item {
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}
.timeline-dot {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 12px rgba(27, 138, 74, 0.15);
  transition: all 0.3s ease;
}
.timeline-node-item:hover {
  transform: translateY(-4px);
}
.timeline-node-item:hover .timeline-dot {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(27, 138, 74, 0.3);
  transform: scale(1.1);
}
.timeline-node-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.timeline-node-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Enterprise Dark Section */
.enterprise-dark-section {
  position: relative;
  background: url("hero-slide-3.jpg") center/cover no-repeat;
  padding: 100px 0;
}
.dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 13, 26, 0.96) 0%,
    rgba(15, 23, 42, 0.9) 100%
  );
  z-index: 1;
}
.relative-z {
  position: relative;
  z-index: 2;
}
.max-900 {
  max-width: 900px;
}
.text-white {
  color: #fff !important;
}
.dark-subtitle {
  font-size: 17px;
  color: #94a3b8;
  margin-bottom: 48px;
  line-height: 1.6;
}
.dark-bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}
.dark-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bull-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bull-icon {
  width: 28px;
  height: 28px;
  background: rgba(27, 138, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
  border: 1px solid rgba(27, 138, 74, 0.4);
}
.bull-icon svg {
  width: 14px;
  height: 14px;
}
.bull-text {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
}
.bull-text strong {
  color: #fff;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

/* Enterprise Service Card */
.service-card-enterprise {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.4); /* Almost invisible border */
  border-left: 4px solid rgba(var(--primary-rgb), 0.15); /* Soft primary tint base */
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 24px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.02); /* Built-in layered depth */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.service-card-enterprise:hover {
  background: #ffffff;
  border-left-color: var(--primary);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-6px);
}
.service-card-enterprise h4 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card-enterprise p {
  font-size: 15.5px;
  color: #334155;
  margin: 0;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

/* Mobile additions for new layout */
@media (max-width: 768px) {
  .hero-title-strong {
    font-size: 32px;
  }
  .network-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .highlights-grid-enterprise {
    grid-template-columns: 1fr;
  }
  .timeline-line {
    display: none;
  }
  .timeline-nodes {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  .timeline-node-item {
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .timeline-node-item:hover {
    transform: translateX(6px);
  }
  .timeline-dot {
    margin: 0;
    flex-shrink: 0;
  }
  .dark-bullet-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Logos Enterprise */
.logos-track .logo-img {
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s var(--ease);
}
.logos-track .logo-img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Continuous Scroll Animation */
.logos-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}
.logos-track:hover {
  animation-play-state: paused;
}
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
