/* ========================================
   RESET & BASE STYLES
   ======================================== */
@import url("https://fonts.googleapis.com/css2?family=Lato&family=Manrope:wght@200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --primary-orange: #ff8f28;
  --accent-orange: #ff8f28;
  --dark-bg: #0a0e1a;
  --darker-bg: #050810;
  --text-white: #ffffff;
  --text-gray: #b8c5d6;
  --gradient-warm-start: #3d2314;
  --gradient-warm-mid: #5c3a28;
  --gradient-warm-end: #8b4513;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  /* Spacing */
  --nav-height: 80px;
  --container-padding: 80px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: var(--font-primary);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}
/* majesticons:arrow-up */

.icon {
  width: 24px;
  height: 24px;

  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transform: rotate(-45deg);

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* ========================================
   HERO SECTION
   ======================================== */

#hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-image: url("./assets/herosection.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Decorative gradient overlay */
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 140, 66, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* ========================================
   NAVIGATION
   ======================================== */

header {
  position: relative;
  z-index: 1000;
}

.navbar {
  padding-top: 24px;
}

.unifixLogo {
  margin-top: 24.14px;
  margin-bottom: 24.14px;
}

.px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 32px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 40px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  transition: var(--transition-smooth);
}

/* .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
} */

.nav-link:hover {
  color: var(--accent-orange);
}
.qrtext {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;

  color: #0d2039;
}
.qrtext span {
  color: var(--accent-orange);
}
.nav-link.active {
  color: var(--text-white);
}

/* Download App Button in Navbar */
.navbar-nav .nav-link.rounded-pill {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 18px;
  gap: 10px;

  width: auto;
  min-width: 147px;
  height: 35px;
  white-space: nowrap;

  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);

  /* Typography */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;

  transition: var(--transition-smooth);
}

.navbar-nav .nav-link.rounded-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-smooth);
}

/* ========================================
   HERO CONTENT
   ======================================== */

.hero-container {
  max-width: 1440px;

  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--nav-height) - 100px);
}

.hero-image {
  width: 400px;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  z-index: 10;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-heading {
  /* Hero title */
  max-width: 737px;
  width: 100%;
  height: auto;

  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-size: 68px;
  line-height: 93px;

  background: linear-gradient(90.58deg, #ffffff -35.53%, #ff8f28 101.11%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* text-fill-color: transparent; */

  /* Inside auto layout */
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.accent-text {
  color: var(--primary-orange);
  position: relative;
  display: inline-block;
}

.hero-subheading {
  /* Hero description */
  margin-bottom: 47px;
  max-width: 737px;
  width: 100%;
  height: auto;

  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;

  color: #ffffff;

  /* Inside auto layout */
  flex: none;
  flex-grow: 0;
}

/* ========================================
   CTA BUTTONS
   ======================================== */

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 8px 18px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn i {
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--accent-orange) 100%
  );
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.featureHeader {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  text-align: center;
  margin-bottom: 0;

  color: #0d2039;

  text-align: center;
  margin-top: 80px;
}
.featureHeader span {
  color: var(--primary-orange);
}
/* ========================================
   PHONE MOCKUP
   ======================================== */

.hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.phone-mockup {
  position: relative;

  align-items: center;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.phone-img {
  /* max-width: 393px; */
  height: 600px;
  right: 0;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  transition: var(--transition-smooth);
  object-fit: contain;
  transform: scale(1.070);
}

.phone-mockup:hover .phone-img {
  filter: drop-shadow(0 25px 70px rgba(0, 191, 255, 0.3));
}
.featureSubHeader {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  /* identical to box height */
  text-align: center;
  margin-top: 24px;
  margin-bottom: 63px;
  color: #0d2039;
}

.featureDetail {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 24px;
}
.qq{
  margin-left: 24px;
}
.featureDetailText h4 {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  /* identical to box height */

  color: #ffffff;
}
.featureDetailText p {
  /* Feature detail subheadline */

  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;

  color: #d9d9d9;
}

.featureContent .container {
  background-image: linear-gradient(90deg, #0d2039 0%, #24599f 100%);
  margin-bottom: 24px;

  padding-top: 20px !important;
  padding-bottom: 0 !important;
  overflow: hidden;
}

.featureMockup {
  margin: 0 auto;
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

  /* Base styles for feature row with justify-content-between */
  .featureContent .row.justify-content-between {
    align-items: center;
  }

  .HomeMockUp {
    width: 200px;
    height: 290px;
    margin-bottom: 0;
  }
  
  .RequestsMockup,
  .GTSmockup {
    width: 180px;
    height: 180px;
    margin-bottom: 0;
  }
  
  .featureMockup .d-flex {
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .AddRequestMockup {
    width: 180px;
    height: 240px;
    margin-bottom: 0;
  }
footer {
  padding-top: 80px;
  padding-bottom: 30px;
}
.copyright {
  /* Copyright text */

  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  /* identical to box height */

  color: #848484;
}
/* Steps Section Styling */
.rightsidesteps {
  position: relative;
}
.footerleft p {
  padding-top: 24px;

  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: justify;

  color: #0d2039;
}
.stepscontent {
  position: relative;
  padding-left: 20px;
}

.step {
  margin-bottom: 20px;
}

.step h4 {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 33px;
  /* identical to box height */

  color: #0d2039;
}
.step1 {
  margin-top: 20px;
}
.step p {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;

  color: #8c8c8c;
}
#download h2 {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  /* identical to box height */
  text-align: center;

  color: #ffffff;
  margin-bottom: 24px;
}

#download p {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  text-align: center;

  color: #d9d9d9;
  margin-bottom: 24px;
}

.stepsimg {
  width: 650px;
  height: 695px;
}
.chainimg {
  height: 500px;
}

.mechanicbg {
  height: 600px;
  background-image: url(./assets/image1.png);
  background-size: cover;
  background-position: center center;
}
.explore h5 {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 24px;

  color: #0d2039;
}
.footerlink {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  /* identical to box height */

  color: #0d2039;
}

.explore a.footerlink {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #0d2039;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.explore a.footerlink:hover {
  color: var(--primary-orange);
}
.qrcard {
  background-color: rgba(13, 32, 57, 0.1);
}

.qq {
  margin-left: 0;
}

/* Compact QR Card for Desktop (above 992px) */
@media (min-width: 992px) {
  .qrcard {
    width: 100%;
    justify-content: center;
  }

  .qrcard img[src*="googleplay"],
  .qrcard img[src*="appstore"] {
    width: 120px !important;
    height: 36px !important;
  }
  
  .qrcard .qr {
    width: 120px !important;
    height: 120px !important;
  }
}

.featurelink {
  margin-bottom: 18px;
}

.social-item {
  margin-bottom: 18px;
}
/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1360px) {
 
  :root {
    --container-padding: 40px;
  }

  .hero-heading {
    font-size: 42px;
    /* Optimized for tablet/small desktop */
    line-height: 1.2;
    width: 100%;
  }

  .hero-subheading {
    margin-bottom: 47px;
    font-size: 16px;
    line-height: 1.5;
    max-width: 60%; /* Prevent text from spanning too wide */
  }

  .hero-content {
    gap: 20px; /* Reduce gap to ensure fit */
    justify-content: space-between;
    flex-wrap: nowrap; /* Force side-by-side */
  }

  .hero-text {
    min-width: 0; /* Allow to shrink below 350px if needed */
    flex: 1 1 auto;
  }

  .hero-image {
    width: 350px;
    flex: 0 0 350px; /* Fixed width for image container */
    display: flex;
    justify-content: center;
  }

  .phone-img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    transform: scale(1.4);
  }
}

  .phone-img-mobile {
    width: 200px;
    height: 240px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: top;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
  }

@media (max-width: 1200px) {
   .HomeMockUp {
    width: 180px;
    height: 260px;
    margin-bottom: 0;
  }
  .AddRequestMockup {
    width: 160px;
    height: 200px;
    margin-bottom: 0;
  }
  .hero-heading {
    font-size: 50px;
    line-height: 1.2;
    max-width: 650px; /* Slightly relaxed constraint */
  }

  .hero-subheading {
    margin-bottom: 47px;
    font-size: 18px; /* Slight bump for readability */
    max-width: 600px;
  }

  .qr {
    width: 114px;
  }
  
}

@media (max-width: 768px) {
  /* Feature section adjustments for tablets */
  .featureContent .row.justify-content-between {
    justify-content: center !important;
  }

  .featureContent .row.justify-content-between > div {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .featureDetail {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .featureMockup .d-flex {
    align-items: flex-end !important;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .HomeMockUp {
    width: 180px;
    height: 260px;
    margin-bottom: 0;
  }

  .AddRequestMockup {
    width: 160px;
    height: 200px;
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .px-80 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .card {
    width: 100% !important;
    max-width: 100%;
    padding: 20px !important;
    gap: 20px;
    margin-top: 24px;
  }

  .qr {
    width: 110px;
    height: 110px;
  }

  

  /* Hero Section - Switch to Stacked Layout (Mobile Center Bottom) */
  .hero-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .hero-text {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-heading {
    font-size: 36px;
    max-width: 100%;
    text-align: center;
  }

  .hero-subheading {
    font-size: 16px;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }

  .hero-image {
    position: static; /* Use static so absolute child anchors to #hero */
    width: 100%;
    max-width: 400px;
    right: auto;
    bottom: auto;
    flex: none;
    display: flex;
    justify-content: center;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .phone-mockup {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: static; /* Allow child to anchor to #hero */
  }

  .phone-img {
    max-height: 500px;
    width: auto;
  }

  /* Features - Text Centering & Smaller Mockups (992px) */
 
  .featureDetailText {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .featureDetailText h4,
  .featureDetailText p {
    text-align: center;
  }

  .featureContent .row.justify-content-between {
    justify-content: center !important;
  }

  .featureContent .row.justify-content-between > div {
    margin-top: 20px;
  }

  .featureMockup .d-flex {
    align-items: flex-end !important;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .HomeMockUp {
    width: 150px;
    height: 230px;
    margin: 0 auto;
    margin-bottom: 0;
  }

  .RequestsMockup,
  .GTSmockup {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    margin-bottom: 0;
  }

  .AddRequestMockup {
    width: 150px;
    height: 180px;
    margin: 0 auto;
    margin-bottom: 0;
  }

}
@media (max-width: 992px) {
  .phone-img {
    margin-left: 140px;
  }
}
@media (max-width: 968px) {
  /* Hero Section - Keep existing styles */
  .hero-heading {
    font-size: 32px; /* Smaller font for tight spaces */
  }

  .hero-subheading {
    font-size: 14px;
  }

  .hero-content {
    gap: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    gap: 24px; /* Reduced vertical gap between heading/sub/buttons */
  }

  .cta-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: auto;
    height: auto;
  }
  
  #downloadAppBtn, 
  #joinProviderBtn {
    width: 208px;
    margin: 0;
    justify-content: center;
  }

  #joinProviderBtn {
    font-size: 13px;
  }

  /* Hide arrow icon for Join Provider Btn */
  #joinProviderBtn .icon {
    display: none;
  }

  .hero-image {
    width: 100%;
    max-width: 300px;
    flex: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  .phone-mockup {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .phone-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    margin-left: 100px;
    object-fit: contain;
  }

  /* Features Section */
  .featureHeader {
    font-size: 32px;
    line-height: 44px;
    margin-top: 60px;
  }

  .featureSubHeader {
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
    margin-bottom: 50px;
  }

 

  .featureDetailText h4 {
    font-size: 22px;
    line-height: 30px;
  }

  .featureDetailText p {
    font-size: 16px;
    line-height: 22px;
  }

  .HomeMockUp {
    width: 150px;
    height: 230px;
    margin: 0 auto;
  }

  .RequestsMockup,
  .GTSmockup {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .AddRequestMockup {
    width: 150px;
    height: 180px;
    margin: 0 auto;
  }

  /* Steps Section */
  .stepsimg {
    width: 500px;
    height: 550px;
  }

  .chainimg {
    height: 400px;
  }

  .step h4 {
    font-size: 18px;
    line-height: 28px;
  }

  .step p {
    font-size: 16px;
    line-height: 22px;
  }

  /* Download Section */
  #download h2 {
    font-size: 32px;
    line-height: 44px;
  }
  #download {
   margin-top: 80px;
  }

  #download p {
    font-size: 18px;
    line-height: 25px;
  }

  .mechanicbg {
    height: 500px;
  }

  /* Footer */
  footer {
    padding-top: 60px;
    padding-bottom: 24px;
  }

  .footerleft p {
    font-size: 13px;
    line-height: 18px;
  }

  .explore h5 {
    font-size: 18px;
    line-height: 25px;
  }

  .footerlink {
    font-size: 16px;
    line-height: 22px;
  }

  .qr {
    width: 120px;
    height: 120px;
  }

 

  .card {
    width: 100% !important;
    max-width: 100%;
    padding: 20px !important;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* Hero Section - Keep existing styles */
  .HomeMockUp {
    margin: 0;
  }
  
  .featureMockup .d-flex {
    justify-content: center;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-image {
    order: 2;
    width: 100%;
    max-width: 300px;
    flex: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: static;
  }

  .phone-mockup {
    display: flex;
    justify-content: center;
    width: 100%;
    position: static;
  }

  .hero-heading {
    font-size: 32px;
    height: auto;
  }

  .hero-subheading {
    max-width: 100%;
  }

  .cta-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: auto;
    height: auto;
  }
  
  #downloadAppBtn, 
  #joinProviderBtn {
    width: 208px;
    margin: 0;
    justify-content: center;
  }

  #joinProviderBtn {
    font-size: 13px;
  }

  .navbar-nav {
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin: 0 !important; /* Override Bootstrap's ms-auto */
    padding-bottom: 20px; /* Add some padding at botom */
  }

  /* Hide arrow icon for Join Provider Btn on small screens */
  #joinProviderBtn .icon {
    display: none;
  }

  /* Mobile Hamburger Menu Icon - Custom White Lines */
  .navbar-toggler {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }

  /* Remove Bootstrap's default background image */
  .navbar-toggler-icon {
    background-image: none !important;
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    position: relative;
    display: block;
    margin: auto;
  }

  /* Create the top and bottom lines using pseudo-elements */
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    left: 0;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -10px;
  }

  .navbar-toggler-icon::after {
    bottom: -10px;
  }

  /* Animated hamburger to X when active */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Features Section */
  .featureHeader {
    font-size: 28px;
    line-height: 38px;
    margin-top: 50px;
  }

  .featureSubHeader {
    font-size: 15px;
    line-height: 21px;
    margin-top: 16px;
    margin-bottom: 40px;
  }

  .featureContent .container {
    padding: 0;
  }

 


  

  .HomeMockUp {
    width: 180px;
    height: 260px;
  }

  .RequestsMockup,
  .GTSmockup {
    width: 160px;
    height: 160px;
  }

  .AddRequestMockup {
    width: 160px;
    height: 215px;
  }

  .featureContent svg {
    display: none;
  }

  /* Steps Section */
  .stepsimg {
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  .chainimg {
    height: 350px;
  }

  .stepscontent {
    row-gap: 8px;
  }

  .step {
    margin-bottom: 16px;
  }

  .step h4 {
    font-size: 17px;
    line-height: 24px;
  }

  .step p {
    font-size: 15px;
    line-height: 21px;
  }

  /* Download Section */
  #download h2 {
    font-size: 26px;
    line-height: 36px;
    padding: 0 16px;
  }

  #download p {
    font-size: 16px;
    line-height: 22px;
    padding: 0 16px;
  }

  .mechanicbg {
    height: 450px;
  }

  /* Footer */
  footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footerleft img {
    width: 160px;
  }

  .footerleft p {
    font-size: 12px;
    line-height: 17px;
    padding-top: 20px;
  }

  .explore h5 {
    font-size: 17px;
    line-height: 24px;
  }

  .footerlink {
    font-size: 15px;
    line-height: 21px;
  }

  .card {
    margin-top: 30px;
    padding: 20px !important;
    gap: 16px;
    width: 100% !important;
    max-width: 100%;
  }

  .qr {
    width: 100px;
    height: 100px;
  }

}

  .copyright {
    font-size: 14px;
    line-height: 20px;
  }


@media (max-width: 640px) {
   .down{
    width: 120px !important;
    height: 40px !important;
  }
  .footerleft p {
    padding-top: 24px;
    font-size: 12px;
    line-height: 16px;
    text-align: justify;

    color: #0d2039;
  }
  #download h2 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    /* identical to box height */
    text-align: center;

    color: #ffffff;
  }
  
  #download p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;

    color: #d9d9d9;
  }

  .mechanicbg {
    height: 440px;
  }
  .step h4 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    /* identical to box height */

    color: #0d2039;
  }

  .step p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;

    color: #8c8c8c;
  }
  .stepsimg {
    width: 600px;
    height: 450px;
  }
  .chainimg {
    height: 480px;
  }
  .step1 {
    margin-top: 20px;
  }
  .stepscontent {
    row-gap: 4px;
  }


  .featureDetail .cta-buttons {
    display: none;
  }
  .HomeMockUp {
    /* Free Google Pixel 10 Pro Mockup (Mockuuups Studio) */

    width: 150px;
    height: 230px;
    margin: 0;
  }

 
  .qq img{
    width: 140px;
    height: 40px;
   
  }
  .qq{
     margin-left: 24px;
  }
  .AddRequestMockup {
    /* Free Google Pixel 10 Pro Mockup (Mockuuups Studio) */

    width: 150px;
    height: 180px;
    margin: 0;
  }
  
  .featureMockup .d-flex {
    justify-content: center;
    align-items: flex-end; /* Align bottom of images */
  }
  .row>*{
    padding-left: 0;
  }
  .featureContent {
    padding-left: 24px;
    padding-right: 24px;
  }
  footer{
    padding-left: 16px;
    padding-right: 16px;
  }
.featureDetail {
  margin-top: 0;
  margin-bottom: 10PX;
  margin-left: 24px;
}
  .featureDetailText h4 {
    /* Feature detail headline */

    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-align: center;

    color: #ffffff;
  }
  .featureContent svg {
    display: none;
  }
  .featureDetailText p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    margin-bottom: 0;
    color: #d9d9d9;
  }
  /* Mobile Navbar Container */
  .navbar {
    padding: 16px 0;
  }

  .navbar .container-fluid {
    padding: 0px 16px;
  }

  /* Override Bootstrap padding */
  .px-80 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .featureHeader {
    /* Features headline */

    text-align: center;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-align: center;

    color: #0d2039;
  }
  .featureSubHeader {
    /* Features subheadline */

    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;

    color: #0d2039;
    margin-top: 12px;
    margin-bottom: 40px;
  }
  /* Mobile Hero Container */
  .hero-container {
    padding: 0 16px;
    overflow: hidden !important;
  }

  /* Frame 7 - Hero Text Container */
  .hero-text {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 3px;

    /* Positioning */
    position: relative;
    margin-left: auto;
    margin-right: auto;

    /* Dimensions */
    width: 408px;
    height: 335px;
    min-width: auto;
    max-width: 408px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
  }

  /* Frame 6 - Text Content Container (heading + description) */
  .hero-text > :first-child,
  .hero-text > :nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-heading {
    /* Hero title */
    width: 100%;
    max-width: 100%;

    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    text-align: center;

    background: linear-gradient(90.58deg, #ffffff -35.53%, #ff8f28 101.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  .hero-subheading {
    /* Hero description */
    width: 100%;
    max-width: 100%;
    padding: 0 16px; 
margin-bottom: 20px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;

    color: #ffffff;

    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
  }

  /* Frame 4 - Button Container */
  .cta-buttons {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px;
    gap: 12px;

    width: 208px;
    height: 105px;

    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
  }

  /* Download Button */
  #downloadAppBtn {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;

    margin: 0 auto;
    width: 208px;
    height: 44.28px;

    background: #ff8f28;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;

    /* Typography */
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #ffffff;

    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
  }

  /* Download Button Icon */
  #downloadAppBtn .icon {
    width: 20px;
    height: 20px;

    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transform: rotate(-90deg);

    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #downloadAppBtn .icon i {
    transform: rotate(45deg);
    font-size: 10px;
    color: #ffffff;
  }

  /* Join Button */
  #joinProviderBtn {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    margin: 0 auto;
    width: 208px;
    height: 49px;

    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;

    /* Typography */
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #ffffff;

    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
  }

  /* Join Button Icon - Hidden on mobile */
  #joinProviderBtn .icon {
    display: none;
  }

  /* Join Button Text */
  #joinProviderBtn {
    /* Ensure text takes proper width when icon is hidden */
    width: 208px;
    height: 49px;
  }

  /* Mobile Phone Mockup Container */
  .hero-image {
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    /* Positioning */
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto;
    overflow: visible;
  }

  .phone-mockup {
    /* Remove float animation on mobile */
    

  
    /* Ensure wrapper takes full width to allow centering inside */
    display: flex;
    justify-content: center;
  }

  /* iMockup - iPhone 15 Pro Max - Wider */
  .phone-img {
    width: 100%;
    height: 500px;
    margin-left: 100px;
    /* Inside auto layout */
  }
}

/* ========================================
   PREMIUM POLISH
   ======================================== */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection colors */
::selection {
  background: var(--primary-orange);
  color: var(--text-white);
}

::-moz-selection {
  background: var(--primary-orange);
  color: var(--text-white);
}

/* Focus states for accessibility */

/* Loading animation for images */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}



.how-it-works-section {
    min-height: 90vh;
    align-items: center;
    overflow: hidden; /* Prevents glow from causing scrollbars */
}

/* Image Styling */
.phone-mockup-2 {
    max-height: 500px; /* Limits height so it doesn't get too big on desktop */
  
}

/* The Glow Effect behind the phone */
/* Using the warm gradient colors you provided to mimic the orange background glow */


/* Steps Styling */
.step-item {
    margin-bottom: 2.5rem;
    align-items: flex-start; /* Aligns number with the top of the title */
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
    margin-right: 1.5rem;
    min-width: 60px; /* Ensures numbers align vertically even if single/double digit */
}
.text-primay{
  color:#0D2039 !important
}
.step-content {
    padding-top: 0.2rem; /* Slight offset to align visually with the large number */
}

.step-title {
    
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: "Manrope";

}

.step-desc {
    color: #8C8C8C;
    font-family: "Manrope";
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  
    
    .phone-mockup-2 {
        width: 180px;
    }

    .step-number {
        font-size: 2rem;
        margin-right: 1rem;
        min-width: 50px;
    }

    .step-title {
        font-size: 1.1rem;
    }
    .steps-container{
      padding: 0 20px;
    }
}

@media (max-width: 400px) {
  .hero-container {
    padding: 0 16px;
    overflow: hidden;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .hero-heading {
    width: 100%;
    max-width: 100%;
    font-size: 28px !important; /* Ensure it overrides previous fixed sizes */
    line-height: 1.3;
    text-align: center;
  }

  .hero-subheading {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    padding: 0 10px; /* Add some padding to prevent text touching edges */
    text-align: center;
  }

  .cta-buttons {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  #downloadAppBtn, 
  #joinProviderBtn {
    width: 100%; /* Make buttons full width of their container */
    max-width: 280px; /* But limit them so they don't look weird */
    font-size: 14px;
    padding: 10px 15px;
  }
  
  .navbar-toggler {
      margin-right: 0;
  }
}

.primary-orange {
  color: var(--primary-orange);
  font-weight: 700;
}

.qrtext {
  font-family: "Manrope";
  font-size: 13px;
  line-height: 1.5;
  color: #0d2039;
  font-weight: 500;
}

@media (max-width: 991px) {
  .qrcard {
    width: 100%;
    justify-content: center;
    max-width: 350px;
    margin: 0 auto;
  }
}


.code{
  height: 170px;
background-color: #e6e8eb

}

/* Footer download */
