body {
  font-family: 'Poppins', sans-serif;
}
.main-btn {
  width: 192px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.main-btn {
  width: 192px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;   /* Default black */
  color: #fff;              /* White text */
  border: none;
  transition: all 0.3s ease;
}

/* ✅ Hover effect */
.main-btn:hover {
  background-color: #FEDB08 !important;  /* Yellow */
  color: #000 !important;                /* Black text */
}

/* 🔹 Optional: image (icon) styling */
.login-icon {
  filter: brightness(0) invert(1); /* white icon on black bg */
  transition: filter 0.3s ease;
}

/* ✅ On hover: make icon black */
.main-btn:hover .login-icon {
  filter: brightness(0); /* turns icon black on yellow bg */
}

.custom-btn {
  background-color: #FEDB08;     /* Yellow */
  width: 190px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #000 !important;        /* Black text */
  border: none !important;
  box-shadow: none !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ✅ Hover effect (now works correctly) */
.custom-btn:hover {
  background-color: #000 !important;  /* Black background */
  color: #fff !important;             /* White text */
}

/* 🔹 Icon styles */
.download-icon {
  filter: brightness(0); /* dark icon on yellow */
  transition: filter 0.3s ease;
}

/* ✅ Icon color turns white on hover */
.custom-btn:hover .download-icon {
  filter: brightness(0) invert(1);
}

/* 🔹 Button Style */
.download-btn {
  background-color: #FEDB08;   /* Yellow background */
  color: #000 !important;      /* Black text */
  width: 192px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 🔹 Hover Effect */
.download-btn:hover {
  background-color: #000 !important; /* Turn black */
  color: #fff !important;            /* Text white */
}

/* 🔹 Icon Style */
.download-btn-icon {
  filter: brightness(0); /* dark icon initially */
  transition: filter 0.3s ease;
}

/* ✅ Icon turns white on hover */
.download-btn:hover .download-btn-icon {
  filter: brightness(0) invert(1);
}

.main-image {
  margin-top: 20px;
  width: 100%;           /* full width (responsive) */
  height: auto;           /* maintain aspect ratio */
  display: block;         /* remove small gaps below image */
  object-fit: cover;      /* ensures image covers its box if height is fixed */
  border-radius: 10px;    /* optional: rounded corners */
}

/* 🟢 Apply only on medium (≥768px) and large (≥992px) screens */
@media (min-width: 992px) {
  .big-title {
    font-size: 70px;
    margin-bottom: 10px ;
    line-height: 0.7;
    font-weight: 500;
  }

  .big-title-1 {
    font-size: 70px;
    font-weight: 500;
  }
}


.color{
  color: #FEDB08;
}
.banner-button {
  width: 166px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #fff !important;          /* white text */
  background-color: #000;          /* black background */
  border: none !important;
  box-shadow: none !important;
  text-decoration: none;
  transition: all 0.3s ease;       /* smooth hover */
}

/* 🔹 Hover Effect */
.banner-button:hover {
  background-color: #FFD700 !important; /* yellow background */
  color: #000 !important;               /* black text */
}

.banner-button img {
  filter: brightness(0) invert(1);      /* white icon */
  transition: filter 0.3s ease;
}

/* 🔹 Change icon to black on hover */
.banner-button:hover img {
  filter: brightness(0); /* makes icon black */
}

.section-title {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 0.5px;
  background-color: gray;
  transform: translateY(-50%);
  width: 150px; /* Default width for medium screens */
}

/* Left line */
.section-title::before {
  left: -170px;
}

/* Right line */
.section-title::after {
  right: -170px;
}

/* 🔹 For large screens */
@media (min-width: 992px) {
  .section-title::before,
  .section-title::after {
    width: 200px;
  }

  .section-title::before {
    left: -220px;
  }

  .section-title::after {
    right: -220px;
  }
}

/* 🔹 For small screens */
@media (max-width: 576px) {
  .section-title::before,
  .section-title::after {
    width: 80px;
  }

  .section-title::before {
    left: -100px;
  }

  .section-title::after {
    right: -100px;
  }
}

/* 🔹 Main Card */
.howit-card {
  background-color: #000;
  border-bottom: 10px solid #FEDB08; /* yellow border */
  border-radius: 20px;
  padding: 35px 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #fff; /* white text */
}

/* 🔹 Hover Effect */
.howit-card:hover {
  transform: translateY(-5px);
  background-color: #FEDB08; /* yellow bg */
  color: #000; /* black text */
  border-bottom-color: #000; /* black border on hover */
}

/* 🔹 Change heading & paragraph color on hover */
.howit-card:hover h5,
.howit-card:hover p {
  color: #000 !important;
}

/* 🔹 Change icon color (make it dark) */
.howit-card:hover img {
  filter: brightness(0);
}

/* 🔹 Number Shape (top-right corner) */
.howit-number {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  width: 50px;
  height: 40px;
  border-bottom-left-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔹 Responsive adjustments for small screens */
@media (max-width: 576px) {
  .howit-card,
  .howit-card-03 {
    width: 100% !important;       /* Full width */
    max-width: 100%;              /* Ensure no limit */
    padding: 25px 20px;
    margin: 0 auto 20px auto;     /* Center + space below */
    display: block;               /* Ensures proper centering */
  }

  .howit-number {
    width: 45px;
    height: 35px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .mt-mobile-2 {
    margin-top: 0.5rem !important; /* same as Bootstrap mt-2 */
  }
}
.custom-icon-size {
  font-size: 60px;   /* makes icon large */
  width: 60px;
  height: 60px;
  line-height: 60px; /* centers the icon vertically */
}
.form-control {
  height: 51px;
  border: none !important;               /* Remove all borders */
  box-shadow: none !important;           /* Remove Bootstrap glow */
  outline: none !important;              /* Remove focus outline */
  transition: border 0s, box-shadow 0s;  /* Disable transition flicker */
}

.form-control:focus {
  border: 2px solid #FEDB08 !important;  /* Yellow border instantly */
  box-shadow: none !important;           /* No shadow */
  outline: none !important;              /* No outline */
}



.form-btn{
  height: 51px;
  background-color: #FEDB08;
  border: none;
}

/* 🔹 Optional yellow version (03) */
.howit-card-03 {
  background-color: #FEDB08;
  border-bottom: 10px solid #000;
  border-top: 1px solid white;
  border-radius: 20px;
  padding: 35px 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.howit-card-03:hover {
  transform: translateY(-5px);
  background-color: #000;
  color: #fff;
  border-bottom-color: #FEDB08; /* turn border yellow on hover */
}

.howit-card-03:hover h5,
.howit-card-03:hover p {
  color: #fff !important;
}

.howit-card-03:hover img {
  filter: brightness(0) invert(1); /* make icon white */
}
.howit-icon-yellow {
  /* 🎨 Converts image color to #FEDB08 */
  filter: brightness(0) saturate(100%) invert(83%) sepia(94%) saturate(633%) hue-rotate(358deg) brightness(104%) contrast(102%);
}


.services-title {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #000;
}

/* 🔹 Only right-side line */
.services-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -220px;        /* spacing from text */
  width: 200px;         /* line length */
  height: 1px;
  background-color: gray;
  transform: translateY(-50%);
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
  .services-title::after {
    width: 120px;
    right: -140px;
  }
}

@media (max-width: 576px) {
  .services-title::after {
    width: 60px;
    right: -80px;
  }
}
.bg-color{
  background-color: #F6F6F6;
}
.set-image {
  width: 450px;           /* Desktop default */
  height: auto;
  height:445px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

/* 🔹 Mobile screens (max-width 768px) */
@media (max-width: 768px) {
  .set-image {
    width: 100%;  
    height: auto;        /* Full width on mobile */
  }
}

.custom-driver-btn {
  background-color: white;
  color: black;
  border: none;
}
.custom-driver-btn:hover {
  background-color: #222; /* optional hover effect */
}
.bg-button-color {
  background-color: #FFD700;    /* Gold color */
  width: 100%;
  max-width: 352px;             /* Maintain max width for large screens */
  height: 114px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;               /* Centers the box horizontally */
}

@media (max-width: 576px) {
  .bg-button-color {
    width: 90%;                 /* Shrinks width for mobile */
    height: auto;               /* Auto height for smaller screens */
    padding: 15px;
  }
}


.testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slider .card {
  flex: 0 0 100%; /* full width */
  margin-right: 0;
  border:1px solid white;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  background: #fff;
  padding: 20px;
}

/* Mobile same as desktop */
@media (max-width: 768px) {
  .testimonial-slider .card {
    flex: 0 0 100%;
  }
}












.bg-section-color {
  background-color: #FFD700;
  overflow: visible !important;
  padding-bottom: 40px;
}

/* ✅ Only large screens (≥992px) */
@media (min-width: 992px) {
  .bg-section-color {
    margin-top: 100px;
  }
}

/* 🔹 Image settings */
.move-up-img {
  position: relative;
  top: -20%;
  width: auto;
  height: 250px;
  max-width: 70%;
  object-fit: contain;
  z-index: 5;
  transition: top 0.3s ease;
}

/* 🔹 Responsive adjustments */
@media (max-width: 992px) {
  .move-up-img {
    top: -15%;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .move-up-img {
    position: relative;
  top: -20%;
  

    height: 200px;
  }
  .bg-section-color {
    margin-top: 50px;
  }
}

@media (max-width: 576px) {
  .move-up-img {
    position: relative;
     top: -62px;
    height: 180px;
    max-width: 90%;
  }
}
.download-heading{
  position: relative;
    top: -22%;
}
.download-heading-1{
  position: relative;
    top: -18%;
}
.download-heading-2{
  position: relative;
    top: -13%;
}
.custom-btn-2 {
  background-color: white;
  width: auto;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #000 !important;      /* black text */
  border: none !important;
  box-shadow: none !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-btn-2:hover {
  background-color: white !important;
  color: #000 !important;
}

.footer-bg-color{
   background-color: #FFD700;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: white;
  background-color: transparent;
  text-decoration: none;
  font-size: 18px;
}

.social-icon:hover {
  background-color: #FFD700; /* 🟡 yellow on hover */
  color: #000;               /* black icon on hover */
}
