/* Header Styles */
.header {
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0px;
	/* max-width: 1200px; */
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: #4CAF50;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.logo::before {
}

.contact-info {
	display: flex;
	gap: 20px;
	align-items: center;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(76, 175, 80, 0.1);
	border-radius: 25px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
	font-size: 0.9rem;
	font-size: 16px;
	border: 1px solid #8ccf65;
}

.contact-item:hover {
	background: rgba(76, 175, 80, 0.2);
	transform: translateY(-2px);
}

.inquire-btn {
	background: #226127;
	color: white;
	padding: 7px 24px;
	border: none;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
	cursor: pointer;
}

.inquire-btn:hover {
	background: #226127;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
	color: #fff;
	font-size: 16px;
}

/* Navigation */
.nav {
	background: #226127;
	padding: 0;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
}

.nav-item {
	position: relative;
}

.nav-link {
	display: block;
	padding: 15px 25px;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	font-size: 16px;
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::before {
	width: 80%;
}

.nav-link:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}
.contact-item img {
    width: 25px;
}
.search-icon {
	color: white;
	font-size: 1.2rem;
	padding: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-icon:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.1);
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23a8e6cf;stop-opacity:1" /><stop offset="50%" style="stop-color:%23dcedc8;stop-opacity:1" /><stop offset="100%" style="stop-color:%23f1f8e9;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23grad1)"/><path d="M0,400 Q300,200 600,400 T1200,400 L1200,800 L0,800 Z" fill="%23689f38" opacity="0.7"/><path d="M0,500 Q300,300 600,500 T1200,500 L1200,800 L0,800 Z" fill="%23558b2f" opacity="0.5"/></svg>');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	position: relative;
	margin-top: 120px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.4;0.1" dur="4s" repeatCount="indefinite"/></circle><circle cx="50" cy="70" r="2.5" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.2;0.1" dur="5s" repeatCount="indefinite"/></circle></svg>');
	pointer-events: none;
}

.hero-content {
	max-width: 800px;
	padding: 0 20px;
	animation: fadeInUp 1s ease-out;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	animation: slideInDown 1s ease-out;
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 40px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	animation: slideInUp 1s ease-out 0.3s both;
}

/* Search Form */
.search-form {
	background: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 15px;
	display: flex;
	gap: 20px;
	align-items: end;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	animation: slideInUp 1s ease-out 0.6s both;
	margin-top: 40px;
}

.form-group {
	flex: 1;
	min-width: 200px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-weight: bold;
}

.form-group select {
	width: 100%;
	padding: 12px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	background: white;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group select:focus {
	outline: none;
	border-color: #4CAF50;
	box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.search-btn {
	background: #4CAF50;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	height: fit-content;
}

.search-btn:hover {
	background: #45a049;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Reviews Section */
.reviews {
	padding: 40px 0% 25px;
	background: #f7f8fa;
	position: relative;
}

.box-header-desck.header-bg {
    position: fixed;
}

.header.scrolled .ctnr.box-header-scroll-none {
    display: none;
}
.reviews h2 {
	text-align: center;
	font-size: 33px;
	margin-bottom: 20px;
	color: #333;
	position: relative;
	font-family: "Playfair Display", serif;
}

.reviews h2::after {
}

.reviews-grid {
	/* margin-bottom: 39px; */
}

.review-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	margin: 0px 10px 59px;
	min-height: unset !important;
}

.review-card::before {
}

.review-card:hover {
	transform: translateY(23px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-text {
	font-style: italic;
	line-height: 1.6;
	margin-bottom: 20px;
	color: #555;
}

.reviewer {
	display: flex;
	align-items: center;
	gap: 15px;
}

.reviewer-avatar img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(45deg, #4CAF50, #81C784);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 1.5rem;
}

.reviewer-info h4 {
	margin-bottom: 5px;
	color: #333;
	font-size: 18px;
}

.stars {
	color: #FFD700;
	font-size: 19px;
}

/* Pagination Dots */
.pagination-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #4CAF50;
	transform: scale(1.2);
}

.dot:hover {
	background: #4CAF50;
	transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 10px;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media(max-width:990px){
	.contact-item {
    display: none;
}
}
@media (max-width: 990px) {
	.header-top {
		padding: 10px 0%;
	}

svg.close-mobile path {
    stroke: #000;
}

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #4CAF50;
		flex-direction: column;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	}

	.nav-menu.active {
		display: flex;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.hero {
		height: 80vh;
		margin-top: 80px;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.2rem;
	}

	.search-form {
		flex-direction: column;
		margin: 20px;
		padding: 20px;
	}

	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.review-card {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.reviews h2 {
		font-size: 26px;
	}

	.search-form {
		margin: 10px;
		padding: 15px;
	}
}

/* Scroll animations */
.scroll-animate {
	opacity: 1;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.scroll-animate.animate {
	opacity: 1;
	transform: translateY(0);
}
.box-header-desck {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
    transition: all 0.3s ease;
}

.logo img {
    height: 90px;
}

.form-slider-banner {
    margin-top: -139px;
}

.reviewer-info .stars ul li svg {
    width: 19px;
    height: 19px;
}

.reviewer-info .stars ul {
    display: flex;
    gap: 0px 1px;
}
section.destination {
    background: #f7f8fa;
}
.mobile-menu-toggle svg {
    width: 34px;
    height: 34px;
    background: #cdcdcd;
    border-radius: 100%;
    padding: 3px;
}


.popup-search {
	 position: relative;
	 z-index: 999999;
}
 .popup-search .search-overlay.active {
	 opacity: 1;
	 visibility: visible;
}
 .popup-search .search-overlay {
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 45%;
	 background: rgba(0, 0, 0, 0.5);
	 backdrop-filter: blur(4px);
	 z-index: 1000;
	 opacity: 0;
	 visibility: hidden;
	 transition: all 0.3s ease;
}
 .popup-search .search-popup.active {
	 opacity: 1;
	 visibility: visible;
	 transform: translateX(-50%) translateY(0);
}
 .popup-search .search-popup {
	 position: fixed;
	 top: 14%;
	 left: 50%;
	 transform: translateX(-50%) translateY(-20px);
	 width: 90%;
	 max-width: 100%;
	 background: white;
	 border-radius: 12px;
	 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	 z-index: 1001;
	 opacity: 0;
	 visibility: hidden;
	 transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
 .popup-search .close-btn {
	 position: absolute;
	 top: -9px;
	 right: 0px;
	 background: none;
	 border: none;
	 cursor: pointer;
	 padding: 8px;
	 border-radius: 6px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 transition: background 0.2s ease;
	 z-index: 999999;
}
 .popup-search .close-icon {
	 width: 30px;
	 height: 30px;
	 color: #646060;
}
 .popup-search .popup-search-container {
	 position: relative;
	 padding: 40px 20px;
}
 .popup-search .popup-search-input {
	 width: 100%;
	 padding: 15px 50px 15px 20px;
	 border: 1px solid #e5e7eb;
	 border-radius: 8px;
	 font-size: 16px;
	 background: #f9fafb;
	 outline: none;
	 transition: all 0.2s ease;
}
 .popup-search .popup-search-icon {
	 position: absolute;
	 right: 35px;
	 top: 50%;
	 transform: translateY(-50%);
	 width: 20px;
	 height: 20px;
	 color: #9ca3af;
	 padding: unset;
	 background: none;
}
 ul.nav-menu-2.dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    position: absolute;
    z-index: 999999999;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    overflow: hidden;
}

ul.nav-menu-2.dropdown li {
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #cdcdcd45;
}

ul.nav-menu-2.dropdown li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 8px 10px;
    display: block;
    border-left: 3px solid transparent;
}

ul.nav-menu-2.dropdown li a:hover {
    color: #226127;
    background: #f8f8f8;
    border-left-color: #226127;
    transition: 0.5s ease;
}


li.nav-item:hover ul.nav-menu-2.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: absolute;
    z-index: 999999999;
    transition: 0.5s ease;
}
.search-icon svg {
    width: 25px;
    height: 25px;
}
@media(max-width:1250px){

	.nav-link {
		padding: 15px 13px;
	}
}
@media(min-width:990px){

	.search-icon {
    display: none;
}

.btn-search-desktop {
    padding: 0px 10px;
}

.btn-search-desktop svg {
    width: 23px;
    height: 23px;
    background: none;
}

.search-desk-form form {
    display: flex;
    align-items: center;
    position: relative;
    width: 350px;
    height: 35px;
    background: #fff;
    justify-content: space-between;
    border-radius: 8px;
}

.search-desk-form form button {
    background: none;
}

.search-desk-form form input {
    background: none;
    padding: 0px 10px;
    width: 100%;
    height: 100%;
}

.search-desk-form form input:focus {
    outline: none;
}


	span.nav-toggle {
    display: none;
}
li.nav-item.inquireNow-mobile {
    display: none;
}
.search-icon svg path {
    stroke: #fff;
}
}
@media(max-width:990px){
	.ctnr.box-header-scroll-none {
    display: none;
}
.search-desk-form {
    display: none;
}
.box-header-desck .nav {
    padding: 10px 0px;
	background:#fff;
}
.box-header-logo-mobile {
    display: flex;
    align-items: center;
}

	.logo img {
    height: 60px;
}
	ul.nav-menu-2.dropdown.active {
    opacity: 1;
    height: unset;
    visibility: inherit;
}

	.item-nav-c1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

span.nav-toggle {
    width: 30px;
    height: 30px;
    line-height: 30px;
}
span.nav-toggle svg {
    width: 25px;
    height: 25px;
}

span.nav-toggle svg path {
    stroke: #fff;
}
	ul.nav-menu-2.dropdown {
    position: unset;
    opacity: 0;
    transform: unset;
    visibility: hidden;
    border-radius: unset;
    height: 0px;
}

li.nav-item:hover ul.nav-menu-2.dropdown {
    opacity: 1;
    position: unset;
}

ul.nav-menu-2.dropdown li a {
    padding-left: 48px;
}
}