@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --orange-color: #fd542d;
  --light-black-color: #394149;
  --dark-black-color: #292f3a;
  --blue-color: #367fac;
  --bold-black: #0d1317;
  --gray-black-color: #4a5d69;
  --header-light-color: #b4bbc5;
  --light_blue_color: #EEF8FF;
  --light-orange-color: #FFEFED;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  transition: all 0.5s ease-in-out;
}
body {
  font-family: "Poppins", sans-serif;
}
.header_width {
  width: 90%;
  max-width: 1600px;
  margin: auto;
}

.main-width {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}
.light_orange{
    background:var(--light-orange-color);
}
.light_blue{
    background:var(--light_blue_color);
}
.nav_tabs_color {
  color: var(--light-black-color);
}
.nav_call_section {
  color: var(--header-light-color);
}
.dark_black_section {
  color: var(--dark-black-color);
}
.about_us_color {
  color: var(--light-black-color);
}

.link {
  position: relative;
  display: inline-block;
  padding-top: 10px; /* Space for the underline above */
}

.link:hover::after,
.link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #fd4d2d;
  transform: scaleX(1);
  transform-origin: bottom left;
  position: absolute;
  width: 144px;
  top: 0;
  left: -26px;
}

.link::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fd4d2d;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.45s ease-out;
  /* Red underline */
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.link.active::after,
.link:hover::after {
  visibility: visible; /* Show on hover or active */
}

.box_grid {
  border-radius: 10px;
  background: linear-gradient(180deg, #131313 -6.32%, rgba(19, 19, 19, 0) 100%);
}
.grid-color{
    background: linear-gradient(90deg, #FC2C2D 0%, #FC7C2E 100%)
}
.blue_color{
  color:var(--blue-color)
}
.bold-black{
  color:var(--bold-black)
}
.gray-black-color{
  color:var(--gray-black-color)
}
.grid_layer_section{
  background: var(--Gradient, linear-gradient(90deg, #FC2C2D 0%, #FC7C2E 100%));
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

    .timeline {

      align-items: start;
      justify-content: center;
      gap: 20px;
    }

    .pill {
      background: white;
      color: var(--dark-black-color);
      font-weight: 700;
      padding: 14px 26px;
      border-radius: 999px;
      text-align: center;
      white-space: nowrap;
    }

    .label {
      color: white;
      font-weight: 700;
      text-align: center;
      margin-top: 10px;
      line-height: 1.4;
      max-width: 160px;
    }

    .timeline-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    .dot-line {
      width: 80px;
      position: relative;
      height: 2px;
      background: white;
    }

    .dot-left {
      width: 10px;
      height: 10px;
      position: absolute;
      left:0;
      top:-4px;
      background: white;
      border-radius: 50%;
      
    }
        .dot-right {
      width: 10px;
      height: 10px;
      position: absolute;
      right:0;
        top:-4px;
      background: white;
      border-radius: 50%;
      
    }

    .connector {
      display: flex;
      align-items: center;
      margin-top:25px;
    }

    .final .pill {
      padding: 22px 36px;
      font-size: 18px;
    }

    .final .label {
      font-weight: 700;
      font-size: 16px;
    }
    .items-stats{
        display: flex ;
        align-items: start;
        gap:20px;
      }
.rounded_circle{
 background:linear-gradient(90deg, #FC2C2D 0%, #FC7C2E 100%)
}






      


.left-section {
  flex: 1;
}


.left-section p {
  font-size: 14px;
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: red;
}

.form-section {
  flex: 2;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  border-bottom: 1px solid #000;
}

.full-width {
  width: 100%;
  margin-bottom: 20px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkbox-label {
  font-size: 12px;
}

.checkbox-label a {
  color: red;
  text-decoration: none;
}

.button {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  cursor: pointer;
}
.footer_bg{
  background-color: var(--dark-black-color);
}
      /* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 37px;
  height: 22px;
  cursor: pointer;
  z-index: 20;
  background: transparent;
  border: none;
}

.hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Transform hamburger to X */
.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  z-index:999999;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--Gradient, linear-gradient(90deg, #FC2C2D 0%, #FC7C2E 100%));
  color: white;
  transition: left 0.3s ease;
  z-index: 90;
  overflow-y: auto;
  padding-top: 20px;
}

.mobile-nav.active {
  left: 0;
    z-index:999999
}

/* Mobile Navigation Links */
.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav ul li {
  padding: 15px 0;
}

.mobile-nav ul li a {
  text-decoration: none;
}

/* Close Hamburger Button */
.close-hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}

.close-hamburger .line {
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease;
}

/* Cross (X) Style for Close Button */
.close-hamburger .line:nth-child(1) {
  transform: rotate(0);
}

.close-hamburger .line:nth-child(2) {
  transform: rotate(0);
}

.close-hamburger.active .line:nth-child(1) {
  transform: rotate(45deg);
}

.close-hamburger.active .line:nth-child(2) {
  transform: rotate(-45deg);
}

/* Prevent Scrolling */
body.nav-open {
  overflow: hidden;
}