@font-face {
  font-family: 'Roboto';
  src: url('../fonts/robotos/Roboto-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/robotos/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/robotos/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/robotos/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/robotos/Roboto-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/robotos/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/robotos/Roboto-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/robotos/Roboto-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/robotos/Roboto-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--white);
  color: var(--black);
}

:root {
  --primary-color: #fe4a23;
  --secondary-color: #774dff;
  --third-color: #858585;
  --black: #000000;
  --white: #ffffff;
  --gray: #e5e5e5;
  --font-family: 'Roboto', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Header & Navigation Styles */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
  background-color: transparent;
}

.header-wrap {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(229, 229, 229, 0.8);
  position: relative;
  overflow: hidden;
  padding: 0 0 0 20px;
  /* pad on left of logo, no right padding for contact button */
}

/* Orange Top Accent Line */
.header-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  z-index: 10;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header Start */
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 50px;
  width: auto;
  display: block;
}
.logo-box {
  position: relative;
  padding: 10px 50px 10px 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-box::after {
  content: '';
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 0px;
  width: 14px;
  background-color: #0c1a30;
  transform: skewX(-24deg);
  border-right: 4px solid var(--primary-color);
}

.primary-nav {
  display: flex;
  align-items: center;
  margin-left: -20px;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 24px 12px;
  display: block;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Contact Button */
.header-actions {
  display: flex;
  align-items: center;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 28px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  transition: color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(254, 74, 35, 0.08);
  z-index: 1;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 130%;
  height: 100%;
  background-color: var(--primary-color);
  transform: skewX(-45deg);
  transition: left 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.primary-btn:hover {
  color: var(--white);
  box-shadow: 0 8px 24px rgba(254, 74, 35, 0.25);
}

.primary-btn:hover::before {
  left: -15%;
}

.primary-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(254, 74, 35, 0.15);
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff3b00, #ff5e00);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 24px 40px;
  position: relative;
  overflow: visible;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: box-shadow 0.3s ease;

}

.header-contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 40px;
  height: 100%;
  background: linear-gradient(135deg, #ff3b00, #ff5e00);
  transform: skewX(-24deg);
  z-index: -1;
}

.header-contact-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -28px;
  width: 8px;
  height: 100%;
  background-color: #eaeaea;
  transform: skewX(-24deg);
  z-index: -2;
  border-left: 3px solid #0c1a30;
}

.header-contact-btn:hover {
  box-shadow: -10px 0 30px rgba(254, 74, 35, 0.15);
}

.header-contact-btn .arrow {
  margin-left: 8px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.header-contact-btn:hover .arrow {
  transform: translateX(4px);
}

/* Mega Menu Styles */


.mega-menu {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 1250px;
  background-color: var(--white);
  border: 1px solid rgba(229, 229, 229, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 9999;
  padding: 40px 0;
  border-radius: 10px;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: transparent;
}

.has-mega-menu:hover .mega-menu {
  display: block;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: start;
}

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mega-category h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 4px;
}

.mega-direct-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 24px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.mega-direct-link:hover {
  color: var(--primary-color);
}

.mega-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-category ul li a {
  text-decoration: none;
  color: var(--third-color);
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.mega-category ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.chevron-icon {
  margin-left: 6px;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  vertical-align: middle;
  display: inline-block;
}

.has-mega-menu:hover .chevron-icon {
  transform: rotate(180deg);
}

/* Header End */