.hero-section {
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/static/bg-2.393509b48585.png");
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	height: 100vh;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.form-card {
	border-radius: 40px !important;
}

.form-card * {
	border-radius: 40px !important;
	color: white !important;
}

.form-card .form-control::-webkit-input-placeholder {
	color: white;
}

.main-navbar .nav-link {
	color: white !important;
	font-size: 1.5rem;
}

.nav-link:hover {
	color: skyblue !important;
}

input.dateinput[type="date"] {
	position: relative;
}

input.timeinput[type="time"] {
	position: relative;
}

input.dateinput[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	color: transparent;
	background: transparent;
}

input.timeinput[type="time"]::-webkit-calendar-picker-indicator {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	color: transparent;
	background: transparent;
}

.custom-primary {
	background-color: #272e6e;
	color: white !important;
}

.custom-shadow:hover {
	box-shadow: 0 1rem 5rem rgba(0, 0, 0, .175) !important;
}

.form-card {
	background-color: #0b4987 !important;
}

.form-card * {
	background-color: #0b4987 !important;
}

.custom-header-bg {
	background-color: #0b4987 !important;
}

.btn-primary {
	background-color: #0b4987 !important;
	border-color: #0b4987 !important;
}

.custom-bg {
	background-color: #0b4987 !important;
}

.card-link {
	text-decoration: none !important;
}

.toggleContainer {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: fit-content;
	border: 3px solid #0b4987;
	border-radius: 20px;
	background: #0b4987;
	font-weight: bold;
	color: #343434;
	cursor: pointer;
}

.toggleContainer::before {
	content: '';
	position: absolute;
	width: 50%;
	height: 100%;
	left: 0%;
	border-radius: 20px;
	background: white;
	transition: all 0.3s;
}

.toggleCheckbox:checked+.toggleContainer::before {
	left: 50%;
}

.toggleContainer div {
	padding: 1px;
	text-align: center;
	z-index: 1;
}

.toggleCheckbox {
	display: none;
}

.toggleCheckbox:checked+.toggleContainer div:first-child {
	color: white;
	transition: color 0.3s;
}

.toggleCheckbox:checked+.toggleContainer div:last-child {
	color: #0b4987;
	transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:first-child {
	color: #0b4987;
	transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:last-child {
	color: white;
	transition: color 0.3s;
}

.featured-houses {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),  url("/static/landing.30420217d208.jpg");
	/* Replace with your image path */
	background-attachment: fixed;
	/* Key for parallax effect */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.about-airbnb {
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),  url("/static/house_graphic.768342f7b08c.png");
	/* Replace with your image path */
	background-attachment: fixed;
	/* Key for parallax effect */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.trip-hero-section .bg-cover {
  /* height: 100%; */
  background-size: cover;
  background-position: center;
  /* position: relative; */
}

.trip-hero-section .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  height: 100%;
  width: 100%;
  /* padding: 2rem; */
}

.post-list-header {
	background-image: linear-gradient(rgba(0, 0, 0, 0.6)), url("/static/blogs-bg.a10387588f77.jpeg");
}