/* Base Styles */
body {
	font-family: "Poppins", sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

section {
	width: 100%;
	height: 100vh;
}

/* Form Elements */
input,
select,
button {
	width: 100%;
	outline: none;
	box-shadow: none;
}

button {
	border: none;
	cursor: pointer;
}

/* Video Background */
.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	z-index: -1;
}

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

/* Facilities Card */
.facilities {
	background-color: #e8ebed;
	border-radius: 20px;
	margin: 10px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.facilities:hover {
	background-color: #d9dbdd;
}

/* Glass Morph Card */
.glass-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(4px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.glass-card h1,
.glass-card p {
	margin: 0;
	padding: 10px 0;
}

/* Media Queries */
@media screen and (max-width: 1000px) {
	.phone-invisible {
		display: none;
	}
}

/* Footer */
.footer-link {
	text-decoration: none;
}

.footer-link:hover {
	text-decoration: underline;
}

/* Utility Classes */
.cursor-pointer {
	cursor: pointer;
}

/* Cards */
.hover-card {
	transition: box-shadow 0.3s ease;
	border-radius: 20px;
	box-shadow: 0 8px 8px 1px rgba(0, 0, 0, 0.2);
}

.hover-card:hover {
	box-shadow: 0 16px 16px 1px rgba(0, 0, 0, 0.2);
}

/* Responsive Images */
.image-container {
	position: relative;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.responsive-image {
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Query Packages Styles */
.bg-lavender-bush {
	background: #E6EBE0;
}

.text-ash-gray {
	color: #9BC1BC;
}

.text-orange {
	color: #ED6A5A;
}

.btn-orange {
	background: #ED6A5A;
}

.card-query-category {
	background-color: transparent;
	color: white;
	border: 2px solid transparent;
	transition: all 0.25s ease;
}

.card-query-category:hover {
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: black;
	background-color: white;
	padding: 10px;
}