/* ==================== ROOT VARIABLES ==================== */
:root {
	--primary-blue: #024d72;
	--light-bg: #e6edf1;
	--dark-bg: #024d72;
	--light-ocean-bg: #51abe0;
	--primary-red: #b42025;
	--primary-black: #171816;
	--sub-header-black: #24272c;
	--dark-text: #081e2a;
	--light-text: #51abe0;
	--muted-text: #5f615e;
	--light-border: #c9dbe7;
	--pad-section-lg-x: clamp(0px, 10vw, 92px);
	--pad-section-lg-y: clamp(0px, 10vw, 40px);
}

@media (max-width: 900px) {
	:root {
		--pad-section-lg-x: 72px;
		--pad-section-lg-y: 26px;
	}
}

@media (max-width: 480px) {
	:root {
		--pad-section-lg-x: 20px;
		--pad-section-lg-y: 8px;
	}
}

/* ==================== GLOBAL STYLES ==================== */
body {
	font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
	margin: 0;
	padding: 0;
}

button {
	font-size: 16px;
	font-weight: 600;
	padding: clamp(0.75rem, 0.4705rem + 0.4367vw, 1rem)
		clamp(1rem, 0.441rem + 0.8734vw, 1.5rem);
	border-radius: 12px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
}

@media (max-width: 772px) {
	button {
		font-size: 12px;
		font-weight: 500;
		padding: 18px 20px;
	}
}

/* ==================== BUTTON ==================== */
.dark-button {
	background-color: var(--dark-bg);
	color: #ffffff;
	transition: background-color border-radius 0.4s ease;
	text-align: center;
	font-size: clamp(0.75rem, 0.3308rem + 0.655vw, 1.125rem);
	padding: clamp(1rem, 0.4705rem + 0.4367vw, 2rem)
		clamp(1rem, 0.441rem + 0.8734vw, 1.5rem);
	line-height: 1;
}

.dark-button:hover {
	background-color: var(--light-ocean-bg);
	border-radius: 54px;
}

.tertiary-button {
	background-color: transparent;
	color: var(--dark-text);
	padding-left: 0px;
	padding-right: 0px;
}

.section-wrapper {
	position: relative;
	--max-width: 1520px;
	--padding: 1rem;
	width: min(var(--max-width), 100% - var(--padding) * 2);
	margin-inline: auto;
}

@media (max-width: 1600px) {
	.section-wrapper {
		--max-width: 1200px;
	}
}

@media (max-width: 1300px) {
	.section-wrapper {
		--max-width: 1120px;
	}
}

/* ==================== SECTION ==================== */
.section-header {
	font-size: 28px;
	font-weight: 800;
	color: var(--dark-text);
	margin-bottom: 20px;
	text-transform: capitalize;
}

.section-p {
	font-size: 18px;
}

@media (min-width: 772px) {
	.section-header {
		font-size: 30px;
		margin-bottom: 38px;
	}

	.section-p {
		font-size: 14px;
	}
}

@media (min-width: 1280px) {
	.section-header {
		font-size: 48px;
		font-weight: 800;
		color: var(--dark-text);
		margin-bottom: 20px;
		text-transform: capitalize;
	}
}

/* ==================== NAVBAR ==================== */
.app-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 9999;
	transition: all 400ms ease-in-out;
}

.app-header.sticky-header {
	backdrop-filter: blur(6px);
	background-color: white;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.app-header .section-wrapper {
	padding-block: 30px;
	transition: all 400ms ease-in-out;
}

.app-header.sticky-header .section-wrapper {
	padding-block: 0;
}

.app-header.sticky-header .section-wrapper .header-logo {
	width: 100px !important;
	height: 80px !important;
}

.app-header.sticky-header .section-wrapper nav {
	background-color: transparent;
	border: none;
	border-radius: 0;
}

.app-header.sticky-header .primary-navigation {
	border: none;
	border-radius: 0;
}

.nav-item {
	font-size: clamp(0.875rem, 0.5955rem + 0.4367vw, 1.125rem);
	font-weight: bolder;
	text-transform: uppercase;
}

.nav-item button {
	font-size: clamp(0.875rem, 0.5955rem + 0.4367vw, 1.125rem);
	font-weight: bold;
	text-transform: uppercase;
}

.nav-item a {
	text-decoration: none;
	color: inherit;
}

/* ==================== HAMBURGER BUTTON ==================== */
.hamburger i {
	transition: transform 0.3s ease;
}

.nav-items.active + .hamburger i {
	transform: rotate(90deg);
}

.dropdown-menu li {
	padding-block: 10px;
}

@media (max-width: 1026px) {
	.app-header:has(.primary-navigation nav.nav-active) {
		height: 100%;
	}

	.app-header.sticky-header {
		backdrop-filter: blur(6px);
		background-color: rgba(255, 255, 255, 0.9);
	}

	.app-header .section-wrapper {
		max-width: 100%;
		width: 100%;
		padding-block: 0;
	}

	.app-header.sticky-header .section-wrapper {
		padding-block: 0;
	}

	.primary-navigation {
		border-radius: 0;
		border: none;
		padding-inline: 0;
	}

	.primary-navigation nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		transform: translateY(-200%);
		opacity: 0;
		background-color: white !important;
		z-index: 10;
		transition: transform 0.4s ease, opacity 0.4s ease;
		border-radius: 0;
		border: none;
		overflow-y: scroll;
	}

	.primary-navigation nav.nav-active {
		transform: translateY(0);
		opacity: 1;
	}

	.primary-navigation nav .nav-items {
		flex-direction: column;
		width: 100%;
		align-items: flex-start;
		padding-top: 100px;
	}

	.nav-item {
		padding-block: 20px;
		padding-left: 20px;
		border-bottom: 1px solid #e2e2e2;
	}

	.nav-item button {
		justify-content: space-between;
		padding-right: 20px;
		padding-block: 0;
		padding-left: 0;
	}

	.nav-item button,
	.nav-item {
		font-size: 18px;
		width: 100%;
	}

	.dropdown-menu {
		transition: all 300ms ease-in-out;
		background-color: transparent;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}

	.dropdown-menu {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.dropdown-menu.open {
		max-height: 500px;
		opacity: 100;
		opacity: 1;
		visibility: visible;
		padding-top: 20px;
	}

	.dropdown-menu li:not(:last-child) {
		padding-block: 20px;
		border-bottom: 1px solid #e2e2e2;
	}

	.dropdown-menu li:last-child {
		padding-top: 20px;
	}
}

/* Hero section-------------------------- */
.highlight-tags {
	font-family: "Yesteryear", cursive;
	color: var(--light-text);
	font-size: 28px;
	font-weight: 400;
}

/* .hero-content h1 .highlight-tags {
	position: relative;
	font-size: 70px;
	font-weight: 800;
	border: 2px dotted #51abe0;
	padding: 0 28px;
	display: inline-block;
} */

.buttons-container {
	display: flex;
	gap: clamp(12px, 10vw, 20px);
}

.who-we-are-btn {
	display: flex;
	align-items: center;
	gap: 8px;
}

.who-we-are-btn img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	flex-shrink: 0;
}

.icon-circle {
	background-color: var(--dark-bg);
	border-radius: 50%;
	padding: 8px;
	color: #ffffff;
}

.hero-images img:first-of-type {
	position: absolute;
	top: -60px;
	left: -120px;
	width: 160px;
	transform: -rotate(45deg);
	object-fit: contain;
}

/* --------------------oversea-section----------------------- */
.oversea-section {
	background-color: #ffffff;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(12px, 5vw, 60px);
}

.oversea-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.oversea-content h1 {
	text-transform: capitalize;
	font-size: 56px;
	font-weight: 800;
	color: var(--primary-blue);
}

.oversea-points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	border-bottom: 2px solid #ededed;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.oversea-point img {
	width: 48px;
	height: auto;
}

.oversea-point h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--sub-header-black);
}

.oversea-contact {
	display: flex;
	justify-content: space-between;
}

.contact-info {
	display: flex;
	align-items: end;
	gap: 16px;
}

.phone-icon {
	width: clamp(40px, 10vw, 48px);
	height: clamp(40px, 10vw, 50px);
	background-color: var(--primary-red);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 16px;
}

.phone-icon > img {
	flex-shrink: 0;
}

.contact-info > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-info > div span:first-child {
	font-weight: 500;
	font-size: 16px;
	color: var(--muted-text);
}

.contact-info > div span:last-child {
	font-weight: 700;
	font-size: 20px;
	color: var(--primary-blue);
}

/* ---------------------------explore-section------------------------------------ */
.explore-section {
	background-color: #ffffff;
	text-align: center;
}

.explore-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: clamp(16px, 2vw, 40px);
}

.explore-content > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.explore-icon {
	background-color: var(--light-bg);
	border-radius: 50%;
	width: 200px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.explore-icon img {
	object-fit: contain;
}

.explore-content span {
	font-size: 32px;
	font-weight: 800;
	color: #24272c;
}

/* ----------------------global section----------------------------- */
.global-section {
	text-align: center;
}

.global-content {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: clamp(0px, 10vw, 68px);
	align-items: center;
}

.global-image {
	max-height: 546px;
	width: auto;
}

.global-description {
	background-color: var(--dark-bg);
	display: grid;
	grid-template-columns: 1fr 1fr;
	color: #ffffff;
	padding: clamp(10px, 2vw, 40px);
	gap: clamp(10px, 2vw, 40px) clamp(8px, 2vw, 30px);
	border-radius: 12px;
}

.global-description > div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.global-description > div span:first-child {
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: 48px;
}

.global-description > div span:last-child {
	font-weight: 600;
	font-size: 20px;
}

/* slider////////////////// */
.testimony-slide-card.active,
.preparation-slide-card.active {
	z-index: 30;
	transform: translateX(0) scale(1);
	opacity: 1;
}

.testimony-slide-card.prev,
.preparation-slide-card.prev {
	z-index: 20;
	transform: translateX(-15%) scale(0.85);
	opacity: 0.4;
	filter: blur(1px);
}

.testimony-slide-card.next,
.preparation-slide-card.next {
	z-index: 20;
	transform: translateX(15%) scale(0.85);
	opacity: 0.4;
	filter: blur(1px);
}

.testimony-slide-card.hidden-left,
.preparation-slide-card.hidden-left {
	z-index: 10;
	transform: translateX(-50%) scale(0.6);
	opacity: 0;
}

.testimony-slide-card.hidden-right,
.preparation-slide-card.hidden-right {
	z-index: 10;
	transform: translateX(50%) scale(0.6);
	opacity: 0;
}

/* ------------------------------------timeline */
#timeline-progress {
	height: 2px;
	background-color: #8b2323;
	/* This makes the movement look like it's sliding, not jumping */
	transition: width 0.4s ease-out;
}

/* Ensure the year swiper doesn't cut off the dots */
.timeline-years {
	padding: 20px 0;
}

/* ------------------slider of images----------------------- */
.scrollbar-hide::-webkit-scrollbar {
	display: none;
}

.scrollbar-hide {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* -----------------service slider */
@media (min-width: 1024px) {
	.serviceSwiper .swiper-wrapper {
		display: grid !important;
		/* Your specific grid requirements */
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
		gap: 3rem 1.5rem !important;
		/* gap-y-12 gap-x-6 */
		transform: none !important;
		width: 100% !important;
		justify-content: center !important;
	}

	.serviceSwiper .swiper-slide {
		width: auto !important;
		margin-right: 0 !important;
		height: auto !important;
	}

	/* Reset Slide widths */
	.homeDestinationSwiper .swiper-slide {
		width: auto !important;
		margin-right: 0 !important;
		height: 100% !important;
	}

	.homeDestinationSwiper .swiper-wrapper {
		display: grid !important;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
		gap: 28px !important;
		transform: none !important;
		width: 100% !important;
	}
}

/* Custom Pagination Styling */
.swiper-pagination-bullet-active {
	background: #24272c !important;
}

/* home destination -------------- */
.servicesTab-container {
	width: calc(100vw - ((100vw - 100%) / 2));
	margin-left: 0;
	overflow: hidden;
}

@media (max-width: 600px) {
	.servicesTab-container {
		width: 100%;
		margin-left: 0;
		overflow: hidden;
	}
}

/* table resonsive */

.faux-th {
	display: none;
}

.faux-th {
	height: 36px;
	display: flex;
	align-items: flex-end;
	position: absolute;
	top: 0;
	font-size: 15px;
	margin: 0;
	color: #c0c0c0;

	@media screen and (min-width: 800px) {
		display: none;
	}
}

.faux-th {
	height: 36px;
	display: flex;
	align-items: flex-end;
	position: absolute;
	top: 0;
	font-size: 15px;
	margin: 0;
	color: #c0c0c0;

	@media screen and (min-width: 800px) {
		display: none;
	}
}

/* -----------------image slider----------------------- */
.imageSlider {
	position: relative;
	padding: 0 0px;
}

.imageSlider .imageItem.slick-slide {
	width: 450px;
	height: 400px !important;
	transition: transform 0.4s;
	position: relative;
}

@media (max-width: 480px) {
	.imageSlider .imageItem.slick-slide {
		width: 300px;
		height: 350px !important;
	}
}

.imageSlider .imageItem.slick-slide:after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.imageSlider .imageItem.slick-slide {
	transform: scale(0.7) translate(640px);
}

.imageSlider .imageItem.slick-slide.slick-center + .slick-slide {
	transform: scale(0.8) translate(-250px);
	z-index: 10;
}

.imageSlider
	.imageItem.slick-slide.slick-center
	+ .slick-slide
	+ .imageItem.slick-slide {
	transform: scale(0.7) translate(-640px);
	z-index: 5;
}

.imageSlider .imageItem.slick-slide.slick-active {
	transform: scale(0.8) translate(250px);
}

.imageSlider .imageItem.slick-slide.slick-center {
	/* margin: 0 -10%; */
	transform: scale(1);
	z-index: 30;
}

.imageSlider .slick-center:after {
	opacity: 0;
}

@media screen and (min-width: 1400px) {
	.imageSlider .imageItem.slick-slide {
		width: 450px;
		height: 450px !important;
		transition: transform 0.4s;
		position: relative;
	}
	.imageSlider .imageItem.slick-slide {
		transform: scale(0.7) translate(600px);
	}

	.imageSlider .imageItem.slick-slide.slick-center + .slick-slide {
		transform: scale(0.8) translate(-200px);
		z-index: 10;
	}

	.imageSlider
		.imageItem.slick-slide.slick-center
		+ .slick-slide
		+ .imageItem.slick-slide {
		transform: scale(0.7) translate(-600px);
		z-index: 5;
	}

	.imageSlider .imageItem.slick-slide.slick-active {
		transform: scale(0.8) translate(200px);
	}

	.imageSlider .imageItem.slick-slide.slick-center {
		/* margin: 0 -10%; */
		transform: scale(1);
		z-index: 30;
	}

	.imageSlider .slick-center:after {
		opacity: 0;
	}
}

.flip-card {
	perspective: 1000px;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.6s ease;
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

/* Front & Back */
.flip-card-front,
.flip-card-back {
	position: absolute;
	inset: 0;

	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	transform-style: preserve-3d;
	overflow: hidden;
	border-radius: inherit;
}

/* Back side */
.flip-card-back {
	transform: rotateY(180deg);
	background: #fff;
}

/* select */
#dropdown-wrapper.is-open #chevron-icon {
	transform: rotate(180deg);
}


/* gallery */
.popup-image {
    z-index: 9999999 !important;
}
.imageSlider .imageItem.slick-center{
	position: relative;
}
.imageSlider .imageItem.slick-center::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid white; 
    border-radius: 1rem;
    pointer-events: none;
    box-sizing: border-box;
    transition: all 0.4s ease;
}




/* Terms & Conditions H5 styling */
.terms-wrapper h5 {
    font-size: clamp(1.5rem, 1.0808rem + 0.655vw, 1.875rem);
    font-weight: 700; /* font-bold */
    margin-bottom: 0.75rem;
}

/* lg:font-extrabold (≥1024px) */
@media (min-width: 1024px) {
    .terms-wrapper h5 {
        font-weight: 800;
    }
}
/* Terms & Conditions paragraph styling */
.terms-wrapper p {
    font-size: clamp(0.875rem, 0.5955rem + 0.4367vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-wrapper h2,
.terms-wrapper h3 {
    font-size: clamp(1.5rem, 1.0808rem + 0.655vw, 1.875rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.terms-wrapper p {
    font-size: clamp(0.875rem, 0.5955rem + 0.4367vw, 1.125rem);
    margin-bottom: 1rem;
}

.terms-wrapper ul {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.terms-wrapper ul li {
    display: flex;
    gap: 0.5rem;
    font-size: clamp(0.875rem, 0.3902rem + 0.6061vw, 1.125rem);
}

.terms-wrapper ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 0.5rem;
    background: #000;
    border-radius: 999px;
    flex-shrink: 0;
}



/* css for cf7 */

.wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

.wpcf7-form-control {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.lgpx-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.lgpy-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.lgrounded-xl { border-radius: 0.75rem !important; }
.lgborder-2 { border-width: 2px !important; }
.focusborder-primary-blue:focus { border-color: #2563eb !important; }

.wpcf7-form p { display: contents !important; }
.wpcf7-form br { display: none !important; }


/* pageDetailsContent */
.pageDetailsContent img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
	margin-top: clamp(0.875rem, 0.7326rem + 0.6329vw, 1.5rem);
}

/* ===== Headings ===== */
.postTitle,
.pageDetailsContent h2 {
	color: #024D72;
	font-weight: 800;
	font-size: clamp(1.875rem, -0.7917rem + 3.3333vw, 3.25rem);
	line-height: 1.15;
	padding-top: clamp(0.875rem, 0.7326rem + 0.6329vw, 1.5rem);
}

.pageDetailsContent h3 {
	color: #024D72;
	font-weight: 800;
	font-size: clamp(1.25rem, 1.818vw, 2rem);
	padding-top: clamp(0.875rem, 0.7326rem + 0.6329vw, 1.5rem);

}


.pageDetailsContent ul {
	padding-left: 2rem;
	margin-top: clamp(0.875rem, 0.7326rem + 0.6329vw, 1.5rem);

	color: #063231;
	font-size: 18px;
	line-height: 1.8;
}

.pageDetailsContent ul li {
	margin-bottom: 0.5rem;
	font-weight: 400;
}

/* Paragraphs */
.pageDetailsContent p {
	font-size: 18px;
	line-height: 1.6;
	color: #063231;
	padding-top: clamp(0.875rem, 0.7326rem + 0.6329vw, 1.5rem);

}

.pageDetailsContent span {
	font-size: 18px;
	line-height: 1.6;
	color: #063231;
}

/* blockquote */
.pageDetailsContent blockquote {
	position: relative;
	background: #F8E9E9;
	border-radius: 8px;
	padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px) clamp(64px, 12vw, 120px);
	margin-top: clamp(0.875rem, 0.7326rem + 0.6329vw, 1.5rem);

}

/* Quote icon */
.pageDetailsContent blockquote::before {
	content: "“";
	position: absolute;
	left: clamp(16px, 3vw, 24px);
	top: clamp(-10px, 1vw, 0);
	font-size: clamp(72px, 18vw, 150px);
	font-weight: 700;
	line-height: 1;
	color: #b42124;
}

/* Text */
.pageDetailsContent blockquote,
.pageDetailsContent blockquote p {
	font-size: clamp(16px, 2.5vw, 24px);
	font-weight: 600;
	color: #131515;
}

.pageDetailsContent blockquote p {
	margin: 0;
}
