/* Reset & Base */
:root {
  --primary-orange: #FF7600;
  --dark-navy: #03182D;
  --secondary-blue: #064494;
  --white: #FFFFFF;
  --light-bg: #F5F7FA;
  --text-color: #14213A;
  --text-muted: #4a5568;
  --border-color: #e2e8f0;
  --font-family: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
  padding-top: 94px;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

html {
  scroll-padding-top: 94px;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

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: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

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

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

.section-label {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-navy);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.mt-4 {
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.9375rem;
}

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

.btn-primary:hover {
  background-color: #e66a00;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark-navy);
}

/* Header */
.main-header {
  background-color: var(--white);
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
}

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

.logo img {
  width: 195px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a, .main-nav .services-trigger {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-navy);
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.main-nav a:hover, .main-nav a.active, .main-nav .services-trigger:hover {
  color: var(--primary-orange);
}

.has-dropdown a, .has-dropdown .services-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.has-dropdown {
  position: relative;
}

.has-dropdown i {
  font-size: 0.75rem;
}

/* Mega Menu */
.mega-dropdown .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 750px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1050;
  border: 1px solid var(--border-color);
}

.mega-dropdown .mega-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.mega-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 30px; /* Invisible hover bridge */
  background: transparent;
  z-index: 1040;
  visibility: hidden;
}

@media (min-width: 769px) {
  .mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  
  .mega-dropdown:hover::after {
    visibility: visible;
  }
}

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

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mega-column a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-color);
  text-transform: none;
  transition: all 0.2s ease;
  display: block;
  padding: 0.5rem 0.75rem;
  margin: -0.5rem -0.75rem;
  border-radius: 4px;
}

.mega-column a:hover {
  color: var(--secondary-blue);
  background-color: rgba(6, 68, 148, 0.08);
  padding-left: 1.1rem;
}


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

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #061525;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.page-preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.page-preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  width: 180px;
  height: auto;
}

.preloader-line-container {
  width: 150px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 2px;
}

.preloader-line {
  width: 100%;
  height: 100%;
  background: var(--primary-orange);
  animation: loading-line 1.5s infinite ease-in-out;
  transform-origin: left;
}

.preloader-text {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes loading-line {
  0% { transform: scaleX(0); transform-origin: left; }
  49% { transform: scaleX(1); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}



.mobile-hero {
  display: none;
}

@media (min-width: 769px) {
  .hero-video {
    display: block;
  }
  
  .hero-image,
  .mobile-hero {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-video.desktop-hero,
  .desktop-hero {
    display: none !important;
  }
  
  video.mobile-hero {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero {
    height: auto;
    background: #000;
  }
  

}

/* Certification Strip */
.certification-strip {
  padding: 1rem 0;
  background-color: #f8fbff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cert-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 32, 91, 0.1);
  box-shadow: 0 4px 20px rgba(0, 32, 91, 0.06);
}



.cert-middle p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark-navy);
  text-align: center;
  white-space: nowrap;
}

.cert-middle .highlight {
  color: var(--primary-orange);
  font-weight: 700;
}



@media (max-width: 768px) {
  .certification-strip {
    padding: 1.5rem 0;
  }

  .cert-banner {
    padding: 1.25rem 1rem;
    text-align: center;
  }
  
  .cert-middle p {
    font-size: 1.2rem;
    white-space: normal;
  }
}

/* Hero Feature Strip */
.hero-feature-strip {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 1.5rem;
  border-right: 1px solid var(--border-color);
}

.strip-item:first-child {
  padding-left: 0;
}

.strip-item:last-child {
  border-right: none;
  padding-right: 0;
}

.strip-item i {
  color: var(--primary-orange);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.strip-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.25rem;
}

.strip-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Solutions & Products */
.solutions-products {
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(3, 24, 45, 0.1);
  border-color: var(--primary-orange);
}

.card-img-placeholder {
  height: 200px;
  background-color: var(--light-bg);
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--border-color);
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 118, 0, 0.1);
  color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.card-title {
  font-size: 1.25rem;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: var(--dark-navy);
}

/* About Us */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  white-space: nowrap;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 30px;
}

.about-content p {
  text-align: justify;
  max-width: 620px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .about-content {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
    max-width: none;
    box-sizing: border-box;
  }
  .about-content h2.section-title {
    white-space: normal !important;
    font-size: 30px !important;
    text-align: left !important;
  }
  .about-content p {
    text-align: justify !important;
  }
}

.about-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: contain;
}

.about-stats {
  width: 100%;
  background: rgba(3, 24, 45, 0.95);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.5rem;
  color: var(--white);
  border-radius: 8px;
  text-align: center;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Why Choose Us */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.feature-block {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition);
}

.feature-block:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-block i {
  font-size: 2.5rem;
  color: var(--secondary-blue);
  margin-bottom: 1rem;
}

.feature-block h4 {
  font-size: 1rem;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.feature-block p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA */
.cta-strip {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 3rem 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-text i {
  font-size: 3rem;
  color: var(--primary-orange);
}

.cta-small {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cta-large {
  font-size: 2rem;
  font-weight: 700;
}

/* Footer */
.main-footer {
  background-color: var(--dark-navy);
  color: rgba(255,255,255,0.7);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  width: 140px;
  height: auto;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.brand-col p {
  margin-bottom: 1.5rem;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

.social-links a:hover {
  background-color: var(--primary-orange);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a:hover {
  color: var(--primary-orange);
}

.contact-col li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-col i {
  color: var(--primary-orange);
  margin-top: 0.25rem;
}

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

.footer-legal a {
  margin-left: 1rem;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image-wrapper {
    min-height: 400px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  
  .hero-heading {
    font-size: 2.5rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .cta-text {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-toggle {
    display: block;
  }
  
  .header-btn {
    display: none;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }

  /* Mobile Mega Menu Override */
  .mega-dropdown .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    background: transparent;
  }

  .mega-dropdown.mobile-expanded .mega-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 1rem 0 0.5rem 1rem;
    overflow-y: auto;
  }
  
  .mega-dropdown .mega-menu::before,
  .mega-dropdown::after {
    display: none;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .mega-column {
    gap: 0.75rem;
  }
  

}

/* Sticky Social Bar */
.sticky-social-bar {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1050;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.social-icon.facebook {
  background-color: #1877F2;
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.whatsapp {
  background-color: #25D366;
}

.social-icon.linkedin {
  background-color: #0077b5;
}

@media (max-width: 768px) {
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
}

/* ================================================== */
/* ABOUT US PAGE STYLES */
/* ================================================== */

/* Section 1: About Hero */
.about-hero {
  display: flex;
  background-color: var(--dark-navy);
  color: var(--white);
  min-height: 80vh;
}
.about-hero-content {
  flex: 1;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero-image-wrapper {
  flex: 1;
  position: relative;
  background-color: #021122;
}
.about-hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.hero-eyebrow {
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Section 2: Who We Are */
.who-we-are {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.who-image-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.who-content h2 {
  font-size: 2.5rem;
  color: var(--dark-navy);
  margin-bottom: 1.5rem;
}
.who-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: justify;
}
.highlight-card {
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary-orange);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 8px 8px 0;
}
.highlight-card strong {
  display: block;
  color: var(--dark-navy);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

/* Section 3: Our Experience (Stats) */
.experience-stats {
  background-color: var(--dark-navy);
  padding: 4rem 0;
  color: var(--white);
}
.stats-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
}
.stat-item h3 {
  font-size: 3.5rem;
  color: var(--primary-orange);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.stat-item p {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Section 4: What We Do (6 Cards) */
.what-we-do {
  padding: 6rem 0;
  background-color: var(--light-bg);
}
.what-we-do-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(3, 24, 45, 0.08);
  border-color: var(--primary-orange);
}
.service-card i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}
.service-card h4 {
  font-size: 1.25rem;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Section 5: Our Approach (Timeline) */
.our-approach {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.timeline-container {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  position: relative;
}
.timeline-container::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}
.timeline-step {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.timeline-step h4 {
  color: var(--dark-navy);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.timeline-step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Section 6: Why Sahara Technology */
.why-sahara {
  padding: 6rem 0;
  background-color: var(--light-bg);
}
.why-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.why-block {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.why-block i {
  color: var(--secondary-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.why-block h4 {
  color: var(--dark-navy);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.why-block p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Section 7: Vision & Mission */
.vision-mission {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.vm-card {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 4rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.vm-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, transparent, rgba(255,118,0,0.1));
  border-radius: 0 0 0 100%;
}
.vm-card h3 {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.vm-card p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

/* Section 8: Industries */
.industries {
  padding: 6rem 0;
  background-color: var(--light-bg);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.industry-item {
  background: var(--white);
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.industry-item:hover {
  border-color: var(--secondary-blue);
  box-shadow: 0 10px 20px rgba(6, 68, 148, 0.1);
}
.industry-item i {
  font-size: 2rem;
  color: var(--secondary-blue);
  margin-bottom: 1rem;
}
.industry-item h4 {
  font-size: 1rem;
  color: var(--dark-navy);
}

/* Section 9: Trust */
.trust-compliance {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.trust-content {
  max-width: 800px;
  margin: 0 auto;
}
.trust-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.trust-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
  .who-we-are-grid, .vm-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .timeline-step {
    padding: 0 0.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .about-hero {
    flex-direction: column;
  }
  .about-hero-content {
    padding: 4rem 16px;
  }
  .about-hero-image-wrapper {
    min-height: 300px;
  }
  
  .stats-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  
  .what-we-do-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-container {
    flex-direction: column;
    gap: 2rem;
  }
  .timeline-container::before {
    display: none;
  }
  .timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vm-card {
    padding: 28px 24px;
  }
  .vm-card h3 {
    margin-bottom: 18px;
  }
  .vm-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    width: 100%;
    max-width: none;
    margin-bottom: 24px;
  }
  
  .service-card, 
  .why-block, 
  .highlight-card, 
  .industry-item {
    padding: 28px 24px;
  }
  
  .service-card p, 
  .why-block p, 
  .who-content p, 
  .highlight-card {
    line-height: 1.7;
    width: 100%;
    max-width: none;
  }
}

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

/* Hero Feature Strip (Mobile 2x2 Grid) */
@media (max-width: 767px) {
  .hero-feature-strip {
    background-color: var(--light-bg);
    padding: 1.5rem 0;
    border: none;
  }
  .feature-strip-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .strip-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: auto !important;
    min-width: 0 !important;
    flex-basis: auto !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 14px 12px !important;
    gap: 8px !important;
    border-right: 1px solid #e5e7eb !important;
    border-bottom: 1px solid #e5e7eb !important;
  }
  .strip-item i {
    font-size: 22px !important;
    margin-top: 0 !important;
    margin-bottom: 4px !important;
  }
  .strip-content h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }
  .strip-content p {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    color: var(--text-muted) !important;
  }
}

/* ==================================================
   GLOBAL MOBILE TYPOGRAPHY SYSTEM (Max 414px)
   ================================================== */
@media (max-width: 414px) {
  /* H1 / Hero Headings */
  .about-hero-title, .hero-heading, .support-hero h1, h1 {
    font-size: 38px !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    white-space: normal !important;
  }
  
  /* Section Headings (Up to 767px handled below) */
  
  /* Subheadings / Card Headings */
  h3, h4, .service-card h4, .why-block h4, .industry-item h4, .timeline-step h4, .vm-card h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    white-space: normal !important;
  }
  
  /* Body Text */
  p, .about-hero-desc, .form-control, li, .vm-card p, .who-content p, .service-card p, .why-block p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    font-weight: 400;
  }
  
  /* Small Text / Labels / Buttons */
  .section-label, .hero-eyebrow, .stat-text {
    font-size: 14px !important;
  }
  .btn, .main-nav a, .services-trigger {
    font-size: 16px !important;
    font-weight: 500 !important;
  }
}

@media (max-width: 390px) {
  .about-hero-title, .hero-heading, .support-hero h1, h1 {
    font-size: 36px !important;
  }
  /* Removed redundant 390px override for section titles */
  h3, h4, .service-card h4, .why-block h4, .industry-item h4, .timeline-step h4, .vm-card h3 {
    font-size: 21px !important;
  }
}

@media (max-width: 360px) {
  .about-hero-title, .hero-heading, .support-hero h1, h1 {
    font-size: 34px !important;
  }
  .section-title, .who-content h2, .trust-content h2, .cta-large, .what-we-do-header h2, h2 {
    font-size: 24px !important;
    line-height: 1.15 !important;
    font-weight: 600 !important;
    margin-top: 24px !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.3px !important;
    text-align: center !important;
  }
  h3, h4, .service-card h4, .why-block h4, .industry-item h4, .timeline-step h4, .vm-card h3 {
    font-size: 20px !important;
  }
  .section-label, .hero-eyebrow, .stat-text {
    font-size: 12px !important;
  }
  .btn, .main-nav a, .services-trigger {
    font-size: 14px !important;
  }
}

/* Elegant Mobile Section Headings (Up to 767px) */
@media (max-width: 767px) {
  .section-title, .who-content h2, .trust-content h2, .cta-large, .what-we-do-header h2, h2 {
    font-size: 26px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.3px !important;
    text-align: center !important;
    margin-top: 24px !important;
    margin-bottom: 20px !important;
    white-space: normal !important;
  }
  .solutions-products.section {
    padding-top: 0 !important;
  }
  .solutions-products .section-title {
    margin-top: 0 !important;
  }
}

/* ==================================================
   CONTACT PAGE STYLES
   ================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card .icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-card .card-details h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.contact-card .card-details p {
  color: var(--text-color);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-card .card-details a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card .card-details a:hover {
  color: var(--dark-navy);
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 0 0 3rem 0 !important;
  }
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .contact-card .icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.25rem;
  }
  .contact-card .card-details h4 {
    font-size: 1rem;
  }

  /* Contact Hero Specifics */
  .contact-hero {
    padding: 3rem 0 0 0 !important;
  }
  .contact-hero .container, .contact-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .contact-hero .contact-hero-label {
    margin-bottom: 8px !important;
  }
  .contact-hero h1, .contact-hero .contact-hero-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: 14px !important;
  }
  .contact-hero p, .contact-hero .contact-hero-desc {
    margin: 0 auto 24px auto !important;
  }
}

/* ==================================================
   FOOTER CARDS REDESIGN
   ================================================== */
.footer-col:not(.brand-col) {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: background-color 0.3s ease;
}

.footer-col:not(.brand-col):hover {
  background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
  .footer-grid {
    gap: 1.5rem !important;
  }
  .footer-col:not(.brand-col):not(.contact-col) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
  }
  .footer-col:not(.brand-col) {
    padding: 1.5rem;
  }
}
