:root {
  /* Futuristic Light Theme Palette */
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  /* --color-primary: #0061ff; */
  /* Bright Blue */
  /* --color-secondary: #60efff; */
  /* Cyan */
  --color-accent: #ff0055;
  /* Pink/Red */
  --color-text: #1e293b;
  --color-text-muted: #64748b;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Typography */
  --font-family: Arial, Helvetica, sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.text-gradient {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-surface);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Header Styles */
.top-bar {
  /* background-color: #2c3e50; */
  background-color: #000;
  color: #ecf0f1;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 20px;
}

.contact-info i {
  margin-right: 8px;
  color: var(--color-secondary);
}

.social-icons a {
  color: #ecf0f1;
  margin-left: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--color-secondary);
}

.main-header {
  /* background-color: white; */
  background: #000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1000;
  font-family: Arial, Helvetica, sans-serif;
}

.main-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  animation: slideDown 0.5s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 5px;
  flex-direction: row;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  padding: 8px 15px;
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: rgb(212, 5, 17);
  background-color: transparent;
  border-bottom-color: rgb(212, 5, 17);
}

.btn-login {
  background-color: rgba(212, 5, 17, 1);
  color: white;
  padding: 8px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-login:hover {
  background-color: rgba(212, 5, 17, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(212, 5, 17, 0.3);
}

/* Industries Section Styles (Dark Theme) */
.inf_section {
  margin-top: 50px;
  /* margin-bottom: 50px; */
  /* background: #0a0e17; */
  /* background: #000; */
  /* Dark background */
  position: relative;
  /* overflow: hidden; */
  /* Removed to fix sticky positioning */
}

.inf_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

.inf_header {
  text-align: center;
  margin-bottom: 40px;
}

.inf_title {
  font-size: 3rem;
  font-weight: 700;
  /* background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  margin-bottom: 15px;
}

.inf_subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.inf_carousel {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
}

.inf_carousel_inner {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
  padding: 20px 0;
}

.inf_slide {
  min-width: 350px;
  background: #1e293b;
  /* Dark card background */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.inf_slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 97, 255, 0.15);
  border-color: rgba(0, 97, 255, 0.3);
}

.inf_image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.inf_slide:hover .inf_image {
  transform: scale(1.05);
}

.inf_content {
  padding: 30px;
  position: relative;
}

.inf_industry_name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  /* White text */
  margin-bottom: 15px;
}

.inf_description {
  color: #94a3b8;
  /* Light gray text */
  line-height: 1.6;
  margin-bottom: 20px;
}

.inf_features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.inf_feature {
  background: rgba(0, 97, 255, 0.15);
  color: #60efff;
  /* Cyan text */
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.inf_navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.inf_nav_btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1e293b;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.inf_nav_btn:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.inf_dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.inf_dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #334155;
  cursor: pointer;
  transition: all 0.3s ease;
}

.inf_dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.inf_background {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 97, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  top: 10%;
  right: 5%;
  z-index: 1;
}

.home_hero_buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.home_hero_btn {
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.home_hero_btn_track {
  /* background-color: #3498db; */
  /* background-color: #000; */
  background-color: #000;
  /* color: white; */
  color: #fff;
  /* border: 2px solid #3498db; */
  /* border: 2px solid #000; */
  border: 2px solid #000;
  /* box-shadow: 0 4px 15px rgba(212, 5, 17, 0.3); */
}

.home_hero_btn_track:hover {
  /* background-color: #2980b9; */
  /* background-color: rgb(212, 5, 17); */
  /* border-color: #2980b9; */
  /* border-color: rgb(212, 5, 17); */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.home_hero_btn_quote {
  background-color: transparent;
  /* color: rgb(212, 5, 17); */
  color: #000;
  /* border: 2px solid rgb(255, 204, 0); */
  border: 2px solid #000;
}

.home_hero_btn_quote:hover {
  background-color: #000;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .inf_title {
    font-size: 2.2rem;
  }

  .inf_slide {
    min-width: 300px;
  }

  .inf_image {
    height: 200px;
  }
}

/* Industries Section Styles */
.inf_section {
  height: 250vh;
  background: white;
  /* Reduced from 500vh for faster scroll */
  position: relative;
  /* background: #0a1929; */
}

.inf_sticky_wrapper {
  position: sticky;
  background: white;
  margin-bottom: 50px;
  top: 100px;
  height: calc(100vh - 90px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* margin-top: 50px; */
  /* margin-bottom: 50px; */
}

.inf_pinned_box {
  width: 100%;
  max-width: 95%;
  height: auto;
  margin-top: 100px;
  margin-bottom: 100px;
  /* Let content dictate height */
  max-height: 120vh;
  /* Prevent it from being too tall */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inf_animation_box {
  /* background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); */
  /* background: #000; */
  /* background: #f2f2f2d9; */
  background: #000;
  /* background: linear-gradient(73.47deg, rgba(255, 204, 0, 1) 38.53%, rgba(212, 5, 17, 1) 87.92%); */
  border-radius: 50px;
  width: 100%;
  height: auto;
  /* Fit content */
  min-height: 60vh;
  /* Ensure it has some presence */
  padding: 20px 20px 80px 20px;
  /* Extra bottom padding for logo */
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); */
  /* box-shadow: 0 25px 50px rgba(255, 204, 0, 0.9); */
  border: 1px solid rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
}

.inf_header {
  text-align: center;
  margin-bottom: 40px;
  z-index: 2;
}

.inf_title {
  font-size: 2.5rem;
  font-weight: 700;
  /* color: white; */
  color: #fff;
  margin-bottom: 10px;
}

.inf_subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
}

.inf_track_container {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: flex-start;
  /* Align start to avoid cutting off first card */
  overflow: hidden;
  /* Hide overflow */
  padding: 20px 0;
}

.inf_track {
  display: flex;
  flex-direction: row;
  /* Horizontal layout */
  gap: 30px;
  will-change: transform;
  padding-right: 20px;
  /* Right padding */
  align-items: center;
  width: max-content;
  /* Ensure it takes full width of children */
  flex-shrink: 0;
}

.inf_card {
  min-width: 650px;
  /* Wider for horizontal layout */
  width: 650px;
  background: white;
  border-radius: 24px;
  border: 3px solid rgb(212, 5, 17);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  display: flex;
  height: 350px;
  /* Fixed height for consistency */
}

.empower_content_wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.empower_card_content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.empower_card_content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.empower_card_content p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.empower_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgb(212, 5, 17);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: gap 0.3s ease;
}

.empower_link:hover {
  gap: 15px;
}

.empower_image_container {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

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

.inf_card:hover .empower_image {
  transform: scale(1.05);
}

.inf_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Removed old styles */
.inf_logo_box {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.8;
}

/* Hero Map Animation Styles */
.home_hero_visual {
  position: relative;
  height: 450px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.home_hero_map {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e6f7ff 0%, #b3e0ff 100%);
  position: relative;
}

.home_hero_route {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: var(--color-primary);
  transform-origin: left center;
  animation: drawRoute 2s ease-in-out forwards;
}

.home_hero_route::before {
  content: '';
  position: absolute;
  top: -4px;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.home_hero_cities {
  position: absolute;
  width: 100%;
  height: 100%;
}

.home_hero_city {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 97, 255, 0.3);
}

.home_hero_city:nth-child(1) {
  top: 30%;
  left: 20%;
}

.home_hero_city:nth-child(2) {
  top: 60%;
  left: 50%;
}

.home_hero_city:nth-child(3) {
  top: 40%;
  left: 80%;
}

.home_hero_truck {
  position: absolute;
  top: 48%;
  left: 20%;
  width: 40px;
  height: 20px;
  background-color: var(--color-accent);
  border-radius: 4px;
  animation: moveTruck 4s linear infinite;
}

.home_hero_truck::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 5px;
  width: 30px;
  height: 10px;
  background-color: var(--color-accent);
  border-radius: 3px 3px 0 0;
}

.home_hero_truck::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 5px;
  width: 10px;
  height: 8px;
  background-color: #2c3e50;
  border-radius: 50%;
}

@keyframes drawRoute {
  from {
    width: 0;
  }

  to {
    width: 60%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes moveTruck {
  0% {
    left: 20%;
  }

  100% {
    left: 80%;
  }
}

/* Responsive */
/* Trust Section Styles - Dark Theme */
.ab_sec {
  padding: 60px 20px;
  /* background: #0a1929; */
  /* background: rgb(10, 14, 23); */
  background: #000;
}

.ab_section {
  /* background: linear-gradient(145deg, rgb(255, 204, 0), #464646); */
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 24px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 1200px;
}

.ab_container {
  position: relative;
  z-index: 2;
}

.ab_content {
  text-align: center;
  margin-bottom: 50px;
}

.ab_badge {
  display: inline-block;
  /* background: rgba(2, 136, 209, 0.1); */
  background: rgba(212, 5, 17, 0.1);
  /* color: #4fc3f7; */
  color: #ff0055;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
  border: 1px solid rgba(212, 5, 17, 0.3);
}

.ab_title {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4fc3f7, #0288d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  line-height: 1.1;
}

.ab_description {
  font-size: 1.3rem;
  color: #b3e5fc;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.ab_cta {
  text-align: center;
}

.ab_read_more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0288d1, #01579b);
  color: white;
  text-decoration: none;
  padding: 18px 45px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.ab_read_more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.ab_read_more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(2, 136, 209, 0.4);
}

.ab_read_more:hover::before {
  left: 100%;
}

.ab_icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.ab_read_more:hover .ab_icon {
  transform: translateX(4px);
}

/* Background Elements for Trust Section */
.ab_background_circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 136, 209, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  z-index: 1;
}

.ab_background_circle_2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  z-index: 1;
}

.ab_grid_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(2, 136, 209, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 136, 209, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

/* Footer Styles - Dark Theme */
.ft_section {
  background: white;
  /* padding: 80px 60px 40px; */
  padding-top: 40px;
  position: relative;
  overflow: hidden;
  /* border: 1px solid rgba(2, 136, 209, 0.1); */
  /* border: 1px solid #666; */
  /* box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3); */
  width: 100%;
}

.ft_container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ft_main {
  display: grid;
  padding-left: 60px;
  padding-right: 60px;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  /* margin-bottom: 60px; */
}

.ft_company_info {
  max-width: 300px;
}

.ft_logo {
  font-size: 2rem;
  font-weight: 700;
  background: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: block;
}

.ft_description {
  /* color: #666; */
  color: #000;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.ft_social {
  display: flex;
  gap: 15px;
}

.ft_social_link {
  width: 44px;
  height: 44px;
  background: #1e293b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #666;
}

.ft_social_link:hover {
  background: rgb(212, 5, 17);
  transform: translateY(-3px);
  color: white;
  border-color: rgb(212, 5, 17);
}

.ft_column_title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
  position: relative;
}

.ft_column_title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, rgb(212, 5, 17), transparent);
  border-radius: 1px;
}

.ft_links {
  list-style: none;
  padding: 0;
}

.ft_link_item {
  margin-bottom: 12px;
}

.ft_link {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.ft_link:hover {
  color: rgb(212, 5, 17);
  opacity: 1;
  transform: translateX(5px);
  font-weight: 600;
}

.ft_link_icon {
  font-size: 0.8rem;
  font-weight: bolder;
  color: rgb(212, 5, 17);
  transition: transform 0.3s ease;
}

.ft_link:hover .ft_link_icon {
  transform: translateX(3px);
}

.ft_contact_info {
  list-style: none;
  padding: 0;
}

.ft_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  /* background: #666; */
  background: rgb(0, 0, 0);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.ft_contact_item:hover {
  transform: translateY(-2px);
}

.ft_contact_icon {
  width: 44px;
  height: 44px;
  background: #df0000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ft_contact_text {
  flex: 1;
}

.ft_contact_label {
  font-size: 0.9rem;
  /* color: rgb(212, 5, 17); */
  color: #df0000;
  margin-bottom: 4px;
  font-weight: bold;
}

.ft_contact_value {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
}

.ft_bottom {
  background: url('./assets/footer-bg3.png');
  background-size: 30% 100%;
  background-position: center;
  background-repeat: repeat;
  height: auto;
  /* border-top: 1px solid rgba(2, 136, 209, 0.2); */
  padding-top: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 10px;
  /* gap: 20px; */
}

.ft_copyright {
  color: #000;
  padding-left: 60px;
  padding-right: 60px;
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.7;
}

.ft_legal {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  padding-right: 60px;
}

/* .ft_legal_link {
  height: 1vh;
  width: 1vh;
} */

/* .ft_legal_link:hover {
  color: #4fc3f7;
  opacity: 1;
} */

/* Background Elements for Footer */
.ft_background_circle {
  position: absolute;
  width: 500px;
  height: 500px;
  /* background: radial-gradient(circle, rgba(2, 136, 209, 0.05) 0%, transparent 70%); */
  border-radius: 50%;
  top: -250px;
  left: -100px;
  z-index: 1;
}

.ft_grid_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(2, 136, 209, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 136, 209, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

/* Responsive Styles for Trust Section and Footer */
@media (max-width: 768px) {
  .ab_section {
    padding: 60px 30px;
  }

  .ab_title {
    font-size: 2.5rem;
  }

  .ab_description {
    font-size: 1.1rem;
  }

  .ft_section {
    padding: 60px 30px;
  }

  .ft_main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ft_company_info {
    max-width: 100%;
    text-align: center;
  }

  .ft_logo {
    display: inline-block;
  }

  .ft_social {
    justify-content: center;
  }

  .ft_bottom {
    flex-direction: column;
    text-align: center;
    background-size: cover;
    padding-top: 100px;
  }

  .ft_legal {
    justify-content: center;
    padding-right: 0;
    margin-top: 20px;
  }

  .ft_legal img {
    max-width: 100px !important;
  }
}

@media (max-width: 480px) {
  .ab_section {
    padding: 40px 20px;
  }

  .ab_title {
    font-size: 2rem;
  }

  .ab_description {
    font-size: 1rem;
  }

  .ab_read_more {
    padding: 16px 35px;
    font-size: 1rem;
  }
}

/* Truck Animation */
.truck-animation {
  position: absolute;
  bottom: -15px;
  /* Adjust to sit on the line */
  left: 0;
  animation: moveTruck 4s linear infinite;
  z-index: 10;
  pointer-events: none;
}

@keyframes moveTruck {
  0% {
    left: -10%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  /* Optional: adds a nice blur effect */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader-icon {
  width: 80px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* Stats Section Redesign */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Force 5 columns in one line */
  gap: 20px;
  padding-top: 40px;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Stack on smaller screens */
  }
}

.stats-card {
  background: #1e293b;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Slower transition for better visibility */
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  /* Larger movement */
}

.stats-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--animation-delay, 0s);
}

.stats-card:hover {
  transition-delay: 0s !important;
}

.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 97, 255, 0.15);
  border-color: rgba(0, 97, 255, 0.2);
}

.stats-icon-box {
  width: 60px;
  height: 60px;
  background: rgb(223, 223, 223);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.stats-value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.stats-label {
  font-size: 1rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.stats-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.stats-card:hover .stats-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------
   Added for plain-HTML version
   (moved from React inline styles)
--------------------------------*/
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 1);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-copy {
  flex: 1;
  max-width: 650px;
  color: #000;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

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

.hero-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 1.1rem;
  color: #000;
  margin-top: 12px;
}

.hero-dot {
  color: rgb(212, 5, 17);
  font-size: 0.6rem;
}

.tracking-card {
  background: #fff;
  border-radius: 20px;
  width: 450px;
  max-width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.tracking-tabs {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
}

.tracking-tab {
  flex: 1;
  text-align: center;
  padding: 16px;
  font-size: 1rem;
  color: #0f172a;
  user-select: none;
}

.tracking-tab.active {
  border-bottom: 2px solid var(--color-accent);
  font-weight: 700;
}

.tracking-content {
  padding: 32px;
}

.tracking-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #0f172a;
  font-weight: 700;
}

.tracking-subtabs {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.tracking-subtab {
  flex: 1;
  padding: 10px;
  border: 0;
  border-right: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.tracking-subtab:last-child {
  border-right: 0;
}

.tracking-subtab.active {
  background: #0a0e17;
  color: #fff;
  border-color: #0a0e17;
}

.tracking-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 20px;
  outline: none;
}

.tracking-btn {
  width: 100%;
  padding: 14px;
  background: #0a0e17;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.services-section {
  padding: 100px 0;
  background: #0a0e17;
  color: #fff;
  border-radius: 20px;
}

.services-header {
  margin-bottom: 60px;
}

.services-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 400;
  color: #fff;
}

.services-underline {
  width: 60px;
  height: 4px;
  background: var(--color-accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
}

.service-card {
  padding: 0;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 24px;
  display: block;
  padding: 10px;
  width: 25%;
  background: rgb(223, 223, 223);
  border-radius: 20px;
}

.service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 600;
  color: #fff;
}

.service-desc {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.6;
}

.service-link {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }

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

  .tracking-content {
    padding: 22px;
  }
}

/* Stats header styles (from React inline styles) */
.stats-section {
  padding: 100px 0;
  border-radius: 20px;
  background: #fff;
}

.stats-header {
  margin-bottom: 80px;
}

.stats-heading {
  font-size: 2.5rem;
  font-weight: 400;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.stats-heading-strong {
  font-weight: 700;
  color: #0f172a;
}

.stats-underline {
  width: 80px;
  height: 4px;
  background: var(--color-accent);
}



/* Container */
.abt_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}



.abt_hero_bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 5, 17, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 204, 0, 0.08) 0%, transparent 50%);
  z-index: -2;
}

.abt_hero_grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.abt_hero_badge {
  display: inline-block;
  background: linear-gradient(45deg, #FFCC00, #D40511);
  color: #000;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  animation: badgeGlow 3s infinite;
}

@keyframes badgeGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(212, 5, 17, 0.4);
  }
}

.abt_hero_title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #fff 30%, #FFCC00 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.abt_hero_title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #FFCC00, #D40511);
  border-radius: 5px;
}

.abt_hero_desc {
  font-size: 1.3rem;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-right: 40px;
}

.abt_hero_visual {
  position: relative;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.abt_hero_globe {
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #1a1a1a, #2a2a2a); */
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  animation: rotateGlobe 20s linear infinite;
}

@keyframes rotateGlobe {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.abt_globe_ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 2px solid rgba(255, 204, 0, 0.3);
  border-radius: 50%;
  animation: pulseRing 4s ease-in-out infinite;
}

@keyframes pulseRing {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
}

/* Stats Section - Glass Morphism */
.abt_stats {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin: 60px 40px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.abt_stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.abt_stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.abt_stat_card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.abt_stat_card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 204, 0, 0.3);
  box-shadow: 0 20px 40px rgba(212, 5, 17, 0.15);
}

.abt_stat_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFCC00, #D40511);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2rem;
  color: #000;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.abt_stat_card:hover .abt_stat_icon {
  transform: rotate(0deg) scale(1.1);
}

.abt_stat_number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #FFCC00, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  line-height: 1;
}

.abt_stat_label {
  font-size: 1.1rem;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

/* Mission Section - Interactive Split */
.abt_mission {
  padding: 150px 0;
  position: relative;
}

.abt_mission_split {
  display: flex;
  gap: 80px;
  align-items: stretch;
}

.abt_mission_left {
  flex: 1;
  position: relative;
}

.abt_mission_card {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(212, 5, 17, 0.1));
  border-radius: 35px;
  padding: 60px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.abt_mission_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FFCC00, #D40511);
}

.abt_mission_title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.2;
}

.abt_mission_title span {
  color: #FFCC00;
  position: relative;
}

.abt_mission_title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FFCC00, #D40511);
}

.abt_mission_desc {
  font-size: 1.2rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 40px;
}

.abt_mission_right {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
}

.abt_pillar {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.abt_pillar:hover {
  background: rgba(255, 204, 0, 0.05);
  border-color: rgba(255, 204, 0, 0.2);
  transform: translateX(10px);
}

.abt_pillar_number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(45deg, #FFCC00, #D40511);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.abt_pillar_content {
  flex: 1;
}

.abt_pillar_title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.abt_pillar_desc {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Values Section - Animated Cards */
.abt_values {
  padding: 150px 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M0,50 Q25,25 50,50 T100,50" stroke="white" fill="none"/></svg>') center/300px;
}

.abt_section_header {
  text-align: center;
  margin-bottom: 80px;
}

.abt_section_title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

/* .abt_section_title::before {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #FFCC00, #D40511);
            border-radius: 2px;
        } */

.abt_section_subtitle {
  font-size: 1.3rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.abt_values_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.abt_value_card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 30px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.abt_value_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.1), transparent);
  transition: left 0.7s ease;
}

.abt_value_card:hover::before {
  left: 100%;
}

.abt_value_card:hover {
  transform: translateY(-20px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(212, 5, 17, 0.2);
  border-color: rgba(255, 204, 0, 0.3);
}

.abt_value_icon_wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #FFCC00, #D40511);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}

.abt_value_card:hover .abt_value_icon_wrapper {
  transform: rotate(0deg) scale(1.1);
}

.abt_value_icon {
  font-size: 2.5rem;
  color: #000;
  transform: rotate(-45deg);
  transition: transform 0.5s ease;
}

.abt_value_card:hover .abt_value_icon {
  transform: rotate(0deg);
}

.abt_value_title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.abt_value_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FFCC00, #D40511);
}

.abt_value_desc {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* Leadership Section - Modern Cards */
.abt_leadership {
  padding: 150px 0;
  background: rgba(255, 255, 255, 0.02);
}

.abt_leadership_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.abt_leader_card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.abt_leader_card:hover {
  transform: translateY(-20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.abt_leader_image {
  height: 350px;
  position: relative;
  overflow: hidden;
}

.abt_leader_image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.abt_leader_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 204, 0, 0.2), rgba(212, 5, 17, 0.2));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.abt_leader_card:hover .abt_leader_overlay {
  opacity: 1;
}

.abt_leader_info {
  padding: 40px 30px;
  position: relative;
  z-index: 3;
}

.abt_leader_name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.abt_leader_role {
  font-size: 1rem;
  color: #FFCC00;
  margin-bottom: 20px;
  font-weight: 600;
}

.abt_leader_bio {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

.abt_leader_social {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.abt_leader_card:hover .abt_leader_social {
  opacity: 1;
  transform: translateY(0);
}

.abt_social_icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.abt_social_icon:hover {
  background: linear-gradient(45deg, #FFCC00, #D40511);
  transform: translateY(-3px);
}

/* CTA Section - 3D Effect */
.abt_cta {
  padding: 150px 0;
  position: relative;
}

.abt_cta_container {
  max-width: 1000px;
  margin: 0 auto;
}

.abt_cta_box {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(212, 5, 17, 0.1));
  border-radius: 50px;
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 204, 0, 0.2);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.abt_cta_box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #FFCC00, #D40511, #FFCC00);
  border-radius: 52px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.3;
  animation: ctaGlow 3s infinite alternate;
}

@keyframes ctaGlow {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.6;
  }
}

.abt_cta_title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
  background: linear-gradient(45deg, #fff, #FFCC00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt_cta_desc {
  font-size: 1.3rem;
  color: #94a3b8;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.abt_cta_buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.abt_btn {
  padding: 20px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.abt_btn_primary {
  background: linear-gradient(45deg, #FFCC00, #D40511);
  color: #000;
}

.abt_btn_secondary {
  background: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.abt_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.abt_btn:hover::before {
  left: 100%;
}

.abt_btn_primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(212, 5, 17, 0.3);
}

.abt_btn_secondary:hover {
  background: #FFCC00;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
  .abt_hero_grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .abt_hero_desc {
    padding-right: 0;
  }

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

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

@media (max-width: 768px) {
  .abt_container {
    padding: 0 20px;
  }

  .abt_hero_title {
    font-size: 3rem;
  }

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

  .abt_mission_split {
    flex-direction: column;
  }

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

  .abt_cta_box {
    padding: 60px 30px;
  }

  .abt_cta_title {
    font-size: 2.5rem;
  }

  .abt_cta_buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .abt_hero_title {
    font-size: 2.5rem;
  }

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

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

  .abt_section_title {
    font-size: 2.5rem;
  }
}

/* Section Spacing */
.abt_section {
  padding: 100px 0;
}

/* Hero Section */
.abt_hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?q=80&w=2070&auto=format&fit=crop') center/cover;
}

.abt_hero_content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.abt_hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(212, 5, 17);
  color: white;
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.abt_hero_title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.abt_hero_title span {
  color: rgb(212, 5, 17);
}

.abt_hero_desc {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 600px;
}


.abt_stat_item {
  text-align: center;
  padding: 30px 20px;
}

.abt_stat_number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(212, 5, 17);
  margin-bottom: 10px;
  display: block;
}


/* Mission Vision */
.abt_mission_vision {
  background: #1e293b;
  border-radius: 30px;
  overflow: hidden;
  margin: 40px 20px;
}

.abt_mission_vision_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.abt_mission {
  padding: 60px;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), transparent);
  position: relative;
}

.abt_vision {
  padding: 60px;
  background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop') center/cover;
  position: relative;
}

.abt_vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
}

.abt_section_title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.abt_section_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: rgb(212, 5, 17);
}

.abt_section_desc {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Hero Section Styles */
.con_hero_section {
  min-height: 95vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.26) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(10px);
  text-align: center;
}

.con_hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background-image: url('assets/contactHero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: con_hero_pan 30s ease-in-out infinite alternate;
}

.con_hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.4) 70%);
  z-index: -2;
}

.con_hero_content {
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

.con_hero_glass_card {
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3.5rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 40px rgba(255, 255, 255, 0.05);
  /* max-width: 750px; */
  animation: con_hero_card_float 6s ease-in-out infinite alternate;
}

.con_hero_company {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: con_hero_fadeIn 1s ease-out 0.2s both;
}

.con_hero_title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: con_hero_title_appear 1.2s ease-out 0.4s both;
}

.con_hero_title_highlight {
  position: relative;
  display: inline-block;
  color: white;
}

.con_hero_title_highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  z-index: -1;
  animation: con_hero_underline 1s ease-out 1.6s both;
}

.con_hero_subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  animation: con_hero_fadeInUp 1s ease-out 0.8s both;
}

.con_hero_cta_container {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: con_hero_fadeInUp 1s ease-out 1s both;
}

.con_hero_cta_primary {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border: none;
  padding: 1.2rem 3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.con_hero_cta_primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s ease;
}

.con_hero_cta_primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  background: white;
}

.con_hero_cta_primary:hover::before {
  left: 100%;
}

.con_hero_cta_secondary {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 1.2rem 3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.con_hero_cta_secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.con_hero_features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: con_hero_fadeInUp 1s ease-out 1.2s both;
  justify-content: center;
}

.con_hero_feature {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.con_hero_feature:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
}

.con_hero_feature_icon {
  color: white;
  margin-right: 0.8rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.con_hero_feature_text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}

.con_hero_scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.con_hero_scroll_btn {
  width: 50px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: con_hero_scroll_pulse 3s ease-in-out infinite;
}

.con_hero_scroll_btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.con_hero_scroll_dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: con_hero_scroll_bounce 2s infinite;
}

.con_hero_float_elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.con_hero_float_element {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

/* Animations */
@keyframes con_hero_pan {
  0% {
    transform: scale(1) translateX(0) translateY(0);
  }

  100% {
    transform: scale(1.1) translateX(-20px) translateY(10px);
  }
}

@keyframes con_hero_card_float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

@keyframes con_hero_title_appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes con_hero_fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes con_hero_fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes con_hero_underline {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes con_hero_scroll_pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@keyframes con_hero_scroll_bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .con_hero_title {
    font-size: 3.5rem;
  }

  .con_hero_glass_card {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .con_hero_section {
    min-height: 90vh;
  }

  .con_hero_title {
    font-size: 2.8rem;
  }

  .con_hero_subtitle {
    font-size: 1.2rem;
  }

  .con_hero_glass_card {
    padding: 2.5rem 2rem;
    margin: 0 1rem;
  }

  .con_hero_cta_container {
    flex-direction: column;
  }

  .con_hero_cta_primary,
  .con_hero_cta_secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .con_hero_title {
    font-size: 2.3rem;
  }

  .con_hero_subtitle {
    font-size: 1.1rem;
  }

  .con_hero_company {
    font-size: 0.9rem;
  }

  .con_hero_glass_card {
    padding: 2rem 1.5rem;
  }

  .con_hero_features {
    justify-content: center;
  }
}

.cont_page_section {
  padding: 100px 0;
  background: #f4f4f4;
}

.cont_card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
  background-color: white;
}

.cont_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.15);
}

.cont_card_header {
  background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px 12px 0 0 !important;
  border: none;
}

.cont_card_title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.cont_contact_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0e0e0;
}

.cont_contact_item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cont_contact_icon {
  background-color: rgba(220, 53, 69, 0.1);
  color: #c9141d;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.cont_contact_text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: black;
}

.cont_contact_text p {
  margin-bottom: 0;
  color: #666;
}

.cont_hours {
  list-style-type: none;
  padding-left: 0;
  width: 100%;
}

.cont_hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0e0e0;
}

.cont_hours li:last-child {
  border-bottom: none;
}

.cont_hours_day {
  font-weight: 600;
  color: black;
}

.cont_hours_time {
  color: #666;
}

.cont_info_box {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.1);
  height: 100%;
  border-top: 4px solid #dc3545;
}

.cont_icon {
  font-size: 2rem;
  color: #dc3545;
  margin-bottom: 1rem;
  display: inline-block;
  background: rgba(220, 53, 69, 0.1);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
}

.cont_form_label {
  font-weight: 600;
  color: #b02a37;
  margin-bottom: 0.5rem;
}

.cont_form_control {
  border-radius: 8px;
  border: 1px solid #e0c8c8;
  padding: 0.75rem 1rem;
  transition: all 0.3s;
}

.cont_form_control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.cont_btn {
  background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
}

.cont_btn:hover {
  background: linear-gradient(135deg, #c82333 0%, #9c2431 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.cont_success {
  display: none;
  background-color: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border: 1px solid #f5c6cb;
}

.cont_error {
  display: none;
  background-color: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border: 1px solid #f5c2c7;
}

.text-primary {
  color: #dc3545 !important;
}

@media (max-width: 768px) {
  .cont_page {
    padding: 1rem 0;
  }
}


/* Service Hero Section Styles */
.service_hero_section {
  min-height: 95vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0a192f;
  isolation: isolate;
}

.service_hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(212, 5, 17, 0.26), rgba(212, 5, 17, 0.22)), url('https://www.aajswift.com/_next/image?url=https%3A%2F%2Fwww.aajswift.com%2Fcmsapi%2Fuploads%2FLogistics_Aggregator_038f6110fb.jpg&w=3840&q=75');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: contrast(1.2) brightness(0.8);
}

.service_hero_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(100, 255, 218, 0.08) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(100, 255, 218, 0.03) 2px, rgba(100, 255, 218, 0.03) 4px);
  z-index: 2;
  animation: service_hero_pattern_shift 20s linear infinite;
}

.service_hero_orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 3;
  animation: service_hero_orb_float 8s ease-in-out infinite alternate;
}

.service_hero_orb:nth-child(2) {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(23, 42, 58, 0.3) 0%, transparent 70%);
  animation-delay: -4s;
  top: 70%;
  left: 20%;
}

.service_hero_content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
  text-align: center;
}

.service_hero_preheading {
  display: inline-block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(212, 5, 17, 0.12);
  border: 1px solid rgb(212, 5, 17);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  animation: service_hero_fadeIn 1s ease-out 0.2s both;
}

.service_hero_heading {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2rem;
  position: relative;
}

.service_hero_heading_main {
  display: block;
  color: #e6f1ff;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: service_hero_slideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.service_hero_heading_highlight {
  display: block;
  background: linear-gradient(90deg, #ff0413, #fff, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: service_hero_gradient_shift 3s linear infinite, service_hero_slideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.service_hero_subline {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  position: relative;
  animation: service_hero_fadeIn 1.5s ease-out 0.8s both;
}

.service_hero_subline::before,
.service_hero_subline::after {
  content: '✧';
  color: #64ffda;
  font-size: 1.2rem;
  opacity: 0.6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.service_hero_subline::before {
  left: 0;
}

.service_hero_subline::after {
  right: 0;
}

.service_hero_scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(100, 255, 218, 0.03) 50%, transparent);
  background-size: 100% 4px;
  z-index: 4;
  pointer-events: none;
  animation: service_hero_scan 10s linear infinite;
}

.service_hero_glow {
  position: absolute;
  width: 100%;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 2;
  animation: service_hero_glow_pulse 4s ease-in-out infinite alternate;
}

/* Animations */
@keyframes service_hero_pattern_shift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100px 100px;
  }
}

@keyframes service_hero_orb_float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, -20px) scale(1.1);
  }
}

@keyframes service_hero_fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes service_hero_slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

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

@keyframes service_hero_gradient_shift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes service_hero_scan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes service_hero_glow_pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .service_hero_heading {
    font-size: 4.5rem;
  }
}

@media (max-width: 992px) {
  .service_hero_heading {
    font-size: 3.8rem;
  }

  .service_hero_subline {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .service_hero_section {
    min-height: 85vh;
  }

  .service_hero_heading {
    font-size: 3rem;
  }

  .service_hero_subline {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .service_hero_subline::before,
  .service_hero_subline::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .service_hero_heading {
    font-size: 2.5rem;
  }

  .service_hero_subline {
    font-size: 1.1rem;
  }

  .service_hero_preheading {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
}

.s_section_main {
  /* background: #ffffff; */
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.s_section_service {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 0;
}

.s_section_service:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Image Container Styles */
.s_section_image_container {
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.1),
    0 10px 30px rgba(0, 122, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.s_section_image_container:hover {
  transform: translateY(-10px);
  box-shadow:
    0 35px 60px rgba(0, 0, 0, 0.15),
    0 15px 40px rgba(0, 122, 255, 0.2);
}

.s_section_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.s_section_image_container:hover .s_section_img {
  transform: scale(1.08);
}

/* Image Overlays */
.s_section_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      rgba(0, 122, 255, 0.1) 0%,
      transparent 60%);
  pointer-events: none;
}

/* Service Badge */
.s_section_service_badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(0, 122, 255, 0.95);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

/* Content Styles */
.s_section_content {
  padding: 0 3rem;
}

.s_section_service_icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: #007AFF;
  display: inline-block;
  filter: drop-shadow(0 5px 15px rgba(0, 122, 255, 0.2));
  animation: s_section_icon_float 3s ease-in-out infinite alternate;
}

.s_section_service_number {
  font-size: 0.9rem;
  font-weight: 600;
  color: #007AFF;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.s_section_service_title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1D1D1F;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.s_section_service_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007AFF, #34C759);
  border-radius: 2px;
  animation: s_section_line_expand 1s ease-out 0.5s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

.s_section_service_desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #515154;
  margin-bottom: 2.5rem;
}

.s_section_service_features {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.s_section_service_feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #1D1D1F;
  font-size: 1rem;
}

.s_section_feature_icon {
  color: #007AFF;
  margin-right: 1rem;
  font-size: 0.9rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 50%;
}

.s_section_cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #007AFF, #34C759);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 122, 255, 0.25);
}

.s_section_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.s_section_cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 122, 255, 0.35);
}

.s_section_cta:hover::before {
  left: 100%;
}

/* Background Elements */
.s_section_bg_circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.s_section_circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.05) 0%, transparent 70%);
  filter: blur(20px);
}

/* Animations */
@keyframes s_section_icon_float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes s_section_line_expand {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .s_section_service_title {
    font-size: 3rem;
  }

  .s_section_image_container {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .s_section_service {
    min-height: auto;
    padding: 3rem 0;
  }

  .s_section_image_container {
    height: 400px;
    margin-bottom: 3rem;
  }

  .s_section_service_title {
    font-size: 2.5rem;
  }

  .s_section_content {
    padding: 0 1rem;
  }
}

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

  .s_section_service_desc {
    font-size: 1rem;
  }

  .s_section_service_icon {
    font-size: 2.8rem;
  }

  .s_section_image_container {
    height: 350px;
  }

  .s_section_main {
    padding: 4rem 0;
  }
}

@media (max-width: 576px) {
  .s_section_service_title {
    font-size: 2rem;
  }

  .s_section_image_container {
    height: 300px;
  }

  .s_section_service_badge {
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* Why Choose Us Section */
.swcu_section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.swcu_bg_elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.swcu_bg_circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  animation: swcu_float 15s ease-in-out infinite alternate;
}

.swcu_header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swcu_subtitle {
  display: inline-block;
  background: linear-gradient(135deg, #FF0412, #C40712);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 122, 255, 0.2);
  animation: swcu_badge_pulse 3s ease-in-out infinite;
}

.swcu_title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.swcu_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #ff041198, #c4071196);
  border-radius: 2px;
}

.swcu_description {
  font-size: 1.2rem;
  color: #515154;
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.6;
}

/* Trust Points Grid */
.swcu_points_container {
  position: relative;
  z-index: 2;
}

.swcu_points_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.swcu_point_card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.swcu_point_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.swcu_point_card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 122, 255, 0.1);
}

.swcu_point_card:hover::before {
  opacity: 0.05;
}

.swcu_point_content {
  position: relative;
  z-index: 2;
}

.swcu_point_header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.swcu_point_icon_wrapper {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.swcu_point_card:hover .swcu_point_icon_wrapper {
  transform: scale(1.1) rotate(5deg);
}

.swcu_point_icon {
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.swcu_point_icon_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  opacity: 0.15;
  transition: opacity 0.4s ease;
}

.swcu_point_card:hover .swcu_point_icon_bg {
  opacity: 0.25;
}

.swcu_point_number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gradient-start);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.swcu_point_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1D1D1F;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.8rem;
}

.swcu_point_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.swcu_point_card:hover .swcu_point_title::after {
  width: 80px;
}

.swcu_point_description {
  font-size: 1rem;
  color: #515154;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.swcu_point_stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
}

.swcu_stat {
  text-align: center;
  padding: 0.8rem 1.2rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.swcu_point_card:hover .swcu_stat {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.swcu_stat_number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gradient-start);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.swcu_stat_label {
  font-size: 0.85rem;
  color: #515154;
  font-weight: 500;
}

/* Color Variations for Each Point */
.swcu_point_1 {
  --gradient-start: #007AFF;
  --gradient-end: #0056CC;
}

.swcu_point_2 {
  --gradient-start: #34C759;
  --gradient-end: #2CAE52;
}

.swcu_point_3 {
  --gradient-start: #5856D6;
  --gradient-end: #4746B3;
}

.swcu_point_4 {
  --gradient-start: #FF9500;
  --gradient-end: #E68500;
}

.swcu_point_5 {
  --gradient-start: #FF2D55;
  --gradient-end: #E6244D;
}

/* Decorative Elements */
.swcu_point_card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  opacity: 0.03;
  border-radius: 50%;
  transition: all 0.8s ease;
  transform: scale(0.5);
}

.swcu_point_card:hover::after {
  transform: scale(1.2);
  opacity: 0.08;
}

/* Animations */
@keyframes swcu_float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

@keyframes swcu_badge_pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.2);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.3);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .swcu_title {
    font-size: 3rem;
  }

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

@media (max-width: 992px) {
  .swcu_section {
    padding: 6rem 0;
  }

  .swcu_header {
    margin-bottom: 4rem;
  }

  .swcu_title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .swcu_points_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .swcu_title {
    font-size: 2.2rem;
  }

  .swcu_description {
    font-size: 1.1rem;
  }

  .swcu_point_card {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .swcu_section {
    padding: 4rem 0;
  }

  .swcu_title {
    font-size: 2rem;
  }

  .swcu_point_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .swcu_point_stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .swcu_stat {
    width: 100%;
  }
}

.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 200px;
    z-index: 999;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
}

.dropdown-item:hover {
    background: #f2f2f2;
}

.service_icon_box{
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.6s ease; /* animation setup */
}

.service-card:hover .service_icon_box{
  transform: rotate(360deg); /* actual rotation */
}
