/* ==================================================
ROOT VARIABLES
================================================== */

:root {
  --primary-red: #e30613;
  --secondary-yellow: #ffc400;
  --dark: #000000;
  --white: #ffffff;
  --light: #f8f9fa;
  --gray: #666666;
}

/* ==================================================
GENERAL
================================================== */

html {
  max-width: 100%;
}

body {
  font-family: "Segoe UI", sans-serif;
  width: 100%;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 100px 0;
}

/* ==================================================
TOP HEADER
================================================== */

.top-header {
  background: linear-gradient(135deg, #ad1016, #f20000, #7a0000);
  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: #fff;

  border-bottom: 3px solid var(--secondary-yellow);

  padding: 12px 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 img,
.navbar-logo {
  max-height: 100px;
  width: auto;
}

/* ==================================================
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(--primary-red), #ff4040);

  color: #fff;

  padding: 16px 34px;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;

  box-shadow: 0 8px 25px rgba(227, 6, 19, 0.25);
}

.quote-btn:hover {
  color: #fff;

  transform: translateY(-3px);
}

/* ==================================================
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: var(--primary-red);

  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(125, 0, 0, 0.18);
  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: #c00510;
}

/* 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: 60px;
  }

  .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 {
  font-size: 70px;

  font-weight: 900;

  line-height: 1.1;

  margin-bottom: 20px;
}

.slider-content p {
  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: var(--primary-red);

  color: #fff;

  padding: 12px 0;

  overflow: hidden;

  position: relative;
}

.marquee-content {
  white-space: nowrap;

  font-weight: 700;

  animation: scrollText 60s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ==================================================
COMMON SECTION TITLE
================================================== */

.section-tag {
  display: inline-block;

  background: rgba(227, 6, 19, 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;
}

.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 {
  font-size: 42px;

  font-weight: 900;

  margin-bottom: 5px;
}

/* ==================================================
ABOUT FEATURES
================================================== */

.about-feature {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;
}

.about-feature i {
  font-size: 24px;

  color: var(--primary-red);
}

.about-feature h6 {
  margin: 0;

  font-weight: 700;
}

/* ==================================================
COUNTER SECTION
================================================== */

.counter-section {
  background: linear-gradient(135deg, #000, #111);

  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 {
  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 {
    font-size: 42px;
  }

  .slider-content p {
    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 {
    font-size: 32px;
  }

  .slider-content p {
    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 {
    font-size: 38px;
  }
}
/* ==================================================
WHY CHOOSE US SECTION
================================================== */

.why-section {
  background: #fff;
}

.why-card {
  background: #fff;

  padding: 40px;

  text-align: center;

  border-radius: 25px;

  height: 100%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);
}

.why-card i {
  font-size: 55px;

  color: var(--primary-red);

  margin-bottom: 20px;
}

.why-card h4 {
  font-weight: 800;

  margin-bottom: 15px;
}

/* ==================================================
SERVICES SECTION
================================================== */

.services-section {
  background: #fffdf4;
}

.service-card {
  background: #fff;

  padding: 40px;

  text-align: center;

  border-radius: 25px;

  height: 100%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.service-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 18px 40px rgba(227, 6, 19, 0.12);
}

.service-card p {
  margin-bottom: 12px;
}

.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: 5px;

  width: auto !important;

  max-width: max-content !important;

  min-height: 0 !important;

  height: auto !important;

  padding: 6px 16px !important;

  border-radius: 6px;

  background: var(--primary-red);

  color: #fff !important;

  font-weight: 600;

  font-size: 12px;

  line-height: 1.2;

  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: var(--dark);

  color: #fff !important;

  transform: translateY(-1px);
}

.services-section .service-card .svc-more-link i,
.categories-section .category-card .svc-more-link i {
  font-size: 11px;

  transition: transform 0.3s;
}

.services-section .service-card .svc-more-link:hover i,
.categories-section .category-card .svc-more-link:hover i {
  transform: translateX(3px);
}

.service-card i {
  font-size: 60px;

  color: var(--primary-red);

  margin-bottom: 20px;
}

.service-card h4 {
  font-weight: 800;

  margin-bottom: 15px;
}

/* ==================================================
COVERAGE SECTION
================================================== */

.coverage-section {
  padding: 100px 0;
}

.coverage-grid {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.coverage-grid span {
  background: var(--secondary-yellow);

  color: #000;

  padding: 10px 18px;

  border-radius: 30px;

  font-weight: 600;

  transition: 0.3s;
}

.coverage-grid span:hover {
  transform: translateY(-3px);
}

/* ==================================================
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, var(--primary-red), #ff3131);
}

.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(227, 6, 19, 0.12);
}

.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(227, 6, 19, 0.45) 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%;
}
}
