/********** Template CSS **********/
:root {
  --primary: #f77d0a;
  --secondary: #2b2e4a;
  --light: #f4f5f8;
  --dark: #1c1e32;
}



h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.nav-bar::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: var(--dark);
}

.nav-bar::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
  padding: 30px 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light);
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 15px;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 30, 50, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h4 {
    font-size: 18px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.page-header {
  height: 400px;
  margin-bottom: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(28, 30, 50, 0.9), rgba(28, 30, 50, 0.9)),
    url(../img/bg-banner.jpg);
  background-attachment: fixed;
}

@media (max-width: 991.98px) {
  .page-header {
    height: 300px;
  }
}

.service-item {
  height: 320px;
  background: var(--light);
  transition: 0.5s;
}

.service-item:hover,
.service-item.active {
  background: var(--secondary);
}

.service-item h1,
.service-item h4 {
  transition: 0.5s;
}

.service-item:hover h1,
.service-item.active h1 {
  color: var(--dark) !important;
}

.service-item:hover h4,
.service-item.active h4 {
  color: var(--light);
}

.more-details-btn {
  display: inline-block;
  padding: 10px 12px;
  font-size: 16px;
  color: var(--primary);
  background-color: transparent;
  border: 2px solid var(--primary);
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.more-details-btn:hover,
.more-details-btn:focus {
  background-color: #2b2e4a;
  color: var(--light);
  text-decoration: none;
}

.txtModl {
  color: var(--primary);
}

.rent-item {
  padding: 30px;
  text-align: center;
  background: var(--light);
  transition: 0.5s;
  border-radius: 5px; /* optional, for rounded corners */
    
}

.rent-item:hover,
.rent-item.active {
  background: var(--secondary);
}

.rent-item h4 {
  transition: 0.5s;
}

.rent-item h5 {
  transition: 0.5s;
}

.rent-item:hover h4,
.rent-item.active h4 {
  color: var(--light);
}

.rent-item:hover h5,
.rent-item.active h5 {
  color: var(--light);
}

.rent-item:hover span {
  color: var(--light);
  transition: 0.5s;
}

.team-item {
  padding: 30px 30px 0 30px;
  text-align: center;
  background: var(--light);
  transition: 0.5s;
}

.team-item:hover,
.owl-item.center .team-item {
  background: var(--secondary);
}

.team-item h4 {
  transition: 0.5s;
}

.owl-item.center .team-item h4,
.owl-item.center .rent-item h4 {
  color: var(--light);
}

.team-item .team-social {
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  background: var(--light);
}

.owl-item.center .team-item .team-social,
.owl-item.center .rent-item {
  background: var(--secondary);
}

.team-item:hover .team-social {
  opacity: 1;
  background: var(--secondary);
}

.team-carousel .owl-nav,
.related-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 60px;
  top: calc(50% - 30px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  font-size: 22px;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover,
.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

.vendor-carousel .owl-dots,
.testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendor-carousel .owl-dot,
.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  transition: 0.5s;
}

.vendor-carousel .owl-dot.active,
.testimonial-carousel .owl-dot.active {
  width: 40px;
  height: 40px;
  background: var(--primary);
}

.testimonial-carousel .owl-item img {
  width: 80px;
  height: 80px;
}

.testimonial-carousel .owl-item .testimonial-item {
  height: 350px;
  transition: 0.5s;
  background: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--secondary);
}

.testimonial-carousel .owl-item .testimonial-item h1,
.testimonial-carousel .owl-item .testimonial-item h4 {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item h1 {
  color: var(--dark) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h4 {
  color: var(--light);
}

.bg-banner {
  background: linear-gradient(rgba(28, 30, 50, 0.9), rgba(28, 30, 50, 0.9)),
    url(../img/bg-banner.jpg);
  background-attachment: fixed;
}

/* Pricing */

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: min(1600px, 100%);
  margin: auto;
}

.pricing-card {
  display: flex; /* Make the card a flex container */
  flex-direction: column; /* Stack children vertically */
  justify-content: space-between; /* Space between items, pushing the button down */
  flex: 1;
  max-width: 380px;
  background-color: #fff;
  margin: 20px 10px;
  text-align: center;

  overflow: hidden;
  color: #2d2d2d;
  transition: 0.3s linear;
  height: 100%;
}

.pricing-card-header {
  background-color: #f77d0a;
  display: inline-block;
  color: #fff;
  padding: 12px 30px;
  border-radius: 0 0 20px 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.4s linear;
}

.price {
  font-size: 70px;
  color: #f77d0a;
  margin: 40px 0;
  transition: 0.2s linear;
}

.price sup,
.price span {
  font-size: 22px;
  font-weight: 700;
}

.pricing-card li {
  font-size: 16px;
  padding: 10px 0;
  text-transform: uppercase;
  transition: 0.3s linear;
}

.order-btn {
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 80px;
  border: 2px solid #f77d0a;
  color: #f77d0a;
  padding: 18px 40px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.3s linear;
}

.order-btn:hover {
  background-color: #f77d0a;
  color: #fff;
}

.button-container {
  margin-top: auto;
}

/* Partners CSS */

.partner #content .partner-section {
  display: flex;
  align-items: center;
  justify-content: center; /* Adjust this as needed */
  padding: 50px 150px;
  background-color: white; /* If you want a white background */
}

.partner #content .partner-section .text-container {
  flex: 1; /* Takes up only the necessary space */
  padding-right: 2rem; /* Adds some space between the text and the car image */
}

.partner #content .partner-section .car-image-container {
  flex: 1;
  text-align: right; /* Align the car image to the right */
}

.partner #content .partner-section .car-image-container img {
  max-width: 100%; /* Ensure the image is responsive and does not overflow */
  height: auto; /* Maintain aspect ratio */
}

.partner #content .partner-section h1 {
  font-size: 3rem;
  color: var(--secondary); /* Choose a color that makes the text visible */
  margin-bottom: 1rem;
}

.partner #content .partner-section p {
  font-size: 1.2rem;
  color: var(--secondary); /* Choose a color that makes the text visible */
  margin-bottom: 2rem;
}

.partner #content .btn-join {
  background-color: var(--primary); 
  color: white;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 18px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.partner #content .btn-join:hover {
  background-color: darkorange; 
}

@media (max-width: 768px) {
  .partner #content .partner-section {
    flex-direction: column;
    padding: 30px; /* Add padding as needed */
  }

  .partner #content .partner-section .text-container,
  .partner #content .partner-section .car-image-container {
    max-width: 100%;
    text-align: center;
  }

  .partner #content .partner-section .car-image-container img {
    max-width: 80%; /* Reduce the size of the car image on smaller screens */
    height: auto;
  }

  .partner #content .partner-section .text-container {
    margin-bottom: 20px; /* Add space between the text and the car image */
  }
}

/* Benefits Section */

.benefits-section {
  background-color: #f8f8f8; 
  padding: 50px 0; 
}

.benefits-container {
  display: flex;
  justify-content: center; 
  align-items: center; 
  width: 100%; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 15px; 
}

.benefits-column {
  flex: 1; 
  margin: 0 20px; 
  text-align: center; 
}

.benefits-column h2 {
  color: var(--primary);
  margin-bottom: 20px; /* Spacing after headings */
}

.benefits-column ul {
  list-style: none; /* Removes default list styling */
  padding: 0; /* Removes default padding */
  display: inline-block; /* Allows the list to respect text-align center */
  text-align: left; /* Aligns the text to the left within the centered block */
}

.benefits-column ul li {
  background: url('../img/check-symbol.png') no-repeat left center; /* Icon for list items */
  padding-left: 30px; /* Space for the icon */
  margin-bottom: 15px; /* Space between list items */
  background-size: 1em; /* Size of the check icon */
  line-height: 1.8; /* Line height for list items */
}

@media (max-width: 768px) {
  /* Stack columns and center content for mobile devices */
  .benefits-container {
    flex-direction: column;
    align-items: center; /* Center the items */
  }

  .benefits-column {
    text-align: center; /* Center text for mobile */
  }

  .benefits-column ul {
    text-align: left; /* Align list text to the left within the centered column */
    display: inline-block; /* Center the list block */
  }
}

/* Requirements Section CSS */

.requirements-section {
  background-color: #ffffff; /* White or another light color for the background */
  padding: 50px 0; /* Top and bottom padding */
}

.requirements-container {
  display: flex;
  justify-content: center; /* Center the flex items horizontally */
  align-items: center; /* Center the flex items vertically */
  gap: 20px; /* Adjust the gap as needed */
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.requirements-section h2 {
  margin-bottom: 20px; /* Adjust the value as needed */
}

.car-owner, .driver {
  display: flex;
  align-items: center; /* Align items vertically in the center */
  justify-content: space-around; /* Distribute space around items */
  width: 100%; /* Full width to accommodate flex-basis percentages */
}

.car-owner .text, .driver .text {
  flex-basis: 50%; /* Each text container takes half of the parent width */
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Center content horizontally */
  justify-content: space-between; /* Distribute space vertically */
  height: 100%; /* Take full height */
}

.car-owner .text ul, .driver .text ul {
  padding-left: 0; /* Remove default padding */
}

.car-owner .text ul li, .driver .text ul li {
  position: relative;
  padding-left: 30px; /* Space for custom bullet or icon */
  margin-bottom: 15px; /* Space between list items */
  list-style: none; /* Remove default list styling */
  line-height: 1.5; /* Adjust line height for better readability */
}

.car-owner .text ul li::before, .driver .text ul li::before {
  content: '✔'; /* Add your custom checkmark or icon */
  position: absolute;
  left: 0; /* Position the checkmark to the left of the content */
  top: 50%;
  transform: translateY(-50%); /* Center the checkmark vertically */
  color: #32CD32; /* Color of the checkmark */
  font-weight: bold; /* Optional: make the checkmark bold */
}

.image {
  width: 50%; /* Adjust the width as needed */
  height: auto;
  display: block;
}

.signup1-btn {
  padding: 10px 20px; /* Size of the button */
  background-color: var(--primary); /* Background color */
  color: white; /* Text color */
  text-transform: uppercase; /* Makes text uppercase */
  font-weight: bold; /* Makes text bold */
  border: none; /* Removes border */
  border-radius: 5px; /* Rounds corners */
  cursor: pointer; /* Changes cursor to pointer on hover */
  text-decoration: none; /* Removes underline from text */
  transition: background-color 0.3s ease; /* Smooth background color transition */
  font-size: 1rem; /* Sets font size */
  width: 200px; /* Fixed width for the button */
  margin: auto; /* Pushes the button to the bottom */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.signup1-btn:hover, .signup1-btn:focus {
  background-color: darkorange; /* Darkens the button color on hover/focus */
  color: #fff; /* Keeps text color white on hover/focus */
  outline: none; /* Removes the outline on focus */
}

/* Responsive design adjustments for smaller screens */
@media (max-width: 768px) {
  .requirements-container {
    flex-direction: column;
  }

  .car-owner, .driver {
    flex-direction: column; /* Stack image and text vertically */
    margin-bottom: 30px;
  }

  .car-owner .text, .driver .text, .image {
    width: 100%; /* Full width for smaller screens */
    align-items: center; /* Center content for text blocks */
  }

  .signup1-btn {
    width: 35%; /* Smaller width button on smaller screens */
    padding: 15px; /* Larger padding for a bigger touch target on mobile */
    margin: 20px auto 0; /* Add some space above the button */
  }
}

/* ==============================
   Sign Up Page Specific Styles
   ============================== */
/* Main container for the sign-up form */

.required {
  color: red;
  
}

.signup-container {
  max-width: 900px;
  border-left: 8px solid #F77D0A;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Header styles */
.signup-header h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.signup-header p {
  text-align: center;
  margin-bottom: 2rem;
}

/* Step indicator and section heading alignment */
.form-section-header {
  display: flex;
  align-items: center;
  flex-wrap: nowrap; /* Ensures items stay on the same line */
  white-space: nowrap; /* Prevents wrapping of text content */
  overflow: hidden; /* Ensures overflowing content is hidden */
  text-overflow: ellipsis;
  margin-bottom: 1rem;
}

.form-section-header h2 {
  font-size: 24px;
  margin: 0; /* Removes default margin */
  flex-grow: 1;
  white-space: normal; /* Allows the title to wrap if needed */
  overflow: visible;
}

.step-indicator {
  background-color: var(--primary); /* Or any color you prefer */
  color: #fff;
  width: 25px; /* Adjust size as needed */
  height: 25px; /* Adjust size as needed */
  border-radius: 50%; /* This creates the circle shape */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px; /* Adjust spacing as needed */
  flex-shrink: 0; /* Prevent the circle from shrinking */
  margin-right: 10px;
}


/* Section heading styles */
.form-section h2 {
  margin-bottom: 1rem;
}

/* Two-column input layout */
.name-fields, .address-fields {
  display: flex;
  justify-content: space-between;
}

.input-wrapper {
  flex: 1;
  margin-right: 10px;
  margin-bottom: 20px;
}

.input-wrapper:last-child {
  margin-right: 0;
}

/* Full width input wrapper */
.input-wrapper.full-width {
  margin-right: 0;
}

/* Mobile number with country code */
.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.country-code {
  background-color: #eee; /* Or any color that matches your design */
  border-right: 1px solid #ccc;
  padding: 10px;
  border-top-left-radius: 4px; /* Match the border-radius of .phone-input */
  border-bottom-left-radius: 4px; /* Match the border-radius of .phone-input */
  margin-right: -1px; /* Overlap the border between country code and input */
}

.signup-form input[type="tel"] {
  flex-grow: 1;
  border: none;
  margin-left: -1px; /* Overlap the border between country code and input */
  padding: 10px;
  border-top-right-radius: 4px; /* Match the border-radius of .phone-input */
  border-bottom-right-radius: 4px; /* Match the border-radius of .phone-input */
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="file"],
.signup-form input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc; /* Light grey border */
  border-radius: 4px;
  outline: none; /* Removes the blue outline on focus in some browsers */
  transition: border 0.3s, box-shadow 0.3s; /* Smooth transition for border and box-shadow */
}

/* Focused input style */
.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus,
.signup-form input[type="password"]:focus {
  border: 1px solid var(--primary); /* Green border */
  box-shadow: 0 0 5px var(--primary); /* Green glow */
}

.signup-form input[type="tel"]:focus {
  border: 1px solid var(--primary); /* Add a border and set the color */
  outline: none;
  box-shadow: 0 0 5px var(--primary);
}



/* Button styling */
.signup-btn {
  width: 100%;
  padding: 12px 25px;
  background-color: darkorange;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s;
  margin-top: 1rem;
}

/* Button hover effect */
.signup-btn:hover {
  background-color: var(--primary);
}

/* Footer style */
.signup-footer {
  text-align: center;
  margin-top: 2rem;
}

.signup-footer a {
  color: var(--primary);
  text-decoration: none;
}

.signup-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  -webkit-appearance: none; /* Removes default styling for select elements in WebKit browsers */
  -moz-appearance: none;    /* Removes default styling for select elements in Firefox */
  appearance: none;         /* Removes default styling for select elements */
}

/* You may want to add a background-image for the dropdown arrow */
.signup-form select {
  background-image: url('dropdown-arrow.png');
  background-position: right 10px center;
  background-repeat: no-repeat;
}

/* Adjust the padding to make space for the background-image */
.signup-form select {
  padding-right: 30px; /* Space for the arrow image */
}

/* Styles for input and select to match */
.input-wrapper input[type="text"],
.input-wrapper select {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 4px;
    font-size: 16px; /* Adjust as needed */
    color: #333; /* Adjust as needed */
    outline: none; /* Removes the blue outline on focus in some browsers */
    transition: border 0.3s, box-shadow 0.3s; /* Smooth transition for border and box-shadow */
}

/* Styles specifically for select elements to add custom arrow */
.input-wrapper select {
    -webkit-appearance: none; /* Removes default styling for select elements in WebKit browsers */
    -moz-appearance: none;    /* Removes default styling for select elements in Firefox */
    appearance: none;         /* Removes default styling for select elements */
    background-image: url('../img/ddown.png'); /* Path to your custom dropdown arrow image */
    background-position: right 10px center;
    background-repeat: no-repeat;
    padding-right: 30px; /* Make padding larger on the right to accommodate the arrow */
}

/* Adjust the line height if necessary to center the text vertically */
.input-wrapper input[type="text"],
.input-wrapper select {
    line-height: 1.5; /* This is just an example value; adjust as needed */
}

/* You might need to adjust the margin-bottom for alignment */
.input-wrapper {
    margin-bottom: 20px; /* Adjust the space between form elements as needed */
}

/* Ensure the labels are styled consistently */
.input-wrapper label {
    display: block; /* Makes the label take up the full width */
    margin-bottom: .5rem; /* Adds some space between the label and the input/select */
    font-size: 15px; /* Adjust as needed */
    color: #333; /* Adjust as needed */
}

/* Optional: Style the focus state of the inputs and selects */
.input-wrapper input[type="text"]:focus,
.input-wrapper select:focus {
    border-color: var(--primary); /* Highlight color when element is focused */
    box-shadow: 0 0 5px var(--primary); /* Optional: Adds a glow effect on focus */
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .form-section-header {
    
    align-items: center;
    
  }

  .phone-input {
    flex-direction: row; /* Keep the phone input in a row */
    align-items: center; /* Center align the items */
  }

  .country-code {
    flex: none; /* Prevent the country code from growing */
    margin-right: 10px; /* Space between country code and input */
  }

  .signup-form input[type="tel"] {
    flex-grow: 1; /* Allow the input field to take up the remaining space */
    margin-bottom: 0; /* Remove margin bottom if previously set */
  }

  .name-fields, .address-fields {
    flex-direction: column;
  }

  .input-wrapper {
    margin-right: 0;
    margin-bottom: 10px; /* Adds a little space between input fields */
  }

  .signup-btn {
    width: 100%; /* Full-width button on smaller screens for easier tap */
    padding: 12px;
    border-radius: 4px; /* Ensures rounded corners are consistent */
  }

  .step-indicator {
    width: 20px;
    height: 20px;
    line-height: 20px; /* Adjust the line height to vertically center the text */
    font-size: 1rem; /* Adjust the font size if the number doesn't fit */
    margin-right: 5px;
  }

  .form-section-header h2 {
    font-size: 24px; /* Adjust the font size for smaller screens */
    white-space: nowrap; /* Prevent the text from wrapping */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Add an ellipsis if text is too long */
    max-width: calc(100% - 30px);
  }

}

/* Custom checkbox styles */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox (hidden when not checked) */
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  max-height: 80vh;
  overflow-y: auto;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Custom Checkbox Styles */
/* ... your existing .checkbox-container and related styles ... */

.terms-text {
  height: 300px; /* Or whatever height you prefer */
  overflow-y: scroll; /* Add scroll for long text */
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid #ccc; /* Add a border to the terms container */
}

.package-options {
  display: flex;
  justify-content: space-between;
}

.package-option-btn {
  flex-grow: 1; /* Buttons take up equal space */
  margin: 5px; /* Spacing between buttons */
  padding: 10px; /* Padding inside buttons */
  border: 2px solid #ccc; /* Solid border */
  background-color: #fff; /* White background */
  cursor: pointer; /* Cursor to indicate it's clickable */
  border-radius: 8px;
  font-weight: bold;
}

.package-option-btn.active {
  background-color: var(--primary); /* Bootstrap primary color for active state */
  color: #fff; /* White text for active state */
}

/* You might want to add :hover styles as well */
.package-option-btn:hover {
  background-color: darkorange; /* Darker blue on hover */
  color: #fff;
}

.package-option-btn i {
  margin-right: 8px; /* Space between icon and text */
}

/* The Modal (background) */
.custom-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.custom-modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 10% auto; /* 10% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.custom-modal-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.custom-modal-close:hover,
.custom-modal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.inputbgr {
  position: relative;
}

.inputb {
  border: solid 1.5px #9e9e9e;
  border-radius: 1rem;
  background: none;
  padding: 1.5rem; /* Increased from 1rem */
  padding-right: 3rem;
  font-size: 1rem;
  color: #212121; /* This color should be dark enough to be visible on a light background */
  transition: border 150ms cubic-bezier(0.4,0,0.2,1);
}

.user-label {
  position: absolute;
  left: 1.25rem; /* Adjusted to match input padding */
  bottom: 1.25rem; /* align the label properly with the input */
  color: #ccc;
  pointer-events: none;
  transform: translateY(1rem);
  transition: transform 150ms cubic-bezier(0.4,0,0.2,1), color 150ms cubic-bezier(0.4,0,0.2,1);
}

.inputb:focus, .inputb:valid {
  outline: none;
  border: 1.5px solid var(--primary);
}

.inputb.is-invalid {
  border-color: #dc3545;
}

.inputb.is-invalid ~ .user-label {
  color: #dc3545;
}

.inputb:focus ~ .user-label, .inputb:valid ~ .user-label {
  transform: translateY(-.6rem) scale(0.8); /* Adjust translate value as needed */
  background-color: #ffffff; /* This should match your page background */
  padding: 0 0.2rem; /* Add padding to the label */
  color: var(--primary);
}

.billing-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.billing-detail {
  flex-basis: 48%; /* Adjust the width per item. */
  /* Add more styling here for padding, margins, etc., as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .billing-detail {
      flex-basis: 100%; /* Stack them on smaller screens */
  }
}

/* Specific style for reserved dates */
.flatpickr-calendar .flatpickr-day.reserved-date,
.flatpickr-calendar .flatpickr-day.flatpickr-disabled {
    background-color: #ffcccc !important;
    /* Custom background for reserved dates */
    color: #ff0000 !important;
    /* Custom text color for reserved dates */
    cursor: not-allowed !important;
    /* Custom cursor for reserved dates */
}

/* Specific style for past dates */
.flatpickr-calendar .flatpickr-day.past-date {
    background-color: #f0f0f0 !important;
    /* Light gray background for past dates */
    color: #ccc !important;
    /* Dark gray text for past dates */
    cursor: not-allowed !important;
    /* Default cursor for non-selectable dates */
}

.border-left-orange {
    border-left: 10px solid #F77D0A;
}

.brd-clr {
    border: 2px solid darkorange;
    background-color: white !important;
    border-radius: 8px;
}

.brd-clr1 {
  
  background-color: white !important;
  border-radius: 8px;
}

.brd-clr2 {
  
  background-color: #e9ecef !important;
  border-radius: 8px;
}

.billing-detail {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    margin-bottom: 1rem;
    /* Space between rows */
}

.billing-label {
    text-align: left;
    /* Aligns the text to the right of the first column */
    padding-right: .5em;
    /* Adds some space before the values */
}

.billing-value {
    text-align: left;
    /* Aligns the text to the left of the second column */
    position: relative;
    /* Needed for absolute positioning of the currency symbol */
    padding-left: .8em;
}

.billing-value.currency:before {
    content: '₱';
    position: absolute;
    left: 0;
    /* Aligns the currency symbol to the left of the value */
}

.inptme {
  width: auto;
  /* Adjust this as needed */
  padding: 0.5em;
  /* Adjust padding to ensure text fits */
  font-size: 1em;
}

input[type='time'].slcttme {
  cursor: pointer;
}

.badge1 {
  display: inline-block;
  padding: 0.25em 0.75em;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #f2f2f2;
  border-radius: 9999px; /* fully rounded */
}

.otp-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  background-color: rgba(0, 0, 0, 0.5);
  /* Black w/ opacity */
}

.otp-modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  /* Adjusted for more vertical margin and auto for horizontal centering */
  padding: 20px;
  border: 1px solid #888;
  width: auto;
  /* Changed from a percentage to auto */
  max-width: 400px;
  /* A max-width to ensure it doesn't get too wide on larger screens */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  /* Optional: Adds a shadow for better modal appearance */
  border-radius: 10px;
  /* Optional: Rounds the corners of the modal box */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center items horizontally */
}


.otp-modal-title {
  font-size: 20px;
  font-weight: bold;
}

.otp-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 300px;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
}


.title {
  font-size: 20px;
  font-weight: bold;
  color: black
}

.message {
  color: #a3a3a3;
  font-size: 14px;
  margin-top: 4px;
  text-align: center
}

.inputs {
  margin-top: 10px
}

.inputs input {
  width: 32px;
  height: 32px;
  text-align: center;
  border: none;
  border-bottom: 1.5px solid #d2d2d2;
  margin: 0 10px;
}

.inputs input:focus {
  border-bottom: 1.5px solid royalblue;
  outline: none;
}

.action {
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  background-color: royalblue;
  color: white;
  cursor: pointer;

}


.login-form .form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 1.25rem;
  /* Adjust padding for comfort */
  font-size: 1rem;
  /* Readable font size */
  border: 1px solid #ced4da;
  /* Subtle border */
  border-radius: 0.25rem;
  /* Rounded corners */
  appearance: none;
  /* Remove default system styles */
}

/* Larger padding for labels for better touch-target sizing */
.login-form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  /* Make labels a bit bolder */
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  .login-form {
      padding: 1rem;
      /* More padding on smaller screens */
  }
}

/* High contrast submit button for visibility */
.login-form button[type="submit"] {
  background-color: #ff6a00;
  /* Your brand color */
  color: white;
  /* Contrast text color */
  border: none;
  padding: 1rem;
  /* Larger padding for a bigger click area */
  border-radius: 0.25rem;
  /* Consistent rounded corners */
  font-size: 1rem;
  /* Readable font size */
  cursor: pointer;
}

/* Hover effect for button to indicate interactivity */
.login-form button[type="submit"]:hover {
  background-color: #e65c00;
  /* Slightly darker shade on hover */
}

/* Focus styles for accessibility */
.login-form .form-select:focus,
.login-form input:focus,
.login-form button:focus {
  border-color: #ff6a00;
  /* Highlight color */
  outline: none;
  /* Remove default focus outline */
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.5);
  /* Custom glow effect */
}

.login-form a {
  color: #ff6a00;
  /* Use your brand's highlight color */
  text-decoration: none;
  /* Optional: if you want to underline the link */
  font-weight: bold;
  /* Make it bold to stand out */
}

.login-form a:hover {
  color: #e65c00;
  /* A darker shade for hover state */
  text-decoration: none;
  /* Optional: remove underline on hover */
}



.fancy {
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;

  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 1.25em 2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease-in-out;
  user-select: none;
  font-size: 13px;
}

.fancy::before {
  content: " ";
  width: 1.5625rem;
  height: 2px;
  background: black;
  top: 50%;
  left: 1.5em;
  position: absolute;
  transform: translateY(-50%);
  transform-origin: center;
  transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
  font-size: 1.125em;
  line-height: 1.33333em;
  padding-left: 2em;
  display: block;
  text-align: left;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}

.fancy .top-key {
  height: 2px;
  width: 1.5625rem;
  top: -2px;
  left: 0.625rem;
  position: absolute;
  background: #e8e8e8;
  transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
  height: 2px;
  width: 1.5625rem;
  right: 1.875rem;
  bottom: -2px;
  position: absolute;
  background: #e8e8e8;
  transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
  height: 2px;
  width: 0.625rem;
  right: 0.625rem;
  bottom: -2px;
  position: absolute;
  background: #e8e8e8;
  transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
  color: white;
  background: black;
}

.fancy:hover::before {
  width: 0.9375rem;
  background: white;
}

.fancy:hover .text {
  color: white;
  padding-left: 1.5em;
}

.fancy:hover .top-key {
  left: -2px;
  width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
  right: 0;
  width: 0;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  /* Match your input fields padding */
  font-size: 1rem;
  /* Match your input fields font size */
  font-weight: 400;
  /* Match your input fields font weight */
  line-height: 1.5;
  /* Match your input fields line height */
  color: #495057;
  /* Match your input fields text color */
  background-color: #fff;
  /* Match your input fields background color */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3E%3Cpath fill-rule='evenodd' d='M1.5 3.5a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 .5.5c0 .27-.223.5-.5.5H2a.5.5 0 0 1-.5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M1.5 8a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 .5.5c0 .27-.223.5-.5.5H2a.5.5 0 0 1-.5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M1.5 12.5a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 .5.5c0 .27-.223.5-.5.5H2a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  /* Adjust the position to match your inputs */
  background-size: 16px 12px;
  /* Adjust the size to match your inputs */
  border: 1px solid #ced4da;
  /* Match your input fields border */
  border-radius: 0.25rem;
  /* Match your input fields border radius */
  -webkit-appearance: none;
  /* Remove default styling */
  -moz-appearance: none;
  /* Remove default styling */
  appearance: none;
  /* Remove default styling */
  border-color: orange;
}

.form-select:focus {
  border-color: #ced4da;
  /* Match your input fields focus border color */
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  /* Match your input fields focus box shadow */
}

/* Updated CSS for action buttons */
.action-buttons {
  display: flex;
  gap: 5px; /* Provide space between buttons */
  justify-content: space-between; /* Center the buttons within the cell */
}

.action-buttons button {
  border: none; /* Remove default border */
  border-radius: 4px; /* Optional: rounded corners */
  padding: 5px 10px; /* Padding inside the buttons */
  cursor: pointer;
  color: white; /* Text color */
  font-size: 0.8rem; /* Font size */
}

/* Specific colors for different actions */
.view-button {
  background-color: var(--primary); /* Bootstrap's info color */
}

.edit-button {
  background-color: #ffc107; /* Bootstrap's warning color */
}

.pay-button {
  background-color: #28a745; /* Bootstrap's success color */
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-button i {
  margin-right: 5px; /* Space between icon and timer text */
}

.pay-button span {
  font-size: 0.8rem; /* Ensure the text is not too large for the button */
}

.delete-button {
  background-color: #b40012; /* Bootstrap's danger color */
}

/* Style for the timer text */
.timer-text {
  font-weight: bold;
  margin-left: 10px; /* Space from the button */
  display: flex;
  align-items: center; /* Align the timer vertically */
}

.status-cancelled, .status-expired {
  color: red;
  font-weight: bold;
}

.status-completed {
  color: green;
  font-weight: bold;
}

.status-pending {
  color: orange;
  font-weight: bold;
}

.status-paid, .status-refunded {
  color: #007bff;
  font-weight: bold;
}

.status-cancellation-request {
  color: darkblue;
  font-weight: bold;
}

.status-released,
.status-returned {
  color: skyblue;
  font-weight: bold;
}



.receipt {
  background-color: #fff;
  
  margin: auto;
}

.breakdown-item:not(:last-child) {
  padding-bottom: 0.5rem;
}

.breakdown-item {
  padding-top: 0.5rem;
}

.total {
  padding-top: 0.75rem;
}

.date-legend {
  display: flex;
  align-items: center;
}

.date-legend .dot-red {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  margin-right: 5px;
}

/* Add additional styles for responsive alignment and spacing */
.multisteps-form__label {
  margin-top: 10px;
  margin-right: auto; /* Pushes the legend to the right */
}

/* Adjust the margin-bottom for the label and legend wrapper if necessary */
.d-flex.mb-2 {
  margin-bottom: 0.5rem; /* This value can be adjusted */
}
