/* ==================================================
ROOT VARIABLES
================================================== */

:root {
  --primary-red: #0b3d91;
  --primary-navy: #0b3d91;
  --navy-dark: #06275c;
  --accent-orange: #f5a623;
  --secondary-yellow: #ffc400;
  --dark: #071428;
  --white: #ffffff;
  --light: #f4f7fc;
  --gray: #5a6478;
}

/* ==================================================
GENERAL
================================================== */

html {
  max-width: 100%;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  width: 100%;
  max-width: 100%;
  color: #1a2433;
  background: #fff;
}

h1, h2, h3, h4, h5, .section-title, .slider-heading {
  font-family: "Oswald", "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 100px 0;
}

/* ==================================================
TOP HEADER
================================================== */

.top-header {
  background: linear-gradient(135deg, #06275c, #0b3d91, #0a2463);
  color: var(--white);

  padding: 7px 0;

  font-size: 13px;

  position: relative;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.top-header a {
  color: var(--white);
}

.top-header-container {
  max-width: 100%;
}

.top-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
}

.top-header-marquee {
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.top-marquee-track {
  display: flex;
  width: max-content;
  animation: topMarqueeScroll 35s linear infinite;
}

.top-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding-right: 80px;
  font-weight: 600;
  font-size: 13px;
}

.top-marquee-track i {
  color: var(--secondary-yellow);
  flex-shrink: 0;
}

@keyframes topMarqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.top-header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 10px;
  white-space: nowrap;
}

.top-social-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.top-social-icons a {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  color: var(--white);

  font-size: 12px;

  transition: 0.3s;
}

.top-social-icons a:hover {
  background: var(--primary-red);
  color: #fff;
}

.top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;

  transition: 0.3s;
}

.top-contact-item:hover {
  color: var(--secondary-yellow);
}

.top-contact-item i {
  color: var(--secondary-yellow);
  font-size: 13px;
  flex-shrink: 0;
}

.top-contact-email .top-contact-text {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==================================================
MEGA HEADER
================================================== */

.mega-header {
  background: linear-gradient(90deg, #ffc400, #f5a623);

  border-bottom: 0;

  padding: 10px 0;

  position: relative;
  z-index: 999;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.mega-header-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mega-header-left {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.mega-trust-item {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;

  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  padding: 0 18px;
}

.mega-trust-item:first-child {
  padding-left: 0;
}

.mega-trust-item:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.mega-trust-item i {
  color: var(--primary-red);
  font-size: 18px;
}

.mega-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.mega-menu-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.social-icons {
  display: flex;

  align-items: center;

  gap: 12px;
}

.social-icons a {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f3f3f3;

  color: var(--dark);

  transition: 0.4s;
}

.social-icons a:hover {
  background: var(--primary-red);

  color: #fff;

  transform: translateY(-3px);
}

/* ==================================================
MENU BUTTON
================================================== */

.mega-menu-btn {
  width: 55px;
  height: 55px;

  border: none;

  border-radius: 50%;

  background: var(--primary-red);

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 6px;

  transition: 0.4s;

  flex-shrink: 0;
}

.mega-menu-btn:hover {
  transform: scale(1.05);
}

.mega-menu-btn span {
  width: 28px;
  height: 3px;

  background: #fff;

  border-radius: 20px;
}

/* ==================================================
PREMIUM NAVBAR
================================================== */

.custom-navbar {
  background: rgb(255 255 255 / 12%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

  padding: 5px 0;

  transition: 0.4s;

  z-index: 1030;
}

.custom-navbar.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.custom-navbar .navbar-toggler {
  display: none;

  padding: 6px 10px;
  font-size: 28px;
  color: var(--dark);
  line-height: 1;
}

.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* ==================================================
LOGO
================================================== */

.navbar-brand {
  display: flex;

  align-items: center;

  margin-right: auto;

  padding: 0;
}

.navbar-brand {
  gap: 12px;
}

.navbar-brand img,
.navbar-logo {
  max-height: 78px;
  max-width: 78px;
  width: auto;
  background: transparent !important;
  padding: 0;
  border-radius: 0;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0b3d91;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 13px;
  font-weight: 800;
  color: #071428;
  letter-spacing: 0.04em;
}

.brand-tag {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  color: #f5a623;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ==================================================
NAVIGATION
================================================== */

.navbar-nav {
  gap: 5px;
}

.nav-link {
  position: relative;

  color: var(--dark);

  font-size: 14px;

  font-weight: 500;

  padding: 12px 18px !important;

  transition: 0.4s;
}

.nav-link:hover {
  color: var(--primary-red);
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 5px;

  width: 0;

  height: 3px;

  background: var(--primary-red);

  transform: translateX(-50%);

  border-radius: 20px;

  transition: 0.4s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* ==================================================
QUOTE BUTTON
================================================== */

.quote-btn {
  background: linear-gradient(135deg, var(--secondary-yellow), var(--accent-orange));

  color: #071428;

  padding: 16px 34px;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;

  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.35);
}

.quote-btn:hover {
  color: #071428;

  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 61, 145, 0.28);
}

/* ==================================================
DESKTOP MEGA MENU
================================================== */

.mega-parent {
  position: relative;
}

.mega-menu {
  position: absolute;

  left: 100%;

  top: 100%;

  width: 1200px;
  max-width: 95vw;

  transform: translateX(-50%) translateY(25px);

  background: linear-gradient(
    145deg,
    rgb(255 255 255) 0%,
    rgb(255 255 255 / 87%) 45%,
    rgb(255 255 255 / 94%) 100%
  );
  backdrop-filter: blur(24px) saturate(185%);
  -webkit-backdrop-filter: blur(24px) saturate(185%);

  border-radius: 25px;

  padding: 40px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s;

  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25);

  border: 1px solid rgba(255, 255, 255, 0.72);

  z-index: 9999;

  overflow: hidden;

  isolation: isolate;
}

.mega-menu::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.12) 38%,
    rgba(255, 255, 255, 0) 62%
  );

  pointer-events: none;

  z-index: 0;
}

.mega-menu::after {
  content: "";

  position: absolute;

  top: 0;
  left: 8%;
  right: 8%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.95),
    transparent
  );

  pointer-events: none;

  z-index: 1;
}

.mega-menu > .container {
  position: relative;

  z-index: 2;
}

.mega-parent:hover .mega-menu {
  opacity: 1;

  visibility: visible;

  transform: translateX(-50%) translateY(10px);
}

.mega-menu h5 {
  color: #f5a623 !important;
  -webkit-text-fill-color: #f5a623 !important;

  font-weight: 800;

  margin-bottom: 20px;

  position: relative;
}

.mega-menu h5::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 40px;
  height: 3px;

  background: var(--secondary-yellow);
}

.mega-menu a {
  display: block;

  color: #444;

  padding: 10px 0;

  transition: 0.3s;
}

.mega-menu a:hover {
  color: var(--primary-red);

  transform: translateX(8px);
}

.mega-menu-about a i {
  color: var(--primary-red);
  font-size: 14px;
}

.mega-menu-about-panel {
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: 20px;
  padding: 28px 30px;
  height: 100%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 32px rgba(11, 61, 145, 0.28);
  position: relative;
  overflow: hidden;
}

.mega-menu-about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 45%
  );
  pointer-events: none;
}

.mega-menu-about-panel > * {
  position: relative;
  z-index: 1;
}

.mega-about-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}

.mega-about-logo {
  max-width: 160px;
  height: auto;
  display: block;
}

.mega-menu-about-panel h6 {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.mega-about-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.mega-about-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.mega-about-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.mega-about-contact li i {
  color: var(--secondary-yellow);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.mega-about-contact a {
  display: inline;
  padding: 0;
  color: #fff;
  transform: none !important;
}

.mega-about-contact a:hover {
  color: var(--secondary-yellow);
  transform: none;
}

.mega-about-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mega-about-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(252 190 20);
  color: #fff;
  padding: 0;
  transform: none !important;
  transition: 0.3s;
}

.mega-about-social a:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-3px) !important;
}

.mega-parent-about .mega-menu {
  left: 120%;
}

.mega-parent-services .mega-menu {
  left: 100%;
}

.mega-parent-contact .mega-menu {
  left: 50%;
  right: auto;
  width: 680px;
  max-width: min(680px, 92vw);
  padding: 22px 24px;
  transform: translateX(-50%) translateY(25px);
}

.mega-parent-contact:hover .mega-menu {
  transform: translateX(-50%) translateY(10px);
}

.mega-menu-contact a i {
  color: var(--primary-red);
  font-size: 14px;
}

.mega-menu-contact h5 {
  margin-bottom: 14px;
}

.mega-menu-contact h5::after {
  width: 32px;
}

.mega-contact-grid {
  display: grid;
  grid-template-columns: 36% 64%;
  gap: 18px;
  align-items: stretch;
}

.mega-menu-contact .mega-menu a {
  padding: 8px 0;
  font-size: 15px;
}

.mega-contact-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mega-menu-contact .mega-contact-panel {
  min-height: auto;
  padding: 20px 22px;
  border-radius: 16px;
}

.mega-menu-contact .mega-about-logo-link {
  margin-bottom: 10px;
}

.mega-menu-contact .mega-about-logo {
  max-width: 120px;
}

.mega-menu-contact .mega-menu-about-panel h6 {
  font-size: 16px;
  margin-bottom: 12px;
}

.mega-menu-contact .mega-about-contact {
  margin-bottom: 14px;
}

.mega-menu-contact .mega-about-contact li {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.mega-menu-contact .mega-about-social a {
  width: 34px;
  height: 34px;
  font-size: 14px;
}

/* ==================================================
OVERLAY
================================================== */

.menu-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.35);

  backdrop-filter: blur(8px);

  opacity: 0;

  visibility: hidden;
  pointer-events: none;

  transition: 0.4s;

  z-index: 99998;
}

.menu-overlay.active {
  opacity: 1;

  visibility: visible;
  pointer-events: auto;
}

/* ==================================================
MOBILE MENU
================================================== */

.mobile-menu {
  position: fixed;

  top: 0;
  right: 0;

  width: 380px;
  max-width: 100%;

  height: 100vh;
  height: 100dvh;

  background: #fff;

  z-index: 99999;

  overflow-y: auto;
  overflow-x: hidden;

  transform: translateX(100%);

  transition: transform 0.5s ease;

  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-topbar {
  position: relative;
  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 16px;
  min-height: 64px;
  flex-shrink: 0;

  background: #fff;
  border-bottom: 2px solid var(--secondary-yellow);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mobile-menu-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}

.mobile-menu-content {
  padding: 16px 20px 40px;
  flex: 1;
}

.mobile-menu-content a {
  display: block;

  padding: 15px 0;

  color: #222;

  font-size: 16px;

  font-weight: 600;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu-group-title {
  display: block;
  padding: 18px 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-red);
  border-bottom: none;
}

.mobile-menu-content a.mobile-submenu-link {
  padding: 12px 0 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

/* ==================================================
MOBILE QUOTE BUTTON
================================================== */

.mobile-quote-btn {
  margin-top: 20px;

  text-align: center;

  background: var(--primary-red);

  color: #fff !important;

  border-radius: 50px;

  padding: 15px !important;
}

/* ==================================================
CLOSE BUTTON
================================================== */

.close-menu {
  position: relative;
  top: auto;
  right: auto;

  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;

  border: 2px solid #fff;

  border-radius: 50%;

  background: var(--primary-red);

  color: #fff;

  display: flex;

  align-items: center;
  justify-content: center;

  cursor: pointer;
  flex-shrink: 0;

  z-index: 21;
  padding: 0;

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);

  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.close-menu-symbol {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-top: -2px;
  pointer-events: none;
}

.close-menu:hover {
  background: var(--navy-dark);
}

/* Fixed viewport close button for mobile */
.global-menu-close-btn {
  display: none;
  position: fixed;
  top: max(14px, env(safe-area-inset-top, 14px));
  right: max(14px, env(safe-area-inset-right, 14px));
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2147483000;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.global-menu-close-btn span {
  display: block;
  margin-top: -3px;
  pointer-events: none;
}

.global-menu-close-btn.is-visible,
body.menu-panel-open .global-menu-close-btn {
  display: flex !important;
}

@media (min-width: 992px) {
  .global-menu-close-btn {
    display: none !important;
  }
}

/* ==================================================
TOPBAR & NAVBAR RESPONSIVE
================================================== */

@media (max-width: 1199px) {
  .nav-link {
    font-size: 13px;
    padding: 10px 7px !important;
  }
  .quote-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .navbar-brand img,
  .navbar-logo {
    max-height: 62px;
    max-width: 62px;
  }

  .brand-name {
    font-size: 24px;
  }

  .top-header-marquee {
    min-width: 0;
  }

  .top-contact-email .top-contact-text {
    max-width: 150px;
  }
}

@media (max-width: 991px) {
  .mobile-menu-topbar,
  .fullscreen-menu-topbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    min-height: 64px !important;
  }

  .mobile-menu-title,
  .fullscreen-menu-title {
    flex: 1 1 auto;
    min-width: 0;
  }

  .close-menu,
  .menu-close {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    flex: 0 0 48px !important;
    margin-left: auto !important;
    border: 2px solid #fff !important;
    background: var(--primary-red) !important;
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 100 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  }

  .close-menu-symbol {
    display: block !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #fff !important;
  }

  body.menu-panel-open .global-menu-close-btn {
    display: none !important;
  }

  .top-header {
    padding: 6px 0;
  }

  .top-header-inner {
    column-gap: 10px;
  }

  .top-contact-text {
    display: none;
  }

  .top-header-contact {
    gap: 8px;
  }

  .top-social-icons {
    padding-right: 8px;
  }

  .mega-header {
    padding: 10px 0;
    overflow-x: clip;
  }

  .mega-header-wrapper,
  .mega-header-left {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }

  .mega-right {
    flex-shrink: 0;
  }

  .top-header-inner {
    min-width: 0;
    overflow-x: clip;
  }

  .mega-trust-item {
    font-size: 12px;
    padding: 0 12px;
  }

  .mega-trust-item i {
    font-size: 15px;
  }

  .mega-menu-btn {
    width: 50px;
    height: 50px;
  }

  .custom-navbar .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .custom-navbar .navbar-collapse {
    display: none !important;
  }

  .navbar-brand img,
  .navbar-logo {
    max-height: 55px;
  }

  .mega-menu {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    border-radius: 12px;
    padding: 20px;
    margin-top: 8px;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.68) 100%
    );
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.65);
  }

  .mega-parent.active .mega-menu {
    display: block;
  }

  .mega-parent:hover .mega-menu {
    transform: none;
  }
}

@media (max-width: 767px) {
  .top-marquee-track {
    animation-duration: 22s;
  }

  .top-marquee-track span {
    font-size: 11px;
    padding-right: 40px;
  }

  .top-social-icons a {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .mega-trust-item {
    font-size: 11px;
    padding: 0 10px;
  }

  .mega-trust-item span {
    font-size: 11px;
  }

  .navbar-brand img,
  .navbar-logo {
    max-height: 48px;
  }

  .custom-navbar {
    padding: 8px 0;
  }

  .mobile-menu {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .top-header-inner {
    column-gap: 8px;
  }

  .top-social-icons {
    gap: 4px;
    padding-right: 6px;
  }

  .top-header-contact {
    gap: 6px;
  }

  .mega-header-wrapper {
    gap: 10px;
  }

  .mega-trust-item {
    padding: 0 8px;
  }

  .mega-menu-btn {
    width: 46px;
    height: 46px;
  }

  .mega-menu-btn span {
    width: 20px;
  }

  .navbar-container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 480px) {
  .mega-trust-item span {
    display: none;
  }

  .mega-trust-item {
    padding: 0 6px;
  }

  .mega-trust-item i {
    font-size: 18px;
  }
}
/* ==================================================
HERO SLIDER
================================================== */

.hero-slider {
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
}

.carousel-item {
  height: 70vh;

  position: relative;
}

.carousel-item img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.slider-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  z-index: 1;
}

.slider-content {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  color: #fff;

  z-index: 2;
}

.slider-content h1,
.slider-content .slider-heading {
  font-size: 70px;

  font-weight: 900;

  line-height: 1.1;

  margin-bottom: 20px;
}

.slider-content .slider-heading {
  display: block;
}

.slider-content p:not(.slider-heading) {
  font-size: 20px;

  max-width: 650px;

  margin-bottom: 25px;
}

/* ==================================================
HERO BUTTON
================================================== */

.hero-btn {
  display: inline-block;

  background: var(--secondary-yellow);

  color: #000;

  padding: 14px 35px;

  border-radius: 50px;

  font-weight: 800;

  transition: 0.4s;
}

.hero-btn:hover {
  background: var(--primary-red);

  color: #fff;

  transform: translateY(-3px);
}

/* ==================================================
SLIDER ARROWS
================================================== */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  background-color: var(--primary-red);

  background-size: 45%;
}

/* ==================================================
MARQUEE SECTION
================================================== */

.marquee-section {
  background: linear-gradient(90deg, #ffc400, #f5a623);

  color: #071428;

  padding: 12px 0;

  overflow: hidden;

  position: relative;
}

.marquee-content {
  white-space: nowrap;

  font-weight: 700;

  animation: scrollText 60s linear infinite;
}

.marquee-content i {
  display: inline-block;
  margin-right: 6px;
  vertical-align: -2px;
  color: #0b3d91;
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ==================================================
COMMON SECTION TITLE
================================================== */

.section-tag {
  display: inline-block;

  background: rgba(11, 61, 145, 0.1);

  color: var(--primary-red);

  padding: 10px 20px;

  border-radius: 30px;

  font-weight: 700;
}

.section-title {
  font-size: 48px;

  font-weight: 900;

  line-height: 1.2;
}

.section-text {
  color: #666;

  line-height: 1.9;
}

/* ==================================================
ABOUT SECTION
================================================== */

.about-section {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(255, 196, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 80%, rgba(11, 61, 145, 0.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, #faf7f2 100%);
}

.about-collage {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-bottom: 12%;
}

.about-collage-main {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.about-collage-main img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.about-collage-side {
  position: absolute;
  right: -2%;
  bottom: 0;
  z-index: 2;
  width: 46%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  border: 4px solid #fff;
}

.about-collage-side img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.about-section .experience-box {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: auto;
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.about-section .experience-box .experience-years {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 2px;
}

.about-section .experience-box span {
  font-size: 0.68rem;
  font-weight: 700;
}

.about-location-badge {
  left: 16px;
  bottom: 16px;
  padding: 12px 14px;
  gap: 10px;
  border-radius: 14px;
}

.about-location-badge i {
  font-size: 22px;
}

.about-location-badge strong {
  font-size: 0.85rem;
}

.about-location-badge span {
  font-size: 0.72rem;
}

.about-content {
  width: 100%;
}

.about-content .about-heading {
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  max-width: none;
  width: 100%;
}

.about-content .section-text {
  max-width: none;
  width: 100%;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 25px;
}

.experience-box {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--secondary-yellow);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.experience-box h2,
.experience-box .experience-years {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 5px;
}

/* ==================================================
ABOUT FEATURES
================================================== */

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature i {
  font-size: 22px;
  color: var(--primary-red);
  transition: transform 0.25s ease, color 0.25s ease;
}

.about-feature:hover i {
  transform: scale(1.08);
  color: var(--accent-orange);
}

.about-feature span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
}

.about-feature h6 {
  margin: 0;
  font-weight: 700;
}

.about-topic-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}

.about-topic-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #444;
}

.about-topic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-red);
}

.about-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991.98px) {
  .about-collage {
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 0.5rem;
  }

  .about-content .about-heading {
    max-width: none;
  }

  .about-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .about-topic-list {
    grid-template-columns: 1fr;
  }

  .about-collage {
    padding-bottom: 0;
    max-width: 100%;
  }

  .about-collage-main img {
    aspect-ratio: 16 / 11;
  }

  .about-collage-side {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.85rem;
    border-width: 0;
  }

  .about-collage-side img {
    aspect-ratio: 16 / 10;
  }

  .about-section .experience-box {
    left: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .about-section .experience-box .experience-years {
    font-size: 28px;
  }

  .about-location-badge {
    left: 12px;
    bottom: 12px;
  }

  .about-trust-strip {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

/* ==================================================
PARTNER / TRUSTED RELOCATION SECTION
================================================== */

.partner-section {
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

.partner-image-wrap {
  position: relative;
}

.partner-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.partner-badge i {
  font-size: 28px;
  color: var(--primary-red);
}

.partner-badge strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.partner-badge span {
  display: block;
  font-size: 13px;
  color: #666;
}

.h3-partner {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.partner-full-content {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.partner-content-heading {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  margin-bottom: 18px;
  color: #111;
}

.partner-service-list {
  margin: 0 0 22px;
  padding-left: 1.15rem;
}

.partner-service-list li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #444;
}

.partner-service-list strong {
  color: #111;
}

.partner-full-content .section-text a {
  color: var(--primary-red);
  font-weight: 600;
  text-decoration: none;
}

.partner-full-content .section-text a:hover {
  text-decoration: underline;
}

.partner-service-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  height: 100%;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.partner-service-item i {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(11, 61, 145, 0.08);
  color: var(--primary-red);
  font-size: 20px;
}

.partner-service-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.partner-service-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #555;
}

.partner-note {
  background: #fff;
  border-left: 4px solid var(--primary-red);
  border-radius: 12px;
  padding: 18px 20px;
}

.partner-note p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.partner-contact {
  background: linear-gradient(135deg, #111, #1d1d1d);
  color: #fff;
  border-radius: 20px;
  padding: 28px 26px;
}

.partner-contact h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.partner-contact p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.partner-contact a {
  color: var(--secondary-yellow);
  text-decoration: none;
  font-weight: 600;
}

.partner-contact a:hover {
  text-decoration: underline;
}

.partner-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-red);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
}

.partner-cta-btn:hover {
  background: #c10510;
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .partner-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .partner-contact {
    text-align: center;
  }

  .partner-cta-btn {
    margin-top: 8px;
  }
}

/* ==================================================
COUNTER SECTION
================================================== */

.counter-section {
  background: linear-gradient(135deg, #06275c, #0b3d91);

  padding: 80px 0;
}

.counter-box {
  text-align: center;

  color: #fff;
}

.counter-box i {
  font-size: 50px;

  color: var(--secondary-yellow);

  margin-bottom: 15px;
}

.counter-box h2,
.counter-box .counter {
  font-size: 48px;

  font-weight: 900;

  margin-bottom: 10px;
}

.counter-box p {
  margin: 0;

  font-size: 16px;

  color: #ddd;
}

/* ==================================================
TABLET RESPONSIVE
================================================== */

@media (max-width: 991px) {
  .carousel-item {
    height: 80vh;

    min-height: 600px;
  }

  .slider-content h1,
  .slider-content .slider-heading {
    font-size: 42px;
  }

  .slider-content p:not(.slider-heading) {
    font-size: 18px;
  }

  .section-title {
    font-size: 38px;
  }

  .experience-box {
    right: 0;
  }
}

/* ==================================================
MOBILE RESPONSIVE
================================================== */

@media (max-width: 767px) {
  .carousel-item {
    height: 75vh;

    min-height: 550px;
  }

  .slider-content {
    text-align: center;

    width: 100%;

    left: 0;

    padding: 0 20px;
  }

  .slider-content h1,
  .slider-content .slider-heading {
    font-size: 32px;
  }

  .slider-content p:not(.slider-heading) {
    font-size: 16px;

    margin: auto;
  }

  .section-title {
    font-size: 30px;
  }

  .experience-box {
    position: relative;

    bottom: auto;

    right: auto;

    margin-top: 20px;
  }

  .counter-box {
    margin-bottom: 30px;
  }

  .counter-box h2,
  .counter-box .counter {
    font-size: 38px;
  }
}
/* ==================================================
WHY CHOOSE US SECTION
================================================== */

.why-section {
  background:
    radial-gradient(circle at top left, rgba(255, 196, 0, 0.16), transparent 36%),
    #f4f7fc;
}

.why-card {
  background: #fff;

  padding: 40px 28px;

  text-align: center;

  border-radius: 25px;

  height: 100%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  border-top: 5px solid #ffc400;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 44px rgba(11, 61, 145, 0.18);
}

.why-card i {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #0b3d91, #06275c);
  font-size: 34px;
  color: #ffc400;
  margin-bottom: 20px;
}

.why-card h4 {
  font-weight: 800;

  margin-bottom: 15px;
}

/* ==================================================
SERVICES SECTION
================================================== */

.services-section {
  background: #fffdf4;
}

.services-section .row {
  align-items: stretch;
}

.service-card {
  background: #fff;
  padding: 36px 28px 28px;
  text-align: center;
  border-radius: 24px;
  height: 100%;
  min-height: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(11, 61, 145, 0.16);
}

.service-card > i {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(11, 61, 145, 0.08);
  font-size: 32px;
  color: #0b3d91;
  margin-bottom: 18px;
}

.service-card h4 {
  font-weight: 800;
  margin-bottom: 10px;
  color: #071428;
}

.service-card p {
  margin: 0 0 22px;
  max-width: 240px;
  min-height: 48px;
  color: #5a6478;
  line-height: 1.6;
}

.services-section .service-card .svc-more-link,
.categories-section .category-card .svc-more-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
  max-width: none !important;
  min-height: 44px !important;
  height: 44px !important;
  padding: 0 22px !important;
  border-radius: 999px;
  background: #0b3d91;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition: 0.3s;
  margin-top: auto;
  align-self: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.services-section .service-card .svc-more-link:hover,
.categories-section .category-card .svc-more-link:hover {
  background: #ffc400;
  color: #071428 !important;
  transform: translateY(-2px);
}

.services-section .service-card .svc-more-link i,
.categories-section .category-card .svc-more-link i {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  color: inherit !important;
  display: inline-block !important;
  transition: transform 0.3s;
}

.services-section .service-card .svc-more-link:hover i,
.categories-section .category-card .svc-more-link:hover i {
  transform: translateX(4px);
}

/* ==================================================
COVERAGE SECTION
================================================== */

.coverage-section {
  padding: 100px 0;
}

.coverage-grid {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.coverage-grid span,
.coverage-grid a {
  background: var(--secondary-yellow);

  color: #000;

  padding: 10px 18px;

  border-radius: 30px;

  font-weight: 600;

  transition: 0.3s;

  text-decoration: none;

  display: inline-block;
}

.coverage-grid span:hover,
.coverage-grid a:hover {
  transform: translateY(-3px);

  color: #000;
}

/* ==================================================
WORKFLOW SECTION
================================================== */

.workflow-section {
  background: #fffdf8;
}

.workflow-card {
  background: #fff;

  text-align: center;

  padding: 40px 30px;

  border-radius: 25px;

  height: 100%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.workflow-card:hover {
  transform: translateY(-12px);
}

.workflow-icon {
  width: 90px;
  height: 90px;

  margin: auto;

  border-radius: 50%;

  background: var(--secondary-yellow);

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 20px;
}

.workflow-icon i {
  font-size: 40px;

  color: #000;
}

.workflow-card h4 {
  font-weight: 800;

  margin-bottom: 15px;
}

/* ==================================================
TIMELINE SECTION
================================================== */

.timeline-section {
  background: #f8f9fa;

  padding: 100px 0;
}

.timeline-row {
  position: relative;
}

.timeline-row::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 0;
  bottom: 0;

  width: 4px;

  background: var(--primary-red);

  transform: translateX(-50%);

  z-index: 1;
}

.timeline {
  position: relative;
}

.timeline::before {
  display: none;
}

.timeline-gif-col {
  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px 0 20px 40px;
}

.timeline-gif-wrap {
  width: 100%;

  max-width: 420px;

  border-radius: 20px;

  overflow: hidden;
}

.timeline-gif {
  display: block;

  width: 100%;

  height: auto;

  object-fit: cover;
}

.timeline-item {
  display: flex;

  align-items: center;

  margin-bottom: 50px;
}

.timeline-number {
  width: 80px;
  height: 80px;

  border-radius: 50%;

  background: var(--primary-red);

  color: #fff;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 24px;

  font-weight: 800;

  flex-shrink: 0;

  z-index: 2;
}

.timeline-content {
  background: #fff;

  padding: 30px;

  margin-left: 30px;

  border-radius: 20px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
  font-weight: 800;

  margin-bottom: 15px;
}

/* ==================================================
FLEET SECTION
================================================== */

.fleet-section {
  background: #fff;
}

.fleet-card {
  overflow: hidden;

  border-radius: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  transition: 0.4s;
}

.fleet-card:hover {
  transform: translateY(-10px);
}

.fleet-card img {
  width: 100%;

  height: 280px;

  object-fit: cover;
}

.fleet-content {
  padding: 25px;
}

.fleet-content h4 {
  font-weight: 800;
}

/* ==================================================
CATEGORIES SECTION
================================================== */

.categories-section {
  padding: 100px 0;

  background: linear-gradient(135deg, #06275c, #0b3d91 55%, #0a2e6b);
}

.categories-section .section-title,
.categories-section .section-tag {
  color: #fff;
}

.category-card {
  background: #fff;

  text-align: center;

  padding: 40px 20px;

  border-radius: 25px;

  transition: 0.4s;

  height: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 18px 40px rgba(11, 61, 145, 0.16);
}

.category-card h5 {
  font-weight: 800;

  margin-bottom: 20px;

  flex: 1;
}

.category-card > i {
  font-size: 55px;

  color: var(--primary-red);

  margin-bottom: 15px;
}

/* ==================================================
CTA SECTION
================================================== */

.cta-section {
  background: var(--dark);

  color: #fff;

  padding: 80px 0;
}

.cta-section h2 {
  font-size: 48px;

  font-weight: 900;
}

.cta-btn {
  display: inline-block;

  padding: 15px 35px;

  border-radius: 50px;

  background: var(--secondary-yellow);

  color: #000;

  font-weight: 700;

  transition: 0.4s;
}

.cta-btn:hover {
  background: #fff;

  color: #000;

  transform: translateY(-3px);
}

/* ==================================================
TABLET RESPONSIVE
================================================== */

@media (max-width: 991px) {
  .timeline-row::before {
    display: none;
  }

  .timeline-gif-col {
    padding: 40px 0 0;

    max-width: 480px;

    margin: 0 auto;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    flex-direction: column;

    text-align: center;
  }

  .timeline-content {
    margin: 20px 0 0;
  }

  .cta-section h2 {
    font-size: 38px;
  }
}

/* ==================================================
MOBILE RESPONSIVE
================================================== */

@media (max-width: 767px) {
  .why-card,
  .service-card,
  .workflow-card,
  .category-card {
    padding: 30px 20px;
  }

  .service-card-btn,
  .svc-more-link {
    padding: 5px 12px !important;

    font-size: 11px !important;
  }

  .workflow-icon {
    width: 75px;
    height: 75px;
  }

  .workflow-icon i {
    font-size: 32px;
  }

  .timeline-number {
    width: 65px;
    height: 65px;

    font-size: 20px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-gif-wrap {
    max-width: 100%;
  }

  .fleet-card img {
    height: 220px;
  }

  .cta-section {
    text-align: center;
  }

  .cta-section h2 {
    font-size: 30px;
  }
}
/* ==================================================
TESTIMONIAL SECTION
================================================== */

.testimonial-section {
  background: #fffdf6;
}

.testimonial-card {
  max-width: 800px;

  margin: auto;

  text-align: center;

  padding: 50px;

  background: #fff;

  border-radius: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #ffc400;

  font-size: 24px;

  margin-bottom: 15px;
}

.testimonial-card h5 {
  font-weight: 800;

  margin-top: 20px;
}

.testimonial-card span {
  color: #666;
}

/* ==================================================
FAQ SECTION
================================================== */

.faq-section {
  background: #f8f9fa;
}

.accordion-item {
  border: none;

  border-radius: 15px !important;

  overflow: hidden;

  margin-bottom: 15px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.accordion-button {
  font-weight: 700;

  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-red);

  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

/* ==================================================
CONTACT SECTION
================================================== */

.contact-section {
  background: #fff;
}

.contact-form {
  background: #fff;

  padding: 40px;

  border-radius: 25px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.form-control {
  min-height: 55px;

  border-radius: 12px;

  border: 1px solid #ddd;

  box-shadow: none !important;
}

.form-control:focus {
  border-color: var(--primary-red);
}

textarea.form-control {
  min-height: 150px;

  resize: none;
}

.submit-btn {
  background: var(--primary-red);

  color: #fff;

  border: none;

  padding: 15px 35px;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.submit-btn:hover {
  transform: translateY(-3px);
}

.contact-item {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 20px;

  font-weight: 600;
}

.contact-item i {
  color: var(--primary-red);

  font-size: 20px;
}

/* ==================================================
FOOTER
================================================== */

.footer-section {
  background: #000;

  color: #fff;

  padding: 80px 0 30px;
}

.footer-section h4,
.footer-section h5 {
  font-weight: 800;

  margin-bottom: 20px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo {
  height: auto;
  display: block;
}

.footer-brand-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  color: #ccc;
  line-height: 1.7;
  max-width: 360px;
}

.footer-brand-address i {
  color: var(--primary-red);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;

  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--secondary-yellow);

  padding-left: 5px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--primary-red);

  color: #fff;

  margin-right: 10px;

  transition: 0.4s;
}

.footer-social a:hover {
  transform: translateY(-4px);
}

.footer-contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #ccc;
  line-height: 1.7;
}

.footer-contact-details li i {
  color: var(--primary-red);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-details a {
  color: #ccc;
  transition: 0.3s;
}

.footer-contact-details a:hover {
  color: var(--secondary-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  margin-top: 40px;

  padding-top: 20px;

  text-align: center;

  color: #aaa;
}

/* ==================================================
FLOATING BUTTONS
================================================== */

.floating-whatsapp,
.floating-call,
.floating-email {
  position: fixed;

  right: 20px;

  width: 60px;
  height: 60px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 24px;

  text-decoration: none;

  z-index: 9999;

  animation: bounce 2s infinite;
}

.floating-whatsapp {
  bottom: 180px;

  background: #25d366;
}

.floating-call {
  bottom: 110px;

  background: var(--primary-red);
}

.floating-email {
  bottom: 40px;

  background: #007bff;
}

/* ==================================================
SCROLL TOP BUTTON
================================================== */

#scrollTopBtn {
  position: fixed;

  left: 20px;

  bottom: 40px;

  width: 60px;
  height: 60px;

  border: none;

  border-radius: 50%;

  background: var(--secondary-yellow);

  color: #000;

  font-size: 22px;

  cursor: pointer;

  display: none;

  z-index: 9999;

  transition: 0.3s;
}

#scrollTopBtn:hover {
  transform: translateY(-4px);
}

/* ==================================================
BOUNCE ANIMATION
================================================== */

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ==================================================
FINAL TABLET RESPONSIVE
================================================== */

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }

  .testimonial-card {
    padding: 35px;
  }

  .contact-form {
    margin-top: 30px;
  }
}

/* ==================================================
FINAL MOBILE RESPONSIVE
================================================== */

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-card p {
    font-size: 15px;
  }

  .contact-form {
    padding: 25px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .floating-whatsapp,
  .floating-call,
  .floating-email {
    width: 50px;
    height: 50px;

    font-size: 20px;
  }

  .floating-whatsapp {
    bottom: 150px;
  }

  .floating-call {
    bottom: 90px;
  }

  .floating-email {
    bottom: 30px;
  }

  #scrollTopBtn {
    width: 50px;
    height: 50px;

    font-size: 18px;
  }
}

/* ==================================================
SMALL MOBILE
================================================== */

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .hero-btn,
  .cta-btn,
  .submit-btn,
  .quote-btn {
    width: 100%;

    text-align: center;
  }
}

/* ==================================================
BREADCRUMB OVERLAY (site-wide)
================================================== */

:root {
  --breadcrumb-overlay-gradient: linear-gradient(
    105deg,
    rgb(0 0 0 / 43%) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(11, 61, 145, 0.55) 100%
  );
}

.breadcrumb-overlay,
.hero-overlay,
.blog-breadcrumb .breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: var(--breadcrumb-overlay-gradient);
  z-index: 1;
}

/* ==================================================
SITE-WIDE MOBILE OVERFLOW FIX
================================================== */

.site-page-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .site-page-wrap {
    overflow-x: hidden;
  }
}

.top-header,
.mega-header,
.custom-navbar,
.marquee-section,
.footer-section,
section {
  max-width: 100%;
}

.table-responsive {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .mega-header,
  .top-header {
    overflow-x: clip;
  }

  .mega-header .container,
  .mega-header-wrapper,
  .mega-header-left {
    max-width: 100%;
    min-width: 0;
  }

  .mega-header-wrapper {
    overflow-x: clip;
  }

  .top-header-inner {
    min-width: 0;
  }

  .navbar-container {
    max-width: 100%;
    min-width: 0;
  }

  .carousel,
  .carousel-inner,
  .carousel-item {
    max-width: 100%;
    overflow-x: hidden;
  }
}
@media (max-width: 1024px) {
  .nav-link {
    font-size: 13px;
    padding: 10px 7px !important;
  }
}
@media (max-width: 1400px) {
  .nav-link {
    font-size: 13px;
    padding: 12px 10px !important;
  }
  .mega-parent-about .mega-menu {
    left: 200%;
}
}
@media (max-width: 1450px) {
  .mega-parent-about .mega-menu {
    left: 200%;
}
.mega-parent-contact .mega-menu {
        left: 0%;
}
}

/* ==================================================
RUPAM CARGO BRAND POLISH
================================================== */

.mega-menu-about-panel.bg-danger,
.mega-contact-panel.bg-danger {
  background: linear-gradient(145deg, #0b3d91, #06275c) !important;
}

.btn-danger {
  background: linear-gradient(135deg, #0b3d91, #06275c) !important;
  border-color: #0b3d91 !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(11, 61, 145, 0.25);
}

.btn-danger:hover,
.btn-danger:focus {
  background: linear-gradient(135deg, #ffc400, #f5a623) !important;
  border-color: #ffc400 !important;
  color: #071428 !important;
}

.navbar-logo,
.footer-logo,
.mega-about-logo {
  background: transparent !important;
  border-radius: 0;
  padding: 0;
}

.footer-logo,
.mega-about-logo {
  max-width: 110px;
  max-height: 110px;
}

.custom-navbar {
  background: #fff;
  border-bottom: 4px solid #ffc400;
  box-shadow: 0 8px 28px rgba(11, 61, 145, 0.08);
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffc400;
  color: #071428;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.slider-content h1,
.slider-content .slider-heading {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.category-card > i {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.18);
  color: #0b3d91;
}

.workflow-icon {
  background: linear-gradient(145deg, #0b3d91, #06275c) !important;
  color: #ffc400;
}

.workflow-icon i {
  color: #ffc400 !important;
}

.about-trust-strip {
  background: linear-gradient(135deg, #06275c, #0b3d91) !important;
  border: 0 !important;
}

.about-trust-strip .about-feature span,
.about-trust-strip .about-feature i {
  color: #fff !important;
}

.about-trust-strip .about-feature i {
  color: #ffc400 !important;
}

.why-card,
.service-card,
.workflow-card,
.category-card,
.fleet-card,
.testimonial-card,
.advantage-card {
  border: 1px solid rgba(11, 61, 145, 0.06);
}

.why-card:hover,
.service-card:hover,
.workflow-card:hover,
.category-card:hover {
  border-color: var(--secondary-yellow);
  box-shadow: 0 18px 40px rgba(11, 61, 145, 0.16);
}

.section-title {
  color: var(--navy-ink, #071428);
}

.section-tag {
  background: rgba(255, 196, 0, 0.18);
  color: var(--primary-navy);
  border: 1px solid rgba(245, 166, 35, 0.35);
}

.slider-overlay {
  background: linear-gradient(105deg, rgba(7, 20, 40, 0.78) 0%, rgba(11, 61, 145, 0.45) 70%, rgba(245, 166, 35, 0.22) 100%);
}

.hero-btn {
  box-shadow: 0 10px 24px rgba(255, 196, 0, 0.35);
}

.footer-section {
  background: linear-gradient(180deg, #071428 0%, #0a1f3d 60%, #071428 100%);
  border-top: 4px solid var(--secondary-yellow);
}

.footer-section h4,
.footer-section h5 {
  color: var(--secondary-yellow);
}

.fullscreen-menu {
  background: #071428 !important;
}

.fullscreen-menu h4,
.fullscreen-menu .menu-col-title {
  color: #f5a623 !important;
  -webkit-text-fill-color: #f5a623 !important;
}

.fullscreen-menu ul li,
.fullscreen-menu ul li a,
.fullscreen-menu address {
  color: #fff !important;
}

.cta-section {
  background: linear-gradient(135deg, #06275c, #0b3d91);
  position: relative;
}

.cta-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--secondary-yellow), var(--accent-orange));
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #0b3d91, #06275c);
}

.about-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0 14px 34px rgba(11, 61, 145, 0.08);
}

.about-topic-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.about-topic-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
  color: #1a2433;
}

.about-topic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.counter-section {
  background: linear-gradient(135deg, #06275c, #0b3d91);
}

.counter-box {
  color: #fff;
}

.counter-box i,
.counter-box .counter {
  color: var(--secondary-yellow);
}

@media (max-width: 575.98px) {
  .about-trust-strip {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .brand-tag {
    display: none;
  }

  .navbar-logo {
    max-height: 58px;
    max-width: 58px;
  }
}
