/* ✅ Header Styles */
/* ✅ Global Box-Sizing Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	backdrop-filter: blur(5px);
	background: rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
	height: 60px;
}

.navbar .nav-link {
	color: #000099;
	font-weight: 500;
	margin-right: 15px;
	transition: color 0.3s ease, font-weight 0.3s ease;
	position: relative;
}

.navbar .nav-link::first-letter {
	color: inherit;
	font-weight: inherit;
	transition: color 0.3s ease, font-weight 0.3s ease;
}

.navbar .nav-link:hover::first-letter {
	color: #fd6400;
	font-weight: bold;
}

.navbar .form-select {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 0.9rem;
}

/* ✅ Dropdown Styles */
.navbar .dropdown-menu {
	background: rgba(255, 255, 255, 0.9);
	border: none;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-item {
	color: #000099;
	font-weight: 500;
	transition: color 0.3s ease, font-weight 0.3s ease;
}

.navbar .dropdown-item:hover::first-letter {
	color: #fd6400;
	font-weight: bold;
}

.navbar .fa-chevron-down {
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}

/* ✅ WhatsApp Icons */
.whatsapp-container {
	display: flex;
	gap: 1rem;
	margin-right: 2rem;
}

.whatsapp-web {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}

.whatsapp-web img {
	width: 35px;
	height: 35px;
	cursor: pointer;
	margin-right: 0rem;
	transition: transform 0.3s ease;
}

.whatsapp-web h6 {
	margin: 5px 0 0;
	color: #000099;
	font-size: 1rem;
	text-align: center;
}

.whatsapp-web img:hover {
	transform: scale(1.1);
}

/* Hide Web Icons on Mobile */
@media (max-width: 768px) {
	.whatsapp-web {
		display: none;
	}
}

/* ✅ Mobile WhatsApp Flyouts */
.whatsapp-flyout {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.whatsapp-flyout img {
	width: 40px;
	height: 40px;
}

@media (max-width: 768px) {
	.whatsapp-flyout {
		display: flex;
	}
}

/* ✅ Video Background */
.video-container {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ✅ Responsive Design */

/* 🎯 Extra Large Screens (Above 2400px) */
@media (min-width: 2400px) {
	.navbar .navbar-brand img {
		height: 80px;
	}

	.navbar .nav-link {
		font-size: 1.4rem;
		margin-right: 20px;
	}

	.navbar .form-select {
		font-size: 1rem;
		padding: 6px 12px;
	}
}

/* 🎯 Large Screens (1920px - 2399px) */
@media (max-width: 2399px) {
	.navbar .navbar-brand img {
		height: 70px;
	}

	.navbar .nav-link {
		font-size: 1.2rem;
		margin-right: 15px;
	}

	.navbar .form-select {
		font-size: 1rem;
		padding: 5px 10px;
	}
}

/* 🎯 Medium-Large Screens (1600px - 1919px) */
@media (max-width: 1919px) {
	.navbar .navbar-brand img {
		height: 65px;
	}

	.navbar .nav-link {
		font-size: 1.1rem;
		margin-right: 12px;
	}

	.navbar .form-select {
		font-size: 0.95rem;
		padding: 5px 8px;
	}
}

/* 🎯 Standard Desktop (1200px - 1599px) */
@media (max-width: 1599px) {
	.navbar .navbar-brand img {
		height: 60px;
	}

	.navbar .nav-link {
		font-size: 1rem;
		margin-right: 10px;
	}

	.navbar .form-select {
		font-size: 0.9rem;
		padding: 4px 8px;
	}
}

/* 🎯 Laptops & Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
	.navbar .navbar-brand img {
		height: 55px;
	}

	.navbar .nav-link {
		font-size: 0.95rem;
		margin-right: 10px;
	}

	.navbar .form-select {
		font-size: 0.85rem;
		padding: 4px 8px;
	}
}

/* 🎯 Tablets (768px - 991px) */
@media (max-width: 991px) {
	.navbar .navbar-brand img {
		height: 50px;
	}

	.navbar .nav-link {
		font-size: 0.9rem;
		margin-right: 8px;
		padding: 8px 0;
	}

	.navbar .form-select {
		margin-top: 10px;
		font-size: 0.8rem;
		padding: 4px 6px;
	}

	.video-container {
		height: 70vh;
	}

	.video-container video {
		object-fit: contain;
	}
}

/* 🎯 Large Phones (480px - 575px) */
@media (max-width: 575px) {
	.navbar .navbar-brand img {
		height: 40px;
	}

	.navbar .nav-link {
		font-size: 0.8rem;
		margin-right: 5px;
	}

	.navbar .form-select {
		width: 100px;
		font-size: 0.75rem;
	}

	.video-container {
		height: 60vh;
	}

	.video-container video {
		object-fit: cover;
	}
}

/* 🎯 Small Phones (320px - 479px) */
@media (max-width: 479px) {
	.navbar .navbar-brand img {
		height: 35px;
	}

	.navbar .nav-link {
		font-size: 0.75rem;
		margin-right: 3px;
	}

	.navbar .form-select {
		width: 90px;
		font-size: 0.7rem;
	}

	.video-container {
		height: 50vh;
	}

	.video-container video {
		object-fit: cover;
	}
}

/* 🎯 Very Small Devices (Below 320px) */
@media (max-width: 320px) {
	.navbar .navbar-brand img {
		height: 30px;
	}

	.navbar .nav-link {
		font-size: 0.7rem;
		margin-right: 2px;
	}

	.navbar .form-select {
		width: 85px;
		font-size: 0.65rem;
	}

	.video-container {
		height: 45vh;
	}

	.video-container video {
		object-fit: cover;
	}
}

.reopen-whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
}

.reopen-whatsapp button {
	background-color: #25d366;
	color: white;
	border: none;
	padding: 10px 16px;
	border-radius: 25px;
	font-size: 0.9rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

/* ✅ Flyout WhatsApp Box */
.whatsapp-flyout-box {
	position: fixed;
	bottom: 90px;
	right: 20px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	padding: 12px 10px 10px;
	width: 130px;
	z-index: 1001;
	display: none;
	flex-direction: column;
	align-items: center;
}

.whatsapp-flyout-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 10px;
	text-decoration: none;
}

.whatsapp-flyout-option img {
	width: 35px;
	height: 35px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.whatsapp-flyout-option h6 {
	margin: 5px 0 0;
	color: #000099;
	font-size: 0.9rem;
	text-align: center;
}

.whatsapp-flyout-option img:hover {
	transform: scale(1.1);
}

.close-flyout {
	position: absolute;
	top: 4px;
	right: 8px;
	font-size: 20px;
	cursor: pointer;
	color: #ff0000;
}

/* Hide all in desktop */
@media (min-width: 769px) {
	.reopen-whatsapp,
	.whatsapp-flyout-box {
		display: none !important;
	}
}
