/* 
  Ashtam Global Logistics 
  Main Stylesheet 
*/

/* Font is now loaded via <link> in HTML for performance */

:root {
  --primary-color: #0B1F3A;
  --secondary-color: #C9A14A;
  --secondary-hover: #b38e3e;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
  /* Removed animation that used transform as it breaks position: fixed */
  opacity: 0;
  animation: pageFadeIn 0.5s ease forwards;
}

/* =====================
   PAGE LOADER - TRUCK ANIMATION
===================== */
#page-loader {
  position: fixed;
  inset: 0;
  background: #0B1F3A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-text {
  color: #C9A14A;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 20px;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Truck wrapper */
.loader {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truckWrapper {
  width: 200px;
  height: 100px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  overflow-x: hidden;
}

.truckBody {
  width: 130px;
  height: fit-content;
  margin-bottom: 6px;
  animation: motion 1s linear infinite;
}

@keyframes motion {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(3px); }
  100% { transform: translateY(0px); }
}

.truckTires {
  width: 130px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px 0px 15px;
  position: absolute;
  bottom: 0;
}

.truckTires svg { width: 24px; }

.road {
  width: 100%;
  height: 1.5px;
  background-color: rgba(255,255,255,0.3);
  position: relative;
  bottom: 0;
  align-self: flex-end;
  border-radius: 3px;
}

.road::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  background-color: rgba(255,255,255,0.3);
  right: -50%;
  border-radius: 3px;
  animation: roadAnimation 1.4s linear infinite;
  border-left: 10px solid #0B1F3A;
}

.road::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background-color: rgba(255,255,255,0.3);
  right: -65%;
  border-radius: 3px;
  animation: roadAnimation 1.4s linear infinite;
  border-left: 4px solid #0B1F3A;
}

.lampPost {
  position: absolute;
  bottom: 0;
  right: -90%;
  height: 90px;
  animation: roadAnimation 1.4s linear infinite;
  fill: #C9A14A;
}

@keyframes roadAnimation {
  0%   { transform: translateX(0px); }
  100% { transform: translateX(-350px); }
}

/* =====================
   PAGE FADE-IN
===================== */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* =====================
   SCROLL ANIMATIONS
===================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

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


ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--primary-color);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
  color: var(--text-light);
}

/* Utilities */
.text-center {
  text-align: center;
}

.py-5 {
  padding: 50px 0;
}

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

.bg-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.bg-primary h2,
.bg-primary p,
.bg-primary h3 {
  color: var(--bg-white);
}

.bg-primary h2::after {
  background-color: var(--secondary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--bg-white);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 20px !important;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1300px;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 8px 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.logo { flex-shrink: 0; }

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

.site-logo {
  height: 60px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-left: 12px;
  letter-spacing: -0.3px;
  line-height: 1.2;
  white-space: nowrap;
}

.header.scrolled .site-logo {
  height: 50px;
}

.footer-site-logo {
  height: 90px;
  width: auto;
  display: block;
  margin-bottom: 15px;
}

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

.nav-link {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 5px;
}

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

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

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 250px;
  box-shadow: var(--box-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--secondary-color);
}

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

.dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--secondary-color);
  padding-left: 25px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(to right, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.5) 50%, rgba(11, 31, 58, 0) 100%), url('../images/herobg.webp') center/cover no-repeat;
  position: relative;
}

.hero>.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 110px;
}

.hero-content {
  max-width: 650px;
  color: var(--bg-white);
}

.hero-features {
  display: flex;
  gap: 15px;
  margin-top: 50px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11, 31, 58, 0.8);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--bg-white);
}

.hero-feature i {
  font-size: 1.6rem;
}

.hero-feature span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  color: var(--bg-white);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  color: #e0e0e0;
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-btns {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

/* About Preview */
.about-preview {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--secondary-color);
  z-index: -1;
  border-radius: 4px;
}

.about-text {
  flex: 1;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.service-card:hover .read-more i {
  transform: translateX(5px);
}

.service-card a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  background-color: rgba(201, 161, 74, 0.1);
  color: var(--secondary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Process Section */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ddd;
  z-index: 1;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  min-width: 150px;
  margin-bottom: 30px;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: 4px solid var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.step:hover .step-number {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.step h4 {
  font-size: 1.1rem;
}

/* Industries Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.industry-card {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.industry-overlay h3 {
  color: var(--bg-white);
  margin: 0;
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: var(--transition);
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-card:hover .industry-overlay h3 {
  transform: translateY(0);
  color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  background-color: var(--secondary-color);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.cta-section h2::after {
  display: none;
}

/* Footer */
.footer {
  background-color: #f3f4f6;
  color: #444;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  color: #1a1e3a;
}

.footer-desc {
  margin: 15px 0;
  color: #666;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(201, 161, 74, 0.4);
  color: #333;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, currentColor, rgba(201, 161, 74, 0.6));
  opacity: 0;
  border-radius: 50%;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-links a:hover {
  transform: scale(1.15) translateY(-3px);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(201, 161, 74, 0.4);
}

.social-links a:hover::before {
  opacity: 0.15;
}

/* Brand colors on hover */
.social-links a[aria-label="LinkedIn"]:hover {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
  color: #fff;
  border-color: #0077b5;
}

.social-links a[aria-label="Twitter"]:hover {
  background: linear-gradient(135deg, #1da1f2, #1a91da);
  color: #fff;
  border-color: #1da1f2;
}

.social-links a[aria-label="Facebook"]:hover {
  background: linear-gradient(135deg, #1877f2, #0a66c2);
  color: #fff;
  border-color: #1877f2;
}

.footer h4 {
  color: #1a1e3a;
  font-size: 1.05rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #555;
  font-size: 0.9rem;
}

.footer ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #1a1a1a !important;
  font-weight: 700;
}

.contact-info-list a {
  color: #1a1a1a !important;
}

.contact-info-list i {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed !important;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 9999 !important;
  transition: transform 0.3s ease;
  animation: whatsapp-pulse 2s ease-in-out infinite;
  text-decoration: none !important;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7); }
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

/* Page Header */
.page-header {
  padding: 110px 0 50px;
  background: linear-gradient(rgba(11, 31, 58, 0.8), rgba(11, 31, 58, 0.9)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  text-align: center;
  color: var(--bg-white);
}

.page-header h1 {
  color: var(--bg-white);
  margin-bottom: 0;
  font-size: 2.5rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--secondary-color);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Case Studies */
.case-study {
  margin-bottom: 60px;
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .case-study {
    flex-direction: row;
  }

  .case-study:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.case-img {
  flex: 1;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.case-content {
  flex: 1;
  padding: 40px;
}

.case-meta {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.challenge-solution {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.cs-box {
  background-color: var(--bg-light);
  padding: 20px;
  border-left: 4px solid var(--secondary-color);
  border-radius: 0 4px 4px 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .process-steps::before {
    display: none;
  }

  .step {
    width: 50%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .py-5 {
    padding: 50px 0;
  }

  .page-header {
    padding: 90px 0 40px;
  }

  .site-logo {
    height: 50px;
  }

  .header.scrolled .site-logo {
    height: 45px;
  }

  .header-cta .btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--primary-color);
    transition: var(--transition);
    overflow-y: auto;
    padding: 20px;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-bottom: 50px;
  }

  .hero>.container {
    justify-content: center;
    padding-top: 120px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 30px;
  }

  .about-preview {
    flex-direction: column;
  }

  .step {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* From Uiverse.io by adamgiebl */
.cssbuttons-io-button {
  background: #a370f0;
  color: white;
  font-family: inherit;
  padding: 0.3em;
  padding-left: 1em;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0.8em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  overflow: hidden;
  position: relative;
  height: 2.5em;
  padding-right: 3em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 0.8em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2em;
  width: 2em;
  border-radius: 0.6em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
  right: 0.25em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #7b52b9;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

/* --- Header CTA (action buttons) --- */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.catalogue-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
    height: 2em;
    border-radius: 0.6em;
    border: 1.5px solid var(--secondary-color, #d9a521);
    background: transparent;
    color: var(--secondary-color, #d9a521);
    font-size: 11.5px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    flex-shrink: 0;
}
.catalogue-btn:hover {
    background: var(--secondary-color, #d9a521);
    color: #fff;
}
.catalogue-btn i { font-size: 0.8em; }

/* Stack buttons on small screens */
@media (max-width: 768px) {
    .header-cta {
        gap: 8px;
    }
    .catalogue-btn {
        font-size: 12px;
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .catalogue-btn { display: none; }
}

/* --- Modern Services Section (Reference Match) --- */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.service-icon-circle {
  width: 90px;
  height: 90px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: #1e56d3;
  font-size: 2.2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-circle {
  background: #1e56d3;
  color: #fff;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0b1f3a;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 35px;
  line-height: 1.6;
}

.service-btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  border: 1px solid #1e56d3;
  border-radius: 10px;
  color: #1e56d3;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}

.service-btn-modern:hover {
  background: #1e56d3;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 86, 211, 0.2);
}

.service-btn-modern.solid {
  background: #1e56d3;
  color: #fff;
  border: none;
}

.service-btn-modern.solid:hover {
  background: #1541a0;
}

.services-footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.feature-icon-circle-sm {
  width: 55px;
  height: 55px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e56d3;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.feature-info h5 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 4px;
}

.feature-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

/* --- Why Choose Section --- */
.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.why-icon-circle {
  width: 45px;
  height: 45px;
  background: #0B1F3A;
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0B1F3A;
  margin: 0;
  line-height: 1.2;
}

/* Stats Grid */
.hero-stats {
  margin-top: 40px;
}

.hero-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  background: rgba(11, 31, 58, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(201, 161, 74, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 993px) {
  .hero .hero-stats .stats-grid {
    margin-right: 0;
  }
  .stats-grid {
    margin-right: -40px;
  }
}

.stats-grid:empty { display: none !important; }

.stat-item { text-align: center; padding: 5px; }

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 0px;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   Breakpoints: 992px (tablet), 768px (mobile), 480px (small)
 ===================================================== */

@media (max-width: 992px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.9rem; }

  .header {
    top: 15px !important;
    width: 97%;
    padding: 6px 20px;
  }

  .mobile-menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    background-color: var(--primary-color);
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    z-index: 999;
  }
  .main-nav.active { left: 0; }

  .main-nav .nav-list { flex-direction: column; gap: 5px; }

  .nav-link {
    color: #fff;
    font-size: 1.05rem;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .header-cta .btn { display: none; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.05);
    margin-top: 5px;
    display: none;
    border-radius: 8px;
    padding: 5px 10px;
  }
  .dropdown.active .dropdown-menu { display: block; }
  .dropdown-menu a { color: rgba(255,255,255,0.8); padding: 8px 10px; }

  .hero { min-height: 90vh; padding-bottom: 40px; }
  .hero > .container { padding-top: 100px; }
  .hero-content h1 { font-size: 2.4rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .about-preview { flex-direction: column; gap: 30px; }
  .about-img::before { display: none; }

  .process-steps::before { display: none; }
  .step { width: 50%; }

  .stats-grid {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }
  p  { font-size: 0.95rem; }

  .container { padding: 0 16px; }
  .py-5 { padding: 50px 0; }
  section { padding: 50px 0; }

  .header {
    top: 10px !important;
    width: 97%;
    padding: 5px 15px;
    border-radius: 40px;
  }

  .site-logo { height: 42px; }
  .logo-text { font-size: 1rem; }

  .hero {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 30px;
    background-position: center right;
  }

  .hero > .container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 90px;
    gap: 20px;
  }

  .hero-content { width: 100%; }
  .hero-content h1 { font-size: 1.9rem; line-height: 1.2; }
  .hero-content p { font-size: 0.95rem; }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-btns .btn { width: 100%; text-align: center; }

  .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    width: 100%;
  }
  .hero-feature {
    flex: 1 1 calc(33% - 8px);
    min-width: 90px;
    padding: 8px 6px;
    font-size: 0.7rem;
    border-radius: 8px;
    text-align: center;
    flex-direction: column;
  }
  .hero-feature i { font-size: 1.2rem; margin-bottom: 4px; }

  .stats-grid {
    margin-right: 0;
    margin-left: 0;
    margin-top: 20px;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    padding: 15px;
    gap: 8px;
  }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.6rem; }

  .about-preview { flex-direction: column; gap: 25px; }
  .about-img { width: 100%; }
  .about-img::before { display: none; }
  .about-text { width: 100%; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { min-height: auto; padding: 25px 20px; }

  .process-steps { flex-direction: column; gap: 20px; }
  .process-steps::before { display: none; }
  .step { width: 100%; }

  .industries-grid { grid-template-columns: 1fr; gap: 16px; }
  .industry-card { min-height: 220px; }

  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr !important; }
  .why-card { padding: 18px 15px; }

  .contact-grid { grid-template-columns: 1fr !important; gap: 30px; }
  .contact-form { padding: 25px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-site-logo { height: 65px; }

  .page-header { padding: 100px 0 40px; }
  .page-header h1 { font-size: 1.8rem; }

  .case-study { flex-direction: column !important; }
  .case-img img { min-height: 200px; }
  .case-content { padding: 25px 20px; }

  .comparison-table { overflow-x: auto; display: block; }

  .btn { padding: 10px 22px; font-size: 0.9rem; }

  .truckWrapper { width: 160px; height: 80px; }
  .truckBody { width: 100px; }
  .truckTires { width: 100px; padding: 0 8px 0 12px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }

  .container { padding: 0 12px; }

  .logo-text { display: none; }
  .site-logo { height: 38px; }

  .hero-content h1 { font-size: 1.6rem; }
  .hero-btns .btn { padding: 12px 18px; font-size: 0.88rem; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
    gap: 6px;
  }

  .services-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .py-5 { padding: 35px 0; }
  section { padding: 35px 0; }

  .services-footer-row { grid-template-columns: 1fr; }
  .service-card { padding: 20px 15px; }

  .page-header { padding: 90px 0 30px; }
  .page-header h1 { font-size: 1.5rem; }
}

/* =====================
   TEAM CARDS
===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.team-photo-wrapper {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #f8f9fa;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.team-photo-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #0B1F3A 0%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -3px;
}

.team-info {
  padding: 25px 20px 30px;
}

.team-info h3 {
  font-size: 1.25rem;
  color: #0B1F3A;
  margin-bottom: 4px;
  font-weight: 800;
}

.team-role {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: block;
}

.team-bio {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 0;
  text-align: left;
}

.team-divider {
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  margin: 12px auto;
  border-radius: 2px;
}

/* =====================
   CERTIFICATIONS GRID
===================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.cert-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 2px solid rgba(201, 161, 74, 0.15);
  transition: all 0.35s ease;
}

.cert-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(201, 161, 74, 0.15);
}

.cert-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #0B1F3A, #1e3a5f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--secondary-color);
  font-size: 1.7rem;
}

.cert-card h4 {
  font-size: 0.95rem;
  color: #0B1F3A;
  margin-bottom: 8px;
  font-weight: 800;
  line-height: 1.3;
}

.cert-card p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.cert-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: #0B1F3A;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* =====================
   TIMELINE (Company Story)
===================== */
.timeline {
  position: relative;
  padding: 20px 0;
  margin-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--secondary-color), #0B1F3A);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-item:nth-child(odd) .timeline-content { margin-right: 60px; margin-left: 0; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 60px; }

.timeline-dot {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--secondary-color);
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  top: 8px;
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(201, 161, 74, 0.25);
  flex-shrink: 0;
}

.timeline-year-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -12px;
  background: #0B1F3A;
  color: var(--secondary-color);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.timeline-content {
  width: calc(50% - 55px);
  background: #fff;
  border-radius: 16px;
  padding: 22px 25px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.timeline-content h4 {
  font-size: 1.05rem;
  color: #0B1F3A;
  margin-bottom: 6px;
  font-weight: 800;
}

.timeline-content p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .timeline::before { left: 18px; }
  .timeline-item,
  .timeline-item:nth-child(odd) { flex-direction: column; padding-left: 48px; }
  .timeline-item:nth-child(odd) .timeline-content { margin-right: 0; text-align: left; }
  .timeline-item:nth-child(even) .timeline-content { margin-left: 0; }
  .timeline-content { width: 100%; margin: 0 !important; }
  .timeline-dot { left: 18px; top: 4px; }
  .timeline-year-badge { left: 38px; top: 0; transform: none; font-size: 0.65rem; }
}

/* =====================
   BLOG PAGE
===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.1);
}

.blog-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #0B1F3A 0%, #1e56d3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  background: rgba(201, 161, 74, 0.1);
  color: var(--secondary-color);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
}

.blog-card h3 {
  font-size: 1.1rem;
  color: #0B1F3A;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.blog-meta i { color: var(--secondary-color); }

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1e56d3;
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 14px;
  transition: gap 0.2s ease;
}

.blog-read-more:hover { gap: 12px; color: #1541a0; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* =====================
   CAREERS PAGE
===================== */
.job-grid { display: grid; gap: 18px; margin-top: 40px; }

.job-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s ease;
  flex-wrap: wrap;
}

.job-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(201, 161, 74, 0.1);
  transform: translateX(4px);
}

.job-info h3 {
  font-size: 1.15rem;
  color: #0B1F3A;
  margin-bottom: 10px;
  font-weight: 800;
}

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

.job-tag {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.job-tag.highlight {
  background: rgba(201, 161, 74, 0.1);
  color: #a07a30;
  font-weight: 700;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.perk-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}

.perk-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #0B1F3A, #1e3a5f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--secondary-color);
  font-size: 1.3rem;
}

.perk-card h4 { font-size: 0.95rem; color: #0B1F3A; margin-bottom: 6px; font-weight: 800; }
.perk-card p { font-size: 0.82rem; color: #64748b; margin: 0; }

/* =====================
   SAFETY & COMPLIANCE
===================== */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.safety-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.safety-card:hover {
  transform: translateX(6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.safety-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0B1F3A, #1e3a5f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--secondary-color);
  font-size: 1.35rem;
}

.safety-card h4 { font-size: 1rem; color: #0B1F3A; margin-bottom: 8px; font-weight: 800; }
.safety-card p { font-size: 0.875rem; color: #64748b; margin: 0; line-height: 1.6; }

/* =====================
   INFRASTRUCTURE PAGE
===================== */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.infra-card {
  background: linear-gradient(135deg, #0B1F3A 0%, #1e3a5f 100%);
  border-radius: 20px;
  padding: 38px 30px;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

.infra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(11, 31, 58, 0.35);
}

.infra-card-icon {
  width: 78px;
  height: 78px;
  background: rgba(201, 161, 74, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--secondary-color);
  font-size: 2rem;
  border: 1px solid rgba(201, 161, 74, 0.3);
}

.infra-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: 14px; font-weight: 800; }
.infra-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0; }

.equip-list {
  list-style: none;
  margin-top: 15px;
  text-align: left;
}

.equip-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.8);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.equip-list li i { color: var(--secondary-color); font-size: 0.75rem; flex-shrink: 0; }

/* Stats Strip */
.stats-strip { background: linear-gradient(135deg, #0B1F3A, #1e3a5f); padding: 35px 0; }

.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  text-align: center;
}

.stats-strip-item .stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stats-strip-item .stat-lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* =====================
   SECTION LABEL DIVIDER
===================== */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.section-label span.line { width: 28px; height: 2px; background: var(--secondary-color); }
.section-label span.text {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
}

/* Mission/Vision cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.mv-card {
  border-radius: 20px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
}

.mv-card.mission { background: #0B1F3A; }
.mv-card.vision { background: linear-gradient(135deg, #C9A14A, #b38e3e); }

.mv-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  opacity: 0.9;
}

.mv-card.mission .mv-card-icon { color: var(--secondary-color); }
.mv-card.vision .mv-card-icon { color: #fff; }

.mv-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; }
.mv-card.mission h3 { color: var(--secondary-color); }
.mv-card.vision h3 { color: #fff; }

.mv-card p { line-height: 1.7; margin: 0; font-size: 0.95rem; }
.mv-card.mission p { color: rgba(255,255,255,0.82); }
.mv-card.vision p { color: rgba(255,255,255,0.9); }

@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: 1fr; }
  .infra-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .cert-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
/* ── CLIENTS MARQUEE ─────────────────────────────────────────────────────── */
.clients-marquee-section {
    background: #0b1f3a;
    padding: 36px 0 32px;
    overflow: hidden;
}
.clients-marquee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}
.clients-marquee-line {
    flex: 0 0 40px;
    height: 1px;
    background: rgba(217,165,33,0.5);
}
.clients-marquee-label {
    color: #d9a521;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}
.clients-marquee-track-wrap {
    overflow: hidden;
    cursor: grab;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.clients-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: clients-scroll 45s linear infinite;
}
.clients-marquee-track:hover { animation-play-state: paused; }
@keyframes clients-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
/* client cards with real logos */
.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e8eef8;
    border-radius: 16px;
    padding: 18px 24px 14px;
    width: 160px;
    flex-shrink: 0;
    cursor: default;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.client-card:hover {
    border-color: #d9a521;
    box-shadow: 0 4px 20px rgba(217,165,33,0.25);
    transform: translateY(-3px);
}
.client-logo-wrap {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    box-sizing: border-box;
}
.client-logo-img {
    max-height: 48px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s;
}
.client-card:hover .client-logo-img {
    transform: scale(1.06);
}
.client-initials {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.client-card-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: #4a6080;
    text-align: center;
    letter-spacing: 0.2px;
    line-height: 1.35;
    transition: color 0.25s;
}
.client-card:hover .client-card-name { color: #b8860b; }
