/* ============================================
   Global Styles 
   ============================================ */

:root {
	--primary-color: #ec6325;
	--secondary-color: #0d263c;
	--body-bg: #eaf0f5;
	--body-text: #44525e;
	--border-color: #c7d5e1;

	--font-base: "Jost", sans-serif;

	--font-size-base: 16px;
	--line-height-base: 1.5;

	--heading-weight: 600;
	--body-weight: 400;

	--radius-1: 6px;
	--radius-2: 12px;

	--transition: all 0.3s linear;
}

body {
	margin: 0;
	font-family: var(--font-base);
	font-size: var(--font-size-base);
	font-weight: var(--body-weight);
	line-height: var(--line-height-base);
	color: var(--body-text);
	background: var(--body-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-base);
	font-weight: var(--heading-weight);
	color: #000;
	margin-top: 0;
}

.container-width {
	max-width: 1600px;
	margin: auto;
}

.nav-bg {
	background: #072540;
}

.gold-btn {
	background: #d9a429;
}

.gold-btn:hover {
	background: #c8931d;
}

.img-card {
	overflow: hidden;
	border-radius: 28px;
}

.img-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.4s;
}

.img-card:hover img {
	transform: scale(1.06);
}

/* ============================================
   Mobile Responsive Styles 
   ============================================ */

/* Mobile First Approach */
@media (max-width: 768px) {
	body {
		font-size: 14px;
	}

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 18px;
	}

	/* Remove overflow-x on mobile */
	html,
	body {
		overflow-x: hidden;
	}

	/* Mobile menu overlay fix */
	#navMenu.hidden {
		display: none !important;
	}

	#navMenu:not(.hidden) {
		display: flex !important;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 13px;
	}

	h1 {
		font-size: 20px;
	}

	h2 {
		font-size: 18px;
	}

	h3 {
		font-size: 16px;
	}

	/* Padding for small screens */
	.px-28 {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	.px-6 {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}

/* iPad and Tablet Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
	.px-28 {
		padding-left: 2rem !important;
		padding-right: 2rem !important;
	}
}

/*  explore section  */

.container-width {
	max-width: 1600px;
	margin: auto;
}

.nav-bg {
	background: #072540;
}

.gold-btn {
	background: #d9a429;
}

.gold-btn:hover {
	background: #c8931d;
}

.img-card {
	overflow: hidden;
	border-radius: 28px;
}

.img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s;
}

.img-card:hover img {
	transform: scale(1.06);
}

/*         Gallery page Css  */

.gallery-masonry {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	grid-auto-rows: 150px;
}

@media (min-width: 768px) {
	.gallery-masonry {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: 180px;
		gap: 16px;
	}
}

@media (min-width: 1024px) {
	.gallery-masonry {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: 200px;
		gap: 20px;
	}
}

.gallery-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #f0f0f0;
	cursor: pointer;
}

.gallery-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
	transform: scale(1.08);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 20px;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-view-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #d9a429;
	color: white;
	border: none;
	cursor: pointer;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.3s ease,
		transform 0.3s ease;
}

.gallery-view-btn:hover {
	background: #c8931d;
	transform: scale(1.1);
}

/* WhatsApp Button */
.whatsapp-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: #25d366;
	color: white;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
	background: #20ba58;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
	font-size: 20px;
}

/* Contact Float Button */
.contact-float-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #ff6b35;
	color: white;
	border: none;
	cursor: pointer;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.contact-float-btn:hover {
	background: #ff5722;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.gallery-masonry {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 12px;
	}

	.gallery-item {
		grid-column: span 1 !important;
		grid-row: span 1 !important;
	}

	.whatsapp-btn span {
		display: none;
	}

	.whatsapp-btn {
		width: 50px;
		height: 50px;
		padding: 0;
		justify-content: center;
	}
}

/* Contact Section */

.contact-section {
	width: 100%;
	/* min-height: 100vh; */
	position: relative;
	background: #d9e1e7;
}

/* TOP CONTENT */
.top-wrapper {
	width: 100%;
	height: 440px;
	padding: 90px 7%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}

.left-content {
	width: 42%;
	padding-top: 20px;
}

.left-content span {
	font-size: 16px;
	font-weight: 600;
	color: #dca329;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.left-content h1 {
	margin-top: 18px;
	font-size: 40px;
	line-height: 1.15;
	font-weight: 600;
	color: #000;
	/* max-width:620px; */
}

/* FORM CARD */
.form-card {
	width: 790px;
	background: #f8f8f8;
	border-radius: 38px;
	padding: 42px 40px 38px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	position: absolute;
	right: 7%;
	top: 120px;
	z-index: 5;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px 20px;
}

.field {
	display: flex;
	flex-direction: column;
}

.field label {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #111;
}

.field input,
.field textarea {
	width: 100%;
	border: none;
	outline: none;
	background: #dde4ea;
	border: 1px solid #cfd7df;
	border-radius: 20px;
	padding: 20px 26px;
	font-size: 18px;
	color: #333;
	font-family: "Poppins", sans-serif;
}

.field input::placeholder,
.field textarea::placeholder {
	color: #8f98a1;
}

.full {
	grid-column: 1 / -1;
}

.time-wrapper,
.date-wrapper {
	position: relative;
}

.time-wrapper i,
.date-wrapper i {
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	color: #58626c;
	font-size: 22px;
	pointer-events: none;
}

textarea {
	height: 165px;
	resize: none;
}

.submit-btn {
	margin-top: 24px;
	background: #f26c21;
	color: #fff;
	border: none;
	padding: 18px 38px;
	border-radius: 18px;
	font-size: 24px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s;
}

.submit-btn:hover {
	background: #dc5e18;
}

/* MAP */
.map-area {
	width: 100%;
	/* height: 470px; */
	overflow: hidden;
	position: relative;
}

.map-area iframe {
	width: 100%;
	height: 100%;
	border: none;
	filter: grayscale(10%);
}

/* WhatsApp Button */
.whatsapp-btn {
	position: absolute;
	left: 14px;
	bottom: 120px;
	background: #22b693;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	z-index: 10;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn i {
	font-size: 24px;
}

/* Scroll Top */
.scroll-top {
	position: fixed;
	right: 18px;
	bottom: 22px;
	width: 52px;
	height: 52px;
	background: #f26c21;
	border-radius: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-decoration: none;
	font-size: 22px;
	z-index: 999;
}

/* Responsive */
@media (max-width: 1400px) {
	.form-card {
		width: 700px;
	}

	.left-content h1 {
		font-size: 48px;
	}
}

@media (max-width: 1100px) {
	.top-wrapper {
		height: auto;
		flex-direction: column;
		gap: 40px;
	}

	.left-content {
		width: 100%;
	}

	.form-card {
		position: relative;
		width: 100%;
		right: auto;
		top: auto;
	}

	.map-area {
		margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.top-wrapper {
		padding: 70px 20px 30px;
	}

	.left-content h1 {
		font-size: 38px;
	}

	.form-card {
		padding: 28px 22px;
		border-radius: 24px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.field input,
	.field textarea {
		font-size: 16px;
		padding: 18px 18px;
	}

	.submit-btn {
		width: 100%;
		font-size: 20px;
	}

	.whatsapp-btn {
		padding: 12px 18px;
		font-size: 15px;
	}

	.map-area {
		height: 300px;
	}
}

/*  blogs page Css */

.blog-card {
	border: 1px solid #cfd6dc;
	transition: 0.35s ease;
}

.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-image {
	overflow: hidden;
	border-radius: 30px;
}

.blog-image img {
	transition: 0.5s ease;
}

.blog-card:hover img {
	transform: scale(1.04);
}

.read-more:hover svg {
	transform: translateX(6px);
}

.read-more svg {
	transition: 0.3s ease;
}

/*  project */

.scrolling-track {
	width: max-content;
	animation: scrollLeft 25s linear infinite;
}

.scrolling-track:hover {
	animation-play-state: paused;
}

.image-card {
	min-width: 320px;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

.image-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.image-card img:hover {
	transform: scale(1.1);
}

@keyframes scrollLeft {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.scrolling-text {
	white-space: nowrap;
	overflow: hidden;
	animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
	from {
		transform: translateX(100%);
	}

	to {
		transform: translateX(-100%);
	}
}

/*    Tour Page Design. */

/* FIXED BACKGROUND */


/* Hide scrollbar */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}