:root {
    --primary-bg: #ffffff; /* Changed to light */
    --primary-color: #F59E0B;
    --secondary-text: #bfbfbf;
    --gold-hover: #c19c2f;
    --secondary-bg: #F59E0B; 
    --primary-background:#fff;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --accent-color: #ff6b00;
    --light-gray: #f5f5f5;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    
  --footer-border: #333333;
    --nav-text: #F59E0B;  /* Soft gold */
    --nav-hover: #c19c2f;
    --font-family-base: "PT Serif", serif;
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-md: 1rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --line-height-xl: 3.5rem; /* 56px */
    --line-height-md: 2.5rem; /* 40px */
    --font-weight-bold: 700;
  }

  body{
    overflow-x: hidden;
  }
  *{
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   
  }
  .gold-color {
    color: var(--nav-text);
  }
  
  .navbar-blackgold {
    background-color: var(--primary-background);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Softer shadow */
  }
  
  .navbar-blackgold .nav-link {
    color: var(--nav-text) !important;
    font-size: 16px;
    font-weight: 600;
    margin-right: 1rem;
    transition: color 0.3s ease;
    font-family: var(--font-family-base);
  }
  
  .navbar-blackgold .nav-link:hover,
  .navbar-blackgold .nav-link:focus {
    color: var(--nav-hover) !important;
  }
  
  .navbar-blackgold .navbar-toggler {
    border: none;
  }
  
  .navbar-blackgold .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='goldenrod' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .uk-brand {
    font-size: 0.9rem; /* Smaller size */
    font-family: 'Courier New', Courier, monospace; /* Different font family */
    color: var(--gold-hover); /* Slightly darker gold */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 6px;
    font-weight: 500;
    vertical-align: top;
  }
  
/* .................................................. */
  
/* ................................................. */


/* Hero */
.hero-container {
    width: 100%;
    /* height: 90vh; */
    height: fit-content;
    position: relative;
    overflow: hidden;
  }
  
  .hero-image {
    width: 100%;
     height: 70vh !important; 
    display: block;
    object-fit: cover;
  }
  
  .booking-card {
    margin-top: 80px;
    background-color: #fff;
    border-radius: 12px;
    z-index: 10;
  }
  .form-position{
    position: absolute  !important;
  }
  /* Form Group Styling */
  .form-group {
    background: #f0f2f7 !important;
    min-height: 70px; /* Ensures uniform height */
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #dee2e6;
  }
  
  /* Inputs and Selects */
  input.form-control,
  select.form-select {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
  }
  
  /* Placeholder Styling */
  input::placeholder,
  select::placeholder {
    color: #adb5bd;
    font-weight: 400;
  }
  
  /* Icon styling */
  .form-group i {
    font-size: 1.2rem;
    color: #6c757d;
  }
  
  /* Label Styling */
  .form-label {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: #212529;
  }
  /* Form adjustments for different screen sizes */
  @media (max-width: 576px) {
    .booking-card {
      padding: 1rem; 
    }
  
    .form-group {
      flex-direction: column; 
    }
  
    .form-group i {
      margin-bottom: 0.5rem; 
    }
  
    .btn-yellow {
      font-size: 1.2rem; 
    }
    .form-position{
      position: relative  !important;
    }
  }
  
  @media (min-width: 577px) and (max-width: 768px) {
    .booking-card {
      padding: 1.5rem; 
    }
  
    .btn-yellow {
      font-size: 1.1rem; 
    }
  }
  
  @media (min-width: 769px) {
    .booking-card {
      padding: 2rem;
    }
  
    .btn-yellow {
      font-size: 1rem;
    }
  }
  /* Button Styles */
  .btn-yellow {
    color: #fbfbfd !important;
    line-height: 28px !important;
    font-size: 18px;
    height: 50px;
    text-align: center;
    background: linear-gradient(to right, #F59E0B, #f8b747c0);
    padding: 0 32px !important;
    transition: all 0.3s ease;
  }
  
  .btn-yellow:hover {
    background: linear-gradient(to right, #f8b747c0, #F59E0B);
   
  }
  
  /* Tab Button */
  .nav-tabs .nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--deci);
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .nav-tabs .nav-link:hover{
    color: var(--deci);
  }
  .nav-tabs .active{
    background-color: var(--nav-text) !important;
  }
  /* Responsive spacing if needed */
  @media (max-width: 400px) {
    .form-group {
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
    }
    .navbar-brand h1 {
      font-size: 14px !important;
    }
  
    .form-group i {
      margin-bottom: 0.5rem;
    }
  }
  @media (max-width: 576px) {
    .form-group {
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
    }
    .navbar-brand h1 {
      font-size: 16px !important;
    }
  
    .form-group i {
      margin-bottom: 0.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .form-position {
        position: relative !important;
        margin-top: -617px;
        transform: translate(-7%, -45%);
        padding-bottom: 20px;
    }
  }
  /* For iPad / Tablets */
@media (min-width: 767px) and (max-width: 1025px) {
  .form-position {
    position: absolute !important;
    top: 55%;                 
    left: 50%;                
    width: 90%;               
    z-index: 10;
    margin-top: 5px;
  }

  .booking-card {
    margin-top: 0%;
    margin-bottom: 0%;            
  }
}


  input::-webkit-calendar-picker-indicator {
    display: none !important;
    -webkit-appearance: none;
  }
  input[type="date"],
  input[type="time"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  /*choose us  */
  .deck-card img{
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 10px;
  }

  /* cars sections */

  .our-cars-section {
    background-color: var(--secondary-bg);
  color: #1E293B;
  }
  
  .our-cars-section h2 {
    color: #FBBF24;
  }
  
  .car-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease;
  }
  
  .car-card:hover {
    transform: translateY(-55px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);

  }
  
  .small-icons span {
    font-size: 14px;
    color: #444;
    background: #eee;
    padding: 6px 12px;
    border-radius: 12px;
  }
  
  .animate-fade {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .gold-color {
    color: var(--nav-text);
  }
  /* testimonial */
  
  .testimonial-section {
    background-image: url('https://images.unsplash.com/photo-1611175694985-03746e416240?auto=format&fit=crop&w=1470&q=80'); /* Change to your image */
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .z-2 {
    z-index: 2;
  }
  
  .testimonial-swiper {
    overflow: hidden; 
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; 
    padding: 20px;
  }
  
  .testimonial-text {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 15px; 
  }
  
  .testimonial-author {
    font-size: 1rem;
    color: #888
  }
  /* cities */

  .city_prices_landing {
    background-color: var(--primary-bg);
  }
  
  .city_prices_landing h2,
  .city_prices_landing h3 {
    color: var(--primary-color);
  }
  
  .city_prices_landing .title {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 56px;
    font-size: 44px;
    letter-spacing: .15px;
  }
  
  @media(max-width: 768px) {
    .city_prices_landing .title {
      font-size: 32px;
      line-height: 40px;
    }
  }
  
  .see-all {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
  }
  
  .city-img {
    width: 100%;
    min-height: 200px;
    max-height: 200px; /* or whatever fixed height fits your design */
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  
  .city-card {
    /* background: #fff; */
    transition: transform 0.3s ease;
  }
  
  .city-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Softer shadow */
  }
  
  .glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .glass-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .btn-glass{
    background: var(--secondary-bg) !important;
    color: var(--primary-bg) !important;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
  }
  
  .btn-glass:hover {
    background: #444;
  }
  /* footer */
  
/* Footer */
.footer {
  background-color: var(--primary-bg);
  color: var(--primary-color);
  padding: 30px 20px 10px;
  font-family: var(--font-family-base);
  font-size: var(--font-sm);
}

.footer h5 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: var(--font-md);
  margin-bottom: 1rem;
}
.footer h5 :hover{
  color: var(--nav-hover);
}

.footer a {
  color: black;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: var(--font-sm);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--footer-hover);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-top: 20px;
  font-size: var(--font-sm);
  color: var(--secondary-text);
}

.footer-bottom a {
  margin-right: 15px;
  color: var(--secondary-text);
}

.footer-bottom a:hover {
  color: var(--footer-hover);
}

.social-icons i {
  font-size: 18px;
  margin-right: 15px;
  color: var(--secondary-text);
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: var(--footer-hover);
}

.hr-line {
  border-top: 1px solid var(--footer-border);
  margin-top: 30px;
  padding-top: 20px;
}

.new-badge {
  background-color: var(--primary-color);
  color: var(--primary-bg);
  padding: 2px 8px;
  font-size: var(--font-xs);
  font-weight: 700;
  border-radius: 4px;
  margin-left: 6px;
}

.brand-title {
  font-size: var(--font-xl);
  color: var(--primary-color);
  font-weight: 700;
}

.help-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: var(--font-sm);
}

@media (max-width: 768px) {
  .footer h5 {
    font-size: var(--font-sm);
  }

  .footer a {
    font-size: var(--font-xs);
  }

  .brand-title {
    font-size: var(--font-lg);
  }
}
/* about-hero */
.about-hero-section {
  height: 100vh;
  background: url('./assets/orange-mercedes.jpg') no-repeat center center;
  background-size: cover; 
  position: relative;
}

.overlay-content {
  background: rgba(0, 0, 0, 0.4); 
  padding: 2rem;
  border-radius: 1rem;
  max-width: 700px;
}

@media (max-width: 768px) {
  .about-hero-section {
    background-size: cover !important;
    height:350px;
  }

  .overlay-content {
    padding: 1.5rem;
  }
}

@media (max-width: 1028px) {
  .about-hero-section {
    background-size: cover !important;
    height:450px;
  }

  .overlay-content {
    padding: 1.5rem;
    align-items: center;
  }
}

/* about us */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}
.contact-section  .contact-card i:hover {
  color: #fff;
}
.contact-card {
  background-color: #fff;
  border-radius: 1.5rem;
  border: 1px solid #dee2e6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  background-color: #f1f3f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color:  var(--nav-text);
  transition: all 0.3s ease;
}

.contact-card:hover .icon-wrap {
  background-color: var(--nav-text);
  color: #fff;
}

.contact-link {
  color: var(--nav-text);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-link:hover {
  color: var(--nav-hover);
  text-decoration: underline;
}
.info-box {
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.info-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.text-gold{
  color: var(--nav-text);
}

/* contact  us page */
.contact-glass-section {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: #fff;
}

.contact-modern-section .form-control {
  border: 2px solid var(--nav-text) !important;
  padding: 5px 10px;
}

.contact-modern-section .form-control:focus {
  border-color: #d4af37 !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
  background-color: transparent;
}

/* .btn-gold {
  background-color:var(--nav-text) !important;
  color: white !important;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-gold:hover {
  background-color: #caa832;
  color: #fff;
} */

.contact-hero {
  background: url('./assets/girl-having-online-class-her-tablet.jpg') no-repeat center/cover;
  color: white;
  padding: 160px 0;
  text-align: center;
}
.contact-card i {
  font-size: 2rem;
  color: #d4af37;
}
/* sign in */
.login-form .card{
  border: none !important;
  /* margin-top: 120px; */
}
.login-form{
  margin-top: 120px;
}

.auth-footer{
  background-color: var(--nav-text) ;
} 
/* Shared styling for inputs and selects */
.login-form .form-control,
.login-form .form-select {
  border: 2px solid var(--nav-text) !important;
  padding: 5px 10px;
  background-color: transparent;
  color: inherit;
}

/* Focus state */
.login-form .form-control:focus,
.login-form .form-select:focus {
  border-color: #d4af37 !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
  background-color: transparent;
}

/* Optional: Set placeholder text color (like "Select From") */
.login-form select option:first-child {
  color: #888; /* Light gray for the 'Select' option */
}

/* Date input icon color (WebKit-based browsers like Chrome) */
/* This targets the calendar icon in date inputs (Chrome, Safari, Edge) */
.login-form input[type="date"] {
  -webkit-appearance: menulist !important; /* restore dropdown arrow in WebKit */
  appearance: menulist;
  background-color: transparent;
  border: 2px solid var(--nav-text) !important;
  padding: 5px 10px;
  color: inherit;
  pointer-events: auto;
  z-index: 1;
}

/* booking page */
.booking-section {
  background: linear-gradient(135deg, #c19c2f, #b21f1f, #fdbb2d);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.booking-container {
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
.booking-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  /* margin-top: 4%; */
}
@media (max-width: 768px){
.booking-card {
  margin-top: 4%;
}
}

.car-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.car-card:hover {
  transform: translateY(-5px);
}
.car-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;
}
.car-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.car-image:hover {
  transform: scale(1.05);
}
.car-details {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
}
.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.detail-item:last-child {
  border-bottom: none;
}
.price-tag {
  background: #F59E0B;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  margin: 15px 0;
}
.price-amount {
  font-size: 2rem;
  font-weight: bold;
}
.price-label {
  font-size: 0.9rem;
  opacity: 0.9;
}
.select-car-btn {
  background: #F59E0B;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}
.select-car-btn:hover {
  background: #e08e00;
  transform: translateY(-2px);
}
.booking-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}
.form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #eee;
}
.form-control:focus {
  border-color: #1a2a6c;
  box-shadow: 0 0 0 0.2rem rgba(26, 42, 108, 0.25);
}
.btn-book {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.booking-info-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.info-row:last-child {
  border-bottom: none;
}
.info-label {
  color: #666;
  font-weight: 500;
}
.info-value {
  font-weight: 600;
  color: #333;
}
.search-summary {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.car-option-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.car-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.car-rating {
  background: #F59E0B;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.car-content {
  display: flex;
  gap: 25px;
}
.car-image-section {
  flex: 1;
}
.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.feature-tag {
  background: #f0f4f8;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.car-details-section {
  flex: 2;
}
.details-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.tab-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tab-btn.active {
  background: #F59E0B;
  color: white;
}
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-content.active {
  display: block;
}
.reviews-container {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 10px;
}
.review-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.review-author {
  font-weight: 600;
}
.review-date {
  color: #666;
  font-size: 0.9rem;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.service-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-icon {
  width: 30px;
  height: 30px;
  background: #F59E0B;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.btn-modify {
  background: #F59E0B;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
}
.btn-cancel {
  background: #dc3545;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
}
.review-stars {
  color: #F59E0B;
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
}
.star-icon {
  font-size: 1.1rem;
}
.star-icon.filled {
  color: #F59E0B;
}
.star-icon.empty {
  color: #ddd;
}
.booking-details-edit {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}
.modify-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.modify-header i {
  font-size: 1.5rem;
  color: #F59E0B;
}
.modify-header h5 {
  margin: 0;
  font-weight: 600;
}
.booking-details-edit .form-group {
  margin-bottom: 20px;
}
.booking-details-edit .form-group label {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  display: block;
}
.booking-details-edit .form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
}
.booking-details-edit .form-control:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}
.booking-details-edit .form-control::placeholder {
  color: #999;
}
.booking-details-edit .date-time-group {
  /* grid-template-columns: 1fr 1fr;
  gap: 15px; */
}
.booking-details-edit .form-actions {
  
  gap: 15px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.btn-save {
  background: #F59E0B;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  flex: 1;
  transition: all 0.3s ease;
}
.btn-save:hover {
  background: #e08e00;
  transform: translateY(-2px);
}
.btn-cancel-modify {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #ddd;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-cancel-modify:hover {
  background: #e9ecef;
  color: #333;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Review Form Styles */
.review-form {
  background: var(--primary-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.review-form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.review-form-header i {
  font-size: 1.5rem;
  color: var(--nav-text);
}

.review-form-header h5 {
  margin: 0;
  font-weight: 600;
  color: var(--nav-text);
}

.review-form .form-group {
  margin-bottom: 1.5rem;
}

.review-form label {
  font-weight: 500;
  color: var(--nav-text);
  margin-bottom: 0.5rem;
  display: block;
}

.review-form .form-control {
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.review-form .form-control:focus {
  border-color: var(--nav-text);
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

.review-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.rating-stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rating-stars .star {
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rating-stars .star:hover,
.rating-stars .star.active {
  color: var(--nav-text);
}

.review-form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.btn-submit-review {
  background: var(--nav-text);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-submit-review:hover {
  background: var(--nav-hover);
  transform: translateY(-2px);
}

.btn-cancel-review {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #ddd;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cancel-review:hover {
  background: #e9ecef;
  color: #333;
}

/* Review Form Responsive */
@media (max-width: 768px) {
  .review-form {
    padding: 1.5rem;
  }

  .review-form-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .review-form-actions {
    flex-direction: column;
  }

  .btn-submit-review,
  .btn-cancel-review {
    width: 100%;
  }
}

/* Remove any existing date picker styles that might conflict */
.date-picker,
input[type="date"],
input[type="text"].date-picker {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--nav-text);
  font-family: var(--font-family-base);
  width: 100%;
  cursor: pointer;
}

.date-picker:focus,
input[type="date"]:focus,
input[type="text"].date-picker:focus {
  outline: none;
  box-shadow: none;
}

.date-icon {
  cursor: pointer;
  transition: color 0.3s ease;
}

.date-icon:hover {
  color: var(--nav-text);
}

/* Ensure Flatpickr calendar is visible */
.flatpickr-calendar {
  background: var(--primary-bg);
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999 !important;
}

.flatpickr-day.selected {
  background: var(--nav-text);
  border-color: var(--nav-text);
}

.flatpickr-day:hover {
  background: rgba(245, 158, 11, 0.1);
}

.flatpickr-months .flatpickr-month {
  background: var(--primary-bg);
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: var(--nav-text);
}

.flatpickr-weekday {
  color: var(--nav-text);
}

.flatpickr-day {
  color: var(--nav-text);
}

.flatpickr-day.today {
  border-color: var(--nav-text);
}

/* Ensure form groups don't interfere with date picker */
.form-group {
  position: relative;
}

/* Remove any conflicting styles from form controls */
.form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Ensure date picker is visible in modal */
.modal .flatpickr-calendar {
  z-index: 9999 !important;
}

/* Booking Form Styles */
.booking-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.booking-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.booking-form .form-control,
.booking-form .form-select {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 0.75rem 1rem;
  color: var(--nav-text);
  transition: all 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--nav-text);
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

.booking-form .input-group-text {
  background: transparent;
  border: none;
  color: var(--nav-text);
  font-size: 1.1rem;
}

.booking-form .form-check-input:checked {
  background-color: var(--nav-text);
  border-color: var(--nav-text);
}

.booking-form .form-check-label {
  color: var(--nav-text);
  font-weight: 500;
}

.booking-form textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.booking-form .btn-primary {
  background: var(--nav-text);
  border: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.booking-form .btn-primary:hover {
  background: var(--nav-hover);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .booking-form {
    padding: 1.5rem;
  }

  .booking-form .row {
    flex-direction: column;
  }

  .booking-form .col-md-6 {
    width: 100%;
  }
}
.input-group-text{
  white-space: nowrap;
  border: none !important;
  background-color: transparent !important;
  border-radius:0px !important;
}
.input-group-text i{

  color: var(--nav-text) !important;
}
form input, form select, form textarea{
  color: var(--nav-text) !important;
}
.form-check-input:checked {
 background-color: var(--nav-text) !important;
 border-color:var(--nav-text) !important;
}
/* fail */
.fail-body {
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.error-card {
  background-color: #fff;
  border: 2px solid  var(--nav-text);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
  text-align: center;
  max-width: 550px;
  width: 100%;
}

.error-card img {
  width: 180px;
  margin-bottom: 20px;
}

.error-card h2 {
  color: #d9534f;
  font-weight: 700;
  margin-bottom: 15px;
}

.error-card p {
  color: #333;
  font-size: 16px;
}

.btn-retry {
  margin-top: 25px !important;
  padding: 12px 28px !important;
  background-color: var(--nav-text) !important;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: background 0.3s ease;
}

.btn-retry:hover {
  background-color:  var(--nav-text) !important;
}

@media (max-width: 576px) {
  .error-card {
    padding: 30px 20px;
  }

  .error-card h2 {
    font-size: 24px;
  }

  .btn-retry {
    font-size: 15px;
    padding: 10px 22px;
  }
}
/* Thank You */
.thank-you-body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-gray);
  color: var(--text-color);
}
.thank-you-container {
  margin-top: 100px;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.thank-you-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.thank-you-icon:hover {
  transform: scale(1.1);
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.thank-you-message {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.booking-details {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.booking-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.booking-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.info-item {
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-label {
  font-weight: 600;
  color: #666;
}

.info-value {
  color: var(--text-color);
}

.btn-download, .btn-home {
  position: relative;
  overflow: hidden;
}

.btn-download::after, .btn-home::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}


@media (max-width: 767.98px) {
  .thank-you-card {
      padding: 2rem;
      margin: 1rem;
  }

  .thank-you-title {
      font-size: 2rem;
  }

  .booking-info {
      grid-template-columns: 1fr;
  }
}
/* driver body */
.body1 {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-color);
}
/*.body2{*/
/*  font-family: 'Poppins', sans-serif;*/
/*  background-color: var(--light-bg);*/
/*  color: var(--text-color);*/
/*}*/
 drivers now 
.body1 .navbar {
  background: white !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.body1 .navbar-brand {
  color: var(--secondary-color);
  font-weight: 600;
}

.body1 .nav-link {
  color: var(--text-color);
  font-weight: 500;
   padding: 1.5rem 1rem; 
  transition: all 0.3s ease;
}
.body1 .nav-link i{
  color: var(--primary-color);
}
 
.driver .nav-link:hover {
  color: var(--primary-color);
}

.driver .nav-link.active {
  color: var(--warning-color);
}

/* terms and condition */
.terms-container {
  margin-top: 76px;
  padding: 2rem 0;
  padding-top: 0%;
}
@media (min-width: 1024px) {
  .terms-container {
  padding-top: 5%;
}
}
.terms-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.terms-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.terms-title span {
  color: var(--primary-color);
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-bg);
}

.section-content {
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.list-group {
  margin-bottom: 1.5rem;
}

.list-group-item {
  border: none;
  padding: 0.75rem 1rem;
  background-color: var(--light-bg);
  margin-bottom: 0.5rem;
  border-radius: 10px;
  color: #4B5563;
}


.last-updated {
  text-align: center;
  color: #6B7280;
  font-size: 0.875rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* user sign up */
.login-container {
  min-height: 100vh;
  margin-top: 100px;
  align-items: center;
  padding: 2rem 0;
  padding-top: 0;
}
@media (min-width: 1024px) {
.login-container {
  padding-top: 5%;
}
}

.login-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

.login-content {
  padding: 3rem;
}
.login-image-user2{
  background: url('./assets/signup.png');
}
.login-image {
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 400px;
  position: relative;
}

.login-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.login-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
  z-index: 1;
}

.form-title {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.form-title span {
  color: var(--primary-color);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.btn-login {
  background: linear-gradient(45deg, #F59E0B, #FBBF24);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.btn-login:hover {
  background: linear-gradient(45deg, #FBBF24, #F59E0B);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .login-image {
      height: 300px;
      margin-bottom: 2rem;
  }
}
.login-image-user {
  background: url('./assets/Wavy_Tech-28_Single-10.jpg');
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 400px;
  position: relative;
  border-radius: 20px 0 0 20px;
}
/* forget password for user login */

.forgot-password {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password:hover {
  text-decoration: underline;
}
/* quotation request */
.quotation-container {
  margin-top: 76px;
  padding: 2rem 0;
  padding-top: 0%;
}

@media (min-width: 1024px) {
  .quotation-container {
  padding-top: 5%;
}
}

.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: var(--secondary-color);
  font-weight: 600;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--warning-color);
}

.nav-link.active {
  color: var(--warning-color);
}

.quotation-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.page-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.page-title span {
  color: var(--primary-color);
}

.form-label {
  color: #6B7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background: var(--warning-color);
  transform: translateY(-2px);
}

.request-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.request-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.request-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.request-id {
  color: var(--primary-color);
  font-weight: 600;
}

.request-date {
  color: #6B7280;
  font-size: 0.875rem;
}

.request-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-pending {
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary-color);
}

.status-approved {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.status-rejected {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.request-details {
  color: #4B5563;
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detail-label {
  color: #6B7280;
  font-size: 0.875rem;
}

.detail-value {
  font-weight: 500;
}

.btn-action {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-action:hover {
  background: var(--warning-color);
  transform: translateY(-2px);
}
.pagination {
  margin-top: 2rem;
  justify-content: center;
}

.page-link {
  color: var(--primary-color);
  border: 2px solid var(--border-color);
  margin: 0 0.25rem;
  border-radius: 10px;
}

.page-link:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.supplier-dashboard {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  
  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6B7280;
  font-size: 0.875rem;
}

.request-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-accept {
  background: #10B981;
  color: white;
}

.btn-reject {
  background: #EF4444;
  color: white;
}

.btn-view {
  background: #3B82F6;
  color: white;
}

.request-timeline {
  margin-top: 1rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 1rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
}

.timeline-date {
  color: #6B7280;
  font-size: 0.875rem;
}

.timeline-content {
  color: var(--text-color);
}

/* new password */
.password-container {
  margin-top: 120px;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.password-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.password-content {
  padding: 3rem;
}

.password-image {
  background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(13, 71, 161, 0.9)), url('sign2.jpg');
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: white;
}

.password-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.password-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.form-control {
  border-radius: 8px;
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
}

.btn-primary {
  background-color: var(--accent-color);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e05a00;
  transform: translateY(-2px);
}

.btn-outline-secondary {
  border-color: #e0e0e0;
  color: #666;
}

.btn-outline-secondary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.password-strength {
  height: 5px;
  background: #e0e0e0;
  border-radius: 3px;
  margin-top: 0.5rem;
}

.password-strength-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.password-requirements {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.password-requirements ul {
  list-style: none;
  padding-left: 0;
}

.password-requirements li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.password-requirements i {
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.password-requirements .valid {
  color: #4caf50;
}

.password-requirements .invalid {
  color: #f44336;
}

.password-image h2 {
  color: var(--accent-color);
  font-weight: bold;
}

.password-image i {
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .password-container {
    display: flex;
    justify-content: center;   /* Center horizontally */
    align-items: flex-start;   /* Align to top of viewport */
    flex-direction: column;    /* Stack items vertically */
    padding: 2rem 1rem;
    min-height: 100vh;
  }

  .password-card {
    width: 100%;
    max-width: 500px;        /* Optional: limit card width */
    margin: 0 auto;          /* Center horizontally */
  }
}

@media (max-width: 991.98px) {
  .password-content {
      padding: 2rem;
  }
}

@media (max-width: 768px) {
  .password-card {
      margin: 1rem;
  }
}
/* forget password */
.forgot-container {
  min-height: 100vh;
  margin-top: 120px;
  align-items: center;
  padding: 2rem 0;
}

.forgot-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

.forgot-content {
  padding: 3rem;
}

.forgot-image {
  background: url('./assets/password-reset-banner.jpg');
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 400px;
  position: relative;
}

.forgot-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.forgot-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
  z-index: 1;
}
.btn-reset {
  background: linear-gradient(45deg, #F59E0B, #FBBF24);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.btn-reset:hover {
  background: linear-gradient(45deg, #FBBF24, #F59E0B);
  transform: translateY(-2px);
}

.back-to-login {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  text-align: center;
  margin-top: 1rem;
}

.back-to-login:hover {
  text-decoration: underline;
}

.success-message {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: none;
}

.success-message.show {
  display: block;
}

@media (max-width: 768px) {
  .forgot-image {
      height: 300px;
  }
}
/* driver dashboard */


.dashboard-container {
  margin-top: 76px;
  padding: 2rem 0;
  padding-top: 0%;
}
@media (min-width: 1024px) {
  .dashboard-container {
    padding-top: 5%;
  }
}
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  color: var(--text-color);
}

.dropdown-item:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary-color);
}

.main-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  min-height: calc(100vh - 200px);
}

.welcome-section {
  text-align: center;
  padding: 3rem 0;
}

.welcome-section h1 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.welcome-section h1 span {
  color: var(--primary-color);
}

.welcome-section p {
  color: #6B7280;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.quick-stats {
  margin-top: 2rem;
}

/* .stat-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
} */

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* .stat-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
} */

.stat-label {
  color: #6B7280;
  font-size: 1rem;
}

.recent-activity {
  margin-top: 3rem;
}

.activity-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.activity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.activity-title {
  font-weight: 600;
  color: var(--secondary-color);
}

.activity-date {
  color: #6B7280;
  font-size: 0.9rem;
}

.activity-content {
  color: #6B7280;
}

@media (max-width: 768px) {
  .welcome-section {
      padding: 2rem 0;
  }
  
  .stat-card {
      margin-bottom: 1rem;
  }
}

/* profile driver */
.profile-container {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.profile-header {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  margin-bottom: 1rem;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.profile-role {
  color: #6B7280;
  margin-bottom: 1rem;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.stat-item {
  text-align: center;
}

.dashboard-container .info-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard-container .info-group {
  margin-bottom: 1rem;
}

.info-label {
  color: #6B7280;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.btn-edit {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-edit:hover {
  background: var(--warning-color);
  color: white;
  transform: translateY(-2px);
}

.document-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.document-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 1rem;
}

.document-info {
  flex: 1;
}

.document-name {
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.document-status {
  font-size: 0.875rem;
  color: #6B7280;
}

.status-verified {
  color: var(--success-color);
}

.status-pending {
  color: var(--warning-color);
}

@media (max-width: 768px) {
  .profile-stats {
      flex-direction: column;
      gap: 1rem;
  }
}
/* communication */
.communication-container {
  /* margin-top: 76px; */
  padding: 12% 0;
}
@media (min-width: 769px) and (max-width: 920px) {
  .communication-container{
    padding: 8% 0;
  }
} 
@media (min-width: 921px) and (max-width: 1030px) {
  .communication-container{
    padding: 13% 0;
  }
} 
@media (min-width: 1031px) and (max-width: 1300px) {
  .communication-container{
    padding: 9% 0;
  }
} 
.communication-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tabbed-nav {
  display: flex;
  border-bottom: 4px solid var(--primary-color);
  background: #222;
  margin-bottom: 0;
}
.tabbed-nav .tab {
  padding: 1rem 2rem;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 4px solid transparent;
  transition: border 0.2s, background 0.2s;
}
.tabbed-nav .tab.active {
  background: var(--primary-color);
  color: #222;
  border-bottom: 4px solid var(--primary-color);
}
.info-banner {
  background: var(--info-yellow);
  color: #222;
  padding: 1.25rem 2rem 1.25rem 4rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0 0 10px 10px;
  position: relative;
  margin-bottom: 0;
}
.info-banner i {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
}
.info-banner .refresh-btn {
  background: #fff;
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  padding: 0.4rem 1.2rem;
  font-weight: 600;
  margin-left: 1rem;
  transition: background 0.2s;
}
.info-banner .refresh-btn:hover {
  background: var(--primary-color);
  color: #fff;
}
