/* styles.css */

/* Navigation Styles */
.navbar {
  background-color: #d6032f !important;   /*#F9F6EE !important;*/
}

.navbar-nav .nav-item .nav-link {
  color: #F9F6EE;
  margin-right: 1rem;
  font-size: 20px;
  transition: text-decoration 0.3s;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:focus {
  text-decoration: underline;
}

/* Header Section */
.header {
  position: relative;
}

/* Logo Styles */
.navbar-brand img {
  width: 200px;
  height: auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

/* Custom styling for the banner carousel */
#bannerCarousel .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#bannerCarousel {
  margin-bottom: 20px; /* Space between carousel and next section */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Optional: Dark background for controls */
  border-radius: 50%; /* Optional: Circular controls */
}

/* Search Options Section */
.search-options {
  background-color: #ffffff;  
  padding: 0px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 2048px;
  margin: 0 auto;
}

.search-options .card {
  margin-bottom: 15px;
}

.search-options .form-check-input {
  margin-right: 3px;
}

.search-options .form-check-label {
  margin-bottom: 5px;
}

.search-options .form-select {
  max-width: 150px;
}

.search-options .btn-primary {
  width: 100%;
}


/* Center-align text in the number of passengers input */
#passengers {
  text-align: center;
}

/* Custom Input Height */
.custom-input-height {
  height: 30px; /* Adjust this value as needed */
  padding: 0.25rem 0.5rem; /* Ensure padding fits the height */
}

/* General styling adjustments */
.input-group .btn-sm {
  height: 30px; /* Adjust to match input height */
  line-height: 1.5;
}

.form-select.form-control-sm,
.form-control-sm {
  height: 30px; /* Adjust to ensure uniform height */
  padding-top: 0;
  padding-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .search-options .btn-primary {
    width: 100%;
  }

  .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    margin-right: 0.5rem;
  }
}

@media (max-width: 576px) {
  .search-options {
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .search-options .form-select {
    max-width: 100%;
  }
  
  .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    margin-right: 0.25rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.selected-time {
  margin-top: 10px;
  font-size: 14px;
}

/* Optional: Custom styling for the slider */
.form-range {
  width: 100%;
}


.noUi-handle {
  position: absolute; /* Positioning the handle */
  z-index: 1;
  width: 24px; /* Handle width */
  height: 24px; /* Handle height */
  cursor: ew-resize; /* Cursor style when hovering */
  background-color: #d6032f; /* Handle color */
  border-radius: 50%; /* Circular handles */
}

.noUi-base {
  position: relative;
  width: 100%;
  height: 10px; /* Height of the slider track */
  background-color: #ccc; /* Background of the slider */
  border-radius: 5px; /* Rounded edges for the slider track */
}

.noUi-connect {
  background: #d6032f; /* Color for the connected part of the slider */
}


/* Our Services Section */
.our-services {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.our-services .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.our-services .service-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.our-services .service-card:hover {
  transform: translateY(-5px);
}

.our-services .card-img-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  max-height: 200px;
  object-fit: cover;
}

.our-services .card-body {
  padding: 20px;
}

.our-services .card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.our-services .card-text {
  color: #666;
}

/* Additional styles for footer or specific elements */

.subscribe {
  background-color: #d6032f;  
}

.subscribe_1 h5{
    font-size: 12px;
    color: #bab7b8;
}

.footer .container {
  max-width: 1200px;   
}


.footer h4.text-cream {
  color: #F9F6EE; /* Cream color*/
}

/* Button Customization */
.btn-custom {
  background-color: #f3a030; /* Desired background color */
  color: #f9f6ee; /* Text color */
  border: 2px solid #f3a030; /* Border color and width */
  border-radius: 8px; /* Rounded corners */
  padding: 8px 16px; /* Padding inside the button */
  display: inline-block; /* Ensure inline block display */
  text-decoration: none; /* Remove underline */
  text-align: center; /* Center align text */
  font-size: 24px; /* Font size */
  transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Smooth transition */
}

#requestPriceButton {
  background-color: #d6032f; /* Desired background color */
  color: #f9f6ee; /* Text color */
  border: 2px solid #d6032f; /* Border color and width */
}


#requestPriceButton:hover {
  background-color: #f9f6ee; /* Hover background color */
  color: #d6032f; /* Hover text color */
  border-color: #d6032f; /* Hover border color */
}

#messageContainer {
  display: none;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

#messageContainer.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#messageContainer.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#NewLetterSubscribe:hover {
  background-color: #f9f6ee; /* Hover background color */
  color: #f3a030; /* Hover text color */
  border-color: #f3a030; /* Hover border color */
}


.footer .orange-border {
  border-top: 2px solid orange; /* Orange border for the bottom line */
  margin-top: 20px; /* Adjust spacing as needed */
}

.footer .social-icons {
  font-size: 24px;
}

.footer .social-icons a {
  color: #333;
  transition: color 0.3s;
}

.footer .social-icons a:hover {
  color: #007bff;
}

.footer .copyright {
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .footer .social-icons {
    font-size: 20px;
  }
}

.text-danger {
    color: red;
    font-weight: bold;
}