@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #012169;
  --secondary-color: #C8102E;
  --shade-black: #1a2332;
  --text-primary: #1a2332;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border-color: #e2e6ea;
  --bg-page: #f7f8fa;
  --bg-white: #ffffff;
  --transition: all 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-primary);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

.login-card {
  max-width: 500px;
  width: 100%;
}

.remove-stop-btn {
  margin-bottom: 5px;
}

.ride-info {
  border: 1px solid #ccc;
  /* add border to h6 */
  padding: 5px 10px;
  /* some spacing inside */
  display: inline-block;
  /* keep it tight around content */
  border-radius: 6px;
  /* optional rounded corners */
  margin-top: 10px;
}

.ride-info .first-ride {
  color: #e76b6b;
  font-weight: bold;
}

.ride-info .second-ride {
  color: #497cb3;
  font-weight: bold;
}

.iti {
  width: 100% !important;
}



/*** Icon Animation Start ***/
@keyframes icon-animat {
  0% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }

  25% {
    border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
  }

  50% {
    border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
  }

  75% {
    border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
  }

  100% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }
}

/*** Icon Animation End ***/

/* Navbar Styles */
.navbar {
  background-color: var(--bg-white);
  height: auto;
  padding: 12px 40px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.navbar-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.navbar-brand img {
  width: 22rem;
}

.navbar-toggler {
  border: 1px solid var(--border-color);
  font-size: 1.25rem;
  color: var(--text-primary);
  padding: 6px 10px;
  border-radius: 6px;
}

.navbar-toggler:focus,
.btn-close:focus {
  box-shadow: none;
  outline: none;
}

.nav-link {
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82em;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 8px 14px !important;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  visibility: hidden;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 70%;
  visibility: visible;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin-top: 8px;
}

.dropdown-item {
  color: var(--text-primary);
  padding: 10px 20px;
  font-size: 0.85em;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--bg-page);
  color: var(--secondary-color);
  border-radius: 0;
}

/* Button Styles */
.login-button {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  padding: 8px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
  cursor: pointer;
}

.login-button:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Top-Most Section */
.top-most {
  width: 100%;
  background: var(--primary-color);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  z-index: 1;
}

.top-most::before {
  display: none;
}

.social-icons,
.info-section {
  z-index: 3;
}

.social-icons .bx {
  padding-right: 14px;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.social-icons .bx:hover {
  color: #fff;
}

.info-section {
  display: flex;
  font-size: 0.78em;
  gap: 30px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* Hero Section */
.hero-section {
  /* background: url("../img/webp/banner2.webp") no-repeat top center; */
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  /* padding: 50px 0; */
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 100%),
        rgba(0, 0, 0, 0.4); */
  z-index: 1;
}

.hero-left,
.hero-right {
  z-index: 2;
  height: 100%;
  width: 100%;
  padding: 0 50px;
}

.hero-left h1 {
  font-size: 2em;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin: -20px 0 40px 0;
}

.hero-left p {
  font-weight: 300;
}

.hero-left img {
  width: 110%;
  margin-left: 200px;
}

.hero-right {
  padding-left: 100px;
}

.hero-right .form-container {
  background-color: #ffffff;
  display: flex;
  color: var(--shade-black);
  flex-direction: column;
  justify-content: space-between;
  width: 65%;
  /* height: 350px; */
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px 15px rgba(0, 0, 0, 0.5);
}

.hero-right .form-heading {
  font-weight: 800;
  font-size: 1.5em;
  font-family: 'Poppins', sans-serif;
}

.add-stop-btn {
  border: none;
  color: black;
  background-color: #e6e5e5;
  padding: 5px 10px !important;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.add-stop-btn:hover {
  background-color: #d1d1d1;
  color: black;
  transition: background-color 0.3s ease;
}

.add-stop-btn:active,
.add-stop-btn:focus {
  background-color: #bbbbbb;
  color: black;
  transition: background-color 0.3s ease;
}

.btn-find-now:hover {
  border: 1px solid black;
  background-color: rgb(53, 53, 53) !important;
}

.form-group label {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8em;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  padding-left: 10px;
}

.input-icon input[type="text"] {
  padding: 10px 0 10px 35px;
  font-size: 0.9em;
  border: 1px solid rgb(163, 163, 163);
  box-shadow: none;
}

.input-icon input[type="text"]:focus {
  border: 1px solid black;
}

/* About Us Section */

/*=============== CARD ===============*/
.card {
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  background: transparent;
  /* padding-block: 5.5rem; */
  /* min-height: 100vh; */
  z-index: 3;
  /* position: relative;
    top: -20px; */
  border-radius: 0;
  margin-top: 15px;
  margin-bottom: 15px;
}

.card__container {
  /* border: 1px solid red; */
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-inline: 1.5rem;
  justify-content: center;
  width: 100vw;
}

.card-body {
  padding: 25px;
}

.card__article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  /* pointer-events: none; */
  cursor: pointer;
}

.card__article {
  background-color: rgb(244, 255, 255);
  padding: 2.5rem;
  border: 1px solid #dcdcdc;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 15px hsla(235, 32%, 15%, 0.1);
  overflow: hidden;
  position: relative;
  max-width: 240px;
  width: 100%;
  cursor: pointer;
}

.card__article:hover .card__title {
  transform: translateY(-10px);
}

.card__article.heathrow {
  background: url(../img/webp/heathrow.webp) no-repeat;
  background-size: cover;
  background-position: center -120px
}

.card__article.gatwick {
  background: url(../img/webp/gatwick.webp) no-repeat;
  background-size: cover;
  background-position: center -120px
}

.card__article.stansted {
  background: url(../img/webp/stansted.webp) no-repeat;
  background-size: cover;
  background-position: center -120px
}

.card__article.luton {
  background: url(../img/webp/luton.webp) no-repeat;
  background-size: cover;
  background-position: center -120px
}

.card__article.city {
  background: url(../img/webp/city.webp) no-repeat;
  background-size: cover;
  background-position: left -120px
}

.card__article .airport-names {
  color: var(--primary-color);
  font-size: 1.8em;
  font-weight: 600;
  font-family: 'poppins', serif;
  padding-top: 20px;
}

.card__article .quick-button {
  border: 1px solid black;
  background-color: white;
  color: black;
  margin-top: 30px;
  width: 100%;
  font-weight: 500;
  font-family: 'poppins', serif;
  font-size: 0.8em;
  border-radius: 7px;

}

.card__article .quick-button:hover {
  background-color: var(--secondary-color);
  color: white;
  transition: 0.3s all ease;
  border: 1px solid var(--secondary-color);
}

.car_img {
  animation: float-img 5s ease-in-out infinite;
}

.card__img {
  width: 70px;
  margin-bottom: 1rem;
  animation: float-img 2.5s ease-in-out infinite;
}

.card__title {
  color: var(--title-color);
  font-size: 1em;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 1rem;
  transition: transform 0.5s ease-in-out;

}

.card__description {
  font-size: var(--normal-font-size);
}

.card__data {
  padding-top: 130px;
  position: relative;
  z-index: 10;
}

.card__shapes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  inset: 0;
  top: -3.5rem;
  z-index: 1;
}

.card__shape {
  display: block;
  width: 260px;
  height: 40px;
  background: var(--shape-gradient);
  border-radius: 4rem;
  transform: rotate(-24deg);
  opacity: 0;
}

.card__shape:nth-child(1) {
  animation-delay: 0.1s;
}

.card__shape:nth-child(2) {
  animation-delay: 0.2s;
}

.card__shape:nth-child(3) {
  animation-delay: 0.3s;
}

.card__shape:nth-child(4) {
  animation-delay: 0.4s;
}

.card__shape:nth-child(5) {
  animation-delay: 0.5s;
}

.card__shape:nth-child(6) {
  animation-delay: 0.6s;
}

.card__shape:nth-child(7) {
  animation-delay: 0.7s;
}

.card__shape:nth-child(8) {
  animation-delay: 0.8s;
}

.center-image-car {
  animation: float-img 2.5s ease-in-out infinite;
}

/* Animation img */
@keyframes float-img {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.75rem);
  }

  100% {
    transform: translateY(0);
  }
}

/* Animation shape */
.card__article:hover .card__shape {
  animation-name: shape-animate;
  animation-duration: 0.8s;
  animation-iteration-count: 2;
  /* infinite */
}

@keyframes shape-animate {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0.1;
  }

  40% {
    opacity: 0.3;
  }

  60% {
    opacity: 0.7;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .card__container {
    margin-inline: 1rem;
  }

  .card__article {
    padding: 1.5rem;
  }

  .card__img {
    width: 160px;
  }

  .card__title {
    font-size: 2rem;
  }
}

/* For medium devices */
@media screen and (min-width: 440px) {
  .card__article {
    max-width: 328px;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .card__container {
    gap: 2rem;
  }
}

/* Card section end */


/*** Features Start ***/
.text-primary {
  color: var(--secondary-color) !important;
}

h5,
h6 {
  font-family: 'Inter', sans-serif;
}

.feature {
  background: var(--bs-light);
}

.feature h1 {
  font-weight: 700;
  font-family: 'poppins', serif;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9em;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature .feature-item {
  display: flex;
  border-radius: 10px;
}

.feature .feature-item .feature-icon span {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--secondary-color);
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  ;
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Features End ***/

/*** Fact Counter Start ***/
.counter {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(31, 46, 78, 0.9)), url("../img/banner1.jpg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter h4 {
  font-family: 'poppins', serif;
  font-size: 1em;
}

.counter h1 {
  font-family: 'poppins', serif;
  font-weight: 500;
}

.counter-item {
  display: flex;
  width: 215px;
  align-items: center;

  padding-top: 15px;
}

.counter-item i {
  font-size: 1.5em;
}

.counter-item .counter-text {
  margin-right: -28px;
}

.counter-item .counter-text .counter-text-feedback {
  margin-right: -5px;

}

.counter .counter-item .counter-item-icon {
  margin-top: 5px;
  width: 60px;
  height: 60px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}


.btn-action {
  background-color: white;
  color: black;
  border: none;
  border-radius: 25px;
  padding: 15px 30px;
  font-family: 'poppins', serif;
  font-weight: 600;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.btn-action:hover {
  background-color: var(--secondary-color);
  color: white;
}

/*** Fact Counter End ***/


/*** Footer Start ***/
.footer {
  background: var(--primary-color);
  padding: 0 40px;
}

.footer .footer-item a {
  line-height: 30px;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.82em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer .footer-item p {
  line-height: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', sans-serif;
  font-size: 0.82em;
}

.footer h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 0.3px;
}

.footer h6 {
  color: white !important;
}

.footer .footer-item a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: var(--transition);
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary) !important;
}

.btn-secondary {
  background-color: var(--secondary-color) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  background: #010e2a;
  font-size: 0.8em;
  font-family: 'Inter', sans-serif;
}

.copyright a {
  text-decoration: none !important;
}

/*** copyright end ***/


/*** About Start ***/
.about .about-item .about-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
}

.about h1 {
  font-weight: 700;
  font-family: 'poppins', serif;

}

.about .about-item .about-item-inner .about-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: linear-gradient(to left, var(--secondary-color), #ff607b);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.about .about-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;

}

.about .about-img .img-1 {
  height: 85%;
  margin-right: 50px;
}

.about .about-img .img-2 {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  padding-left: 50px;
  border-radius: 10px;
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 98%;
  top: 0;
  right: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  z-index: -1;
}

.about .about-item .text-item {
  position: relative;
  padding-left: 25px;
}

.about .about-item .text-item::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
}

.btn-primary {
  background-color: var(--primary-color) !important;
}

/*** About End ***/


/* Registration start */

.perfect-veh-title {
  font-family: 'poppins', serif;
  font-weight: 600;
}

.car-items img {
  width: 80%;
}

.registration {
  padding-bottom: 50px;
}

.reg-details img.hire_logo {
  width: 120px;
}

.reg-details img.payment_types {
  width: 200px;
}

.reg-details p {
  border: 1px solid rgb(19, 8, 175);
  padding: 15px 25px;
  border-radius: 25px;
  font-family: 'poppins', serif;
  font-weight: 500;
  width: 30%;
  font-size: 0.8em;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  background-color: #5b6ba8;
  color: white;
}

.registration figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Registration end */

/* Media Queries */
@media (max-width: 4096px) {
  .li_login-button {
    display: none;
  }
}



@media (max-width: 1617px) {
  .li_login-button {
    display: none;
  }

  /* .card {
        height: 100vh;
    }

    .card__container {
        grid-template-columns: repeat(3, 328px);
        column-gap: 2rem;
    } */

  .card__article {
    max-width: 240px;
  }
}

@media(max-width:1400px) {
  .emergency-container {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .need-pickup-container {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .need-pickup-container p {
    text-align: justify;
  }
}

@media (max-width: 1241px) {
  .navbar-brand img {
    width: 19rem !important;
  }

  .nav-link {
    margin: 0 0 !important
  }
}


@media (max-width: 1200px) {
  .hero-right {
    padding: 0 !important;
    width: 100% !important;
  }

  .form-container {
    width: 70% !important;
  }

  .hero-left img {
    width: 100%;
    margin-left: 0;
  }

  .call-now-container {
    display: flex;
    justify-content: center
  }

  .emergency-container {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .need-pickup-container {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .need-pickup-container p {
    text-align: justify;
  }

  /* .card {
        height: 100vh;
    }

    .card__container {
        grid-template-columns: repeat(3, 328px);
        column-gap: 2rem;
    } */
}

@media (max-width: 991px) {
  .info-section {
    display: none;
  }

  .top-most {
    display: flex;
    justify-content: center;
  }

  /* .card {
        height: 100vh;
    }

    .card__container {
        grid-template-columns: repeat(3, 328px);
        column-gap: 2rem;
    } */

  .call-now-container {
    display: flex;
    justify-content: center
  }

  .emergency-container {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .navbar-brand img {
    width: 20rem !important;
  }

  .li_login-button {
    display: block;
  }

  .login-btn-container {
    display: none;
  }

  .text-area {
    font-size: 1em;
    padding: 0 30px;
  }

  .text-area p,
  .text-area h1 {
    text-align: center;
  }

  .navbar {
    padding: 0 !important;
  }

  .navbar-brand img {
    width: 100px;
    margin-left: 10px;
  }

  .text-area {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
  }

  .hero-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 50px 0;
  }

  .hero-left {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .hero-left img {
    margin: 0;
    width: 75vw;
  }

  .hero-right {
    padding: 60px 0 !important;
  }

  .form-container {
    width: 70% !important;
  }
}

@media (max-width: 768px) {
  /* .card__container {
        grid-template-columns: 328px;
    } */

  /* .card__container {
        grid-template-columns: repeat(2, 328px);
        column-gap: 2rem;
    } */
  .navbar-brand img {
    width: 20rem !important;
  }

  .top-most {
    padding-left: 50px;
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }

  .perfect-heading {
    padding: 0 30px;
    text-align: center;
  }

  .perfect-heading h2 {
    display: block !important;
    text-align: center;
    font-size: 1.3em;
  }

  .car-items figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .registration .row {
    display: flex;
    flex-direction: column;
    gap: 30px
  }

  .reg-details {
    display: flex;
    flex-direction: column;
    padding-bottom: 100px !important;
  }

  .reg-details p {
    width: 90%;
  }

  .footer-quick-links {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 576px) {

  /* .card__container {
        margin-inline: 1rem;
      }
      .card__article {
        padding: 1.5rem;
      }
      .card__img {
        width: 160px;
      }
      .card__title {
        font-size: 2rem;
      } */
  /* .top-most{
        padding-left: 30px;
      } */
  .min-vh-100 {
    min-height: 60vh !important;
  }

  .login-card {
    width: unset !important;
  }

  .pricing-card {
    display: block !important;
  }

  .book-btn {
    float: unset !important;
  }

  .card__article {
    max-width: 310px;
  }

  .footer {
    padding-left: 10px !important;
  }

  .card__container {
    display: flex;
    gap: 5rem;
    width: unset;
  }

  .top-most {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px 0;
  }

  .navbar-brand img {
    width: 15rem !important;
  }

  .info-section {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .form-container {
    width: 80% !important;
  }

  .need-pickup-container h1,
  .need-pickup-container p {
    text-align: center;
  }

  .icons-container {
    padding-bottom: 50px;
    /* display: flex;
        flex-direction: column;
        align-items: center; */
  }

  .footer-quick-links {
    display: flex;
    flex-direction: column;
  }

  .footer-quick-links .col {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 40px
  }

  .perfect-heading {
    padding: 0 30px;
    text-align: center;
  }

  .perfect-heading h2 {
    display: block !important;
    text-align: center;
    font-size: 1.3em;
  }

  .car-items figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .registration .row {
    display: flex;
    flex-direction: column;
    gap: 30px
  }

  .reg-details {
    display: flex;
    flex-direction: column;
    padding-bottom: 100px !important;
  }

  .reg-details p {
    width: 90%;
  }

  .menu-log {
    display: none !important;
  }


}

@media (max-width: 430px) {}

/* @media only screen and (max-width: 768px) {
    .login-button{
        display: none!important;
    }
} */

/* MODEL */

.modal-title,
.modal-body,
.modal-body label,
.modal-body input {
  font-family: 'Roboto';
  font-size: 0.9em;
}

.modal-body input {
  font-weight: 600;
}

/* FLAT PICKER */
.flatpickr-day.flatpickr-disabled {
  color: #dfdfdf !important;
}

.flatpickr-day.nextMonthDay {
  color: #a8a8a8 !important;
}

.flatpickr-day {
  font-weight: 500 !important;
}

.arrowUp,
.arrowDown {
  opacity: 100% !important;
}

/* ERROR MESSAGE */
.error-signup {
  color: red;
  font-weight: 400;
  font-size: 0.75em;
  font-family: 'poppins';
}

.navbar-expand-lg {
  border-bottom: 2px solid var(--secondary-color);
}

/* Base styles */
.custom-tabs .nav-link {
  font-weight: 600;
  text-transform: uppercase;
  color: #343a40;
  padding: 0.75rem 1.5rem;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

/* Active tab */
.custom-tabs .nav-link.active {
  color: #d71a28;
  /* Red from logo */
  border-bottom: 3px solid #d71a28;
  background-color: #fff;
}

/* Hover effect */
.custom-tabs .nav-link:hover {
  color: #d71a28;
  background-color: #f8f9fa;
  border-bottom: 3px solid #d71a28;
}

/* Optional: spacing below the tab */
.custom-tabs {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #dee2e6;
}

.custom-tabs .bi {
  font-size: 1rem;
  vertical-align: middle;
  margin-left: -22px;
}

.wallet-section .card {
  border-radius: 1rem;
}

.wallet-section .btn-danger {
  border-radius: 0.5rem;
  font-weight: 500;
}

.wallet-section .card-body h6 {
  font-size: 0.9rem;
  font-weight: 500;
}

.wallet-section .card-body h4,
.wallet-section .card-body h3 {
  font-weight: 700;
}

.card-header h5 {
  font-weight: 600;
}

img.rounded-circle {
  object-fit: cover;
}

.he-icon {
  color: #87193e;
  margin-left: 10px;
}

.bg-primary {
  background-color: #012169 !important;
}

.icons span {
  color: #0d1f54;
}