/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

:root {
	/* Override the theme colors with the new palette */
	--cnvs-themecolor: #046A38; /* Green */
	--cnvs-themecolor-rgb: 4, 106, 56;
	
	/* Additional custom colors */
	--custom-yellow: #ffd234;
	--custom-muted: #666;
	--custom-white: #fff;
	
	/* Enhanced visual effects */
	--glass-bg: rgba(255, 255, 255, 0.85);
	--shadow-depth: 0 10px 30px rgba(0, 0, 0, 0.15);
	--hover-transform: translateY(-5px);
}

/* Larger Logo Styles */
#logo img {
	height: 120px !important;
	width: auto !important;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	transition: all 0.3s ease;
	text-decoration: none;
}

.sticky-whatsapp-button:hover {
	background-color: #128C7E;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
	.sticky-whatsapp-button {
		width: 50px;
		height: 50px;
		font-size: 25px;
		bottom: 15px;
		right: 15px;
	}
	
	#logo img {
		height: 100px !important;
	}
}

/* Study Abroad Section Styles */
.study-abroad-hero {
	background: linear-gradient(rgba(4, 106, 56, 0.8), rgba(4, 106, 56, 0.9)), url('demos/travel/images/slider/2.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 100px 0;
	text-align: center;
}

.study-abroad-hero .page-title-content {
	background-color: rgba(4, 106, 56, 0.3);
	border-radius: 10px;
	padding: 20px;
	display: inline-block;
	backdrop-filter: blur(5px);
}

.study-abroad-hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.study-abroad-hero p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Group Tours Section Styles */
.group-tours-hero {
	background: linear-gradient(rgba(4, 106, 56, 0.8), rgba(4, 106, 56, 0.9)), url('demos/travel/images/slider/3.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 100px 0;
	text-align: center;
}

.group-tours-hero .page-title-content {
	background-color: rgba(4, 106, 56, 0.3);
	border-radius: 10px;
	padding: 20px;
	display: inline-block;
	backdrop-filter: blur(5px);
}

.group-tours-hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.group-tours-hero p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* World Cup 2026 Section Styles */
.worldcup-hero {
	background: linear-gradient(rgba(4, 106, 56, 0.8), rgba(4, 106, 56, 0.9)), url('demos/travel/images/slider/1.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 100px 0;
	text-align: center;
}

.worldcup-hero .page-title-content {
	background-color: rgba(4, 106, 56, 0.3);
	border-radius: 10px;
	padding: 20px;
	display: inline-block;
	backdrop-filter: blur(5px);
}

.worldcup-hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.worldcup-hero p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section.bg-color {
	background-color: #f8f9fa;
	padding: 60px 0;
}

.section.bg-color .heading-block h2 {
	color: var(--cnvs-themecolor);
}

.section.bg-color .before-heading.color {
	color: var(--custom-yellow);
}

.section.bg-color .feature-box.fbox-dark .fbox-icon i {
	background-color: var(--cnvs-themecolor);
	color: white;
}

.worldcup-image {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow-depth);
}

.worldcup-image img {
	width: 100%;
	height: auto;
}

.overlay-caption {
	background-color: rgba(4, 106, 56, 0.85);
	color: white;
	padding: 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}

.overlay-caption h3 {
	color: white;
	font-size: 1.2rem;
	margin: 0;
}

.owl-carousel-full {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow-depth);
}

.owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}

.owl-prev, .owl-next {
	background-color: rgba(4, 106, 56, 0.8) !important;
	color: white !important;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	margin: 0 10px !important;
	transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
	background-color: var(--cnvs-themecolor) !important;
	transform: scale(1.1);
}

.owl-prev span, .owl-next span {
	font-size: 24px;
	line-height: 1;
}

/* Enhanced portfolio overlay */
.portfolio-overlay .bg-overlay-content {
	background: rgba(4, 106, 56, 0.85);
}

/* Enhanced map section */
#gmap {
	border-radius: 10px;
	box-shadow: var(--shadow-depth);
	overflow: hidden;
}

/* Enhanced testimonials or quotes */
blockquote {
	border-left: 4px solid var(--cnvs-themecolor);
	background: var(--glass-bg);
	padding: 20px;
	border-radius: 0 8px 8px 0;
	box-shadow: var(--shadow-depth);
}

/* Enhanced pagination */
.pagination .page-link {
	color: var(--cnvs-themecolor);
	border: 1px solid var(--cnvs-themecolor);
}

.pagination .page-item.active .page-link {
	background-color: var(--cnvs-themecolor);
	border-color: var(--cnvs-themecolor);
}

.pagination .page-link:hover {
	background-color: #035a2e;
	color: var(--custom-white);
}

/* Tour-specific enhancements */
.feature-box.fbox-dark .fbox-icon i {
	background-color: var(--cnvs-themecolor);
	color: var(--custom-white);
}

.feature-box.fbox-dark:hover .fbox-icon i {
	background-color: #035a2e;
	transform: scale(1.1);
}

.card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow-depth);
	transition: all 0.3s ease;
}

.card:hover {
	transform: var(--hover-transform);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.card-img-top {
	transition: all 0.3s ease;
}

.card:hover .card-img-top {
	transform: scale(1.05);
}

.travel-slider .flexslider {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow-depth);
}

.page-title-video video {
	object-fit: cover;
}

.landing-wide-form .form-control,
.landing-wide-form .form-select {
	background-color: rgba(255, 255, 255, 0.9) !important;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.landing-wide-form .form-control:focus,
.landing-wide-form .form-select:focus {
	border-color: var(--cnvs-themecolor);
	box-shadow: 0 0 0 0.25rem rgba(4, 106, 56, 0.25);
}

/* Enhanced FAQ Styling */
.toggle-border {
	border: none !important;
}

.toggle-border .togglet {
	border-radius: 10px 10px 0 0 !important;
	border-bottom: 1px solid #e9ecef !important;
	transition: all 0.3s ease;
}

.toggle-border .togglet:hover {
	background-color: #e9ecef !important;
}

.toggle-border .togglec {
	border-radius: 0 0 10px 10px !important;
	border-top: none !important;
}

.faq-answer-list {
	list-style: none;
	padding-left: 0;
}

.faq-answer-list li {
	position: relative;
	list-style: none;
	padding-left: 1.5em;
	margin-bottom: 0.5em;
}

.faq-answer-list li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--cnvs-themecolor);
}