
/*Header*/
.header {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgb(22, 22, 200);
  color: rgb(255, 255, 255);
  box-shadow: 3px 3px 8px rgba(0, 0, 0.5, 0.5);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: sans-serif;
}

.logo-link {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.register-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: bold;
}

.register-button:hover {
  background-color: #0056b3;
}


/*END header*/

/*Banner*/

.banner-container {
  width: 100%;
  height: 351px;
  background: linear-gradient(135deg, #4a90e2, #9013fe);
  position: relative;
  overflow: hidden;
}

.banner-container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  transform: translateY(50%);
}

.banner-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding-top: 24px;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.banner-content p {
  font-size: 1.2rem;
}






/*end Banner*/

/* 1Banner*/

.banner {
 
  max-width: 1308px;
  height: 206px;
  background: linear-gradient(135deg, #0091ff, #0a033e);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 8px rgba(0.5, 0.5, 0.5, 0.5);
}

.banner-image {
  width: 100%;
  max-width: 1;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: sans-serif;
  position: absolute;
  color: #fff;
  text-align: center;
}



/* 1End Banner*/


/*sign*/


.register-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem;
  font-family: Arial, sans-serif;
  color: #333;
}

.left-section {
  flex: 1;
  max-width: 300px;
  margin-right: 2rem;
}

.left-section h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.left-section p {
  font-size: 1rem;
  color: #666;
}

.form-section {
  flex: 1;
  max-width: 400px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  text-align: left;
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
}

input {
  padding: 0.7rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-button {
  padding: 0.7rem;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.submit-button:hover {
  background-color: #0056b3;
}

.divider {
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
  margin: 0 1rem;
}

.icons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
}

.icon img {
  width: 30px;
  height: 30px;
}

.google {
  background-color: #fff;
  margin-left: 130px;
}


.facebook {
  background-color: #f7f8fc;
  color: #fff;
  margin-right: 136px;
}

.terms {
  font-size: 0.8rem;
  color: #666;
  margin-top: 1.5rem;
}

.terms a {
  color: #007bff;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

/* end sign*/



/* Cart */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.trip-planner {
  float: left;
  text-align: left;
  font-size: medium;
  padding: 20px;
}

.filters {
  margin: 20px 0;
}

.filter-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
}

.filter-btn.active {
  background-color: #6c6c6c;
  color: white;
}



.card {
  min-width: 250px;
  margin: 10px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card h3 {
  margin: 10px;
}

.card p {
  margin: 0 10px 10px;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Carousel.css */

.carousel-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
}

.carousel {
  position: relative;
  /* overflow: hidden; */
}



.carousel img {
  width: 100%;
  height: 100;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  top: 30%;
  /* transform: translateY(-50%); */
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  /* cursor: pointer; */
  padding: 10px;
  font-size: 18px;
  /* z-index: 1; */
}

/* .carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
} */

/* .app-container {
  text-align: center;
} */

/* Center text in card */
.card.text-center .card-body {
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Adjust grid gap for consistent spacing */
.row.g-3 {
  gap: 0px !important; /* Adjust spacing as needed */

}

/* Optional: Make sure images don't overflow */
.card-img-top {
  border-radius: 4px;
}

.card {
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.text-muted {
  font-size: 0.85rem;
}

/* End Cart*/

/* start Tab*/

.search-tours-container {
  max-width: 550px;
  margin: 0 auto;
  margin-top: 50px;
}

.input-group {
  max-width: 200px;
}

.btn {
  min-width: 150px;
}

.card {
  background: #fff;
  border-radius: 10px;
  border: none;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}


.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn i {
  margin-right: 5px;
}


/* Ensure dropdown menu doesn't cause scrollbars */
.dropdown-menu {
  max-height: 300px; /* Adjust height as needed */
  overflow-y: auto; /* Enable scrolling for long dropdowns */
}

/* Adjust button spacing in the container */
.d-flex.gap-2 {
  gap: 10px;
}

/* Optional: Make dropdowns responsive */
.dropdown-menu {
  white-space: nowrap;
}

a {
  text-decoration: none;
}
/* End Tab*/
  
/* Footer*/

.footer {
  background-color: rgb(22, 22, 200);
  background: linear-gradient(135deg, #001e3f, #2127e4);
  color: #fff;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1288px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 1rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #0472f9;
}

.footer-section form {
  display: flex;
  gap: 0.5rem;
}

.footer-section input {
  padding: 0.5rem;
  flex: 1;
  border: none;
  border-radius: 5px;
}

.subscribe-button {
  background-color: #0077ff;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.subscribe-button:hover {
  background-color: #0062ff;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  margin-left: 23px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #8c8c8c;
  padding-top: 1rem;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}


/*End Footer*/


/*CATEGORY PAGE*/

/* Styling for the container */
.container-fluid {
  margin-top: 20px;
}

/* Sidebar styling */
aside {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

label {
  font-size: 16px;
}

input[type="checkbox"] {
  margin-right: 10px;
}

/* Properties card styling */
.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  max-height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
  border-radius: 8px 8px 0 0;
}

.card-body {
  padding: 15px;
}

.card-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: #555;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .col-md-3 {
    margin-bottom: 20px;
  }
}


/* END CATEGORY PAGE*/


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #003580;
  color: white;
  padding: 10px 20px;
}

.navbar .search-bar {
  display: flex;
  gap: 10px;
}

.search-bar input {
  padding: 5px;
  border: 1px solid #ccc;
}

.filters {
  width: 250px;
  padding: 20px;
  background-color: #e7e7e7;
  margin-left: 100px;
  margin-bottom: 1300px;
  margin-top: -500px;
}

.filters .filter-section {
  margin-bottom: 0px;

}

.categories {
  padding: 20px;
  margin-left: 500px;
}

.categories .category-list {
  display: flex;
  gap: 10px;
}

.category-item {
  background-color: #f7f7f7;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.properties {
  padding: 20px;
  margin-left: 500px;
  
}

.property-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.property-info {
  display: flex;
  flex-direction: column;
  
}

.property-info .price {
  font-weight: bold;
  color: green;
}


.breadcrumb {
  font-size: 14px;
  margin-left: 100px;
}

.breadcrumb a {
  text-decoration: none;
  color: blue;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: black;
}
