* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	background: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 17px;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	color: #fff;
	padding: 30px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: background 0.3s, padding 0.3s;
}

#header.fixed {
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(6px);
	padding: 10px 0;
}

#header .container {
	width: 95%;
	max-width: 1600px;
}

#header .row {
	justify-content: space-between;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
	backdrop-filter: blur(6px);
}

#header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title,
#header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item h4.mega-block-title {
	font-weight: 600;
	color: #000;
	font-size: 20px;
	margin-bottom: 15px;
}

#header .ktm-icon-widget-content a {
	color: #000 !important;
	text-decoration: none;
}

#header .ktm-image-widget-content {
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.3);
}

#header .ktm-image-widget-content:hover {
	background: rgba(41, 166, 67, 1);
}


#header .ktm-image-widget-content a {
	display: block;
	text-decoration: none;
}

#header .ktm-image-widget-content img {
	display: inline-block;
	margin-bottom: 15px;
	border-radius: 10px;
}

#header .ktm-image-widget-content h4,
#header .ktm-image-widget-content a b {
	font-weight: 400;
	color: #000;
	font-size: 18px;
}

#header .ktm-image-widget-content:hover a b {
	color: #fff;
}

#header .ktm-image-widget-content img {
	display: inline-block;
	margin-bottom: 15px;
}

#header .ktm-icon-left-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
}

#header .ktm-icon-left-wrapper img {
	width: 45px;
	height: 45px;
}

#header .ktm-icon-left-wrapper b {
	font-weight: 400;
	color: #000;
	font-size: 17px;
	display: block;
	line-height: 20px;
}

#header .ktm-icon-widget-link {
	padding: 15px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 8px;
	text-decoration: none;
	display: block;
	transition: background 0.3s, box-shadow 0.3s;
}

#header .ktm-icon-widget-link:hover {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#header .textwidget a {
	color: #ec2328;
	text-decoration: none;
}

#header .textwidget a.button2 {
	color: #fff;
	text-decoration: none;
}

#header .textwidget a:hover {
	text-decoration: underline;
}

#header .mega-sub-menu {
	position: relative;
}

#header #mega-menu-primary>li>ul.mega-sub-menu::after {
	content: "" !important;
	width: 100px;
	height: 100px;
	background: url(../images/keralam.svg) no-repeat scroll;
	background-size: contain;
	opacity: 0.3;
	position: absolute;
	right: 0;
	bottom: 0;
}

.destination_widget_list .item a {
	background-size: cover;
	display: block;
	height: 200px;
	width: 100%;
	border-radius: 10px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}

.destination_widget_list .item a::after {
	content: "";
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
	transition: opacity 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	z-index: 1;
}

.destination_widget_list .item a:hover::after {
	opacity: 1;
}

.destination_widget_list .item a b {
	color: #fff;
	position: absolute;
	bottom: 20px;
	left: 20px;
	font-size: 20px;
	font-weight: 500;
	z-index: 3;
	transition: left 0.3s ease;
}

.destination_widget_list .item a:hover b {
	left: 30px;
}

#header .view-all-button {
	background: #29a643;
	color: #fff;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	margin-top: 20px;
}

/*
#header ul li a {
	text-transform: uppercase;
	color: #fff;
	font-size: 14px;
	transition: color 0.3s, border-bottom 0.3s;
	text-decoration: none;
	padding: 10px 15px;
	display: inline-block;
}

#header ul li ul {
	position: absolute;
	background: #fff;
	padding: 0 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	display: none;
	z-index: 1000;
	list-style: none;
	width: 300px;
}

#header ul li>ul::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
	position: absolute;
	left: 10px;
	top: -10px;
}

#header ul li:hover ul {
	display: block;
}

#header ul li ul li a {
	color: #000;
	display: block;
	text-align: left;
	padding: 10px 20px;
	border-bottom: 1px solid #eee;
}

#header ul li ul li a:after {
	display: none !important;
}

#header ul li a:after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background: #29a643;
	margin-top: 5px;
	transition: width 0.3s ease-in-out;
	border-radius: 5px;
}

#header ul li a:hover:after {
	width: 100%;
}

#header ul li a:hover {
	color: rgb(41, 166, 67);
} */

#header .brand img {
	height: auto;
	width: 250px;
}

.button2,
.button3 {
	background: #29a643;
	border: 1px solid #29a643;
	text-transform: uppercase;
	color: #fff;
	padding: 10px 11px;
	font-size: 14px;
	display: inline-block;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.3s, color 0.3s, border-color 0.3s;
	font-weight: 500;
}

.button2.large {
	padding: 14px 30px;
}

.button2:hover {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(6px);
	border-color: #218838;
	color: #218838;
}

.button3 {
	background: transparent;
	color: #29a643;
}

.button3:hover {
	background: #29a643;
	color: #fff;
	border-color: #29a643;
}

.link {
	text-decoration: none;
	color: #29a643;
}

.link:hover {
	text-decoration: underline;
}

#hero {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

#hero .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	z-index: 0;
}

#hero .slide::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0.4;
	background: #000;
	z-index: 1;
}

#hero .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 8s ease-in-out;
	object-position: bottom center;
}

#hero .slide.active {
	opacity: 1;
	z-index: 1;
}

#hero .slide.active img {
	transform: scale(1.1);
}

#hero .text-overlay {
	position: absolute;
	top: 35%;
	left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	opacity: 0;
	z-index: 990;
	width: 85%;
	max-width: 1400px;
}

#hero .text-overlay .cover {
	width: 70%;
}


#hero .text-overlay img {
	width: 180px;
	height: auto;
	margin-bottom: 20px;
}

#hero .slide.active .text-overlay {
	opacity: 1;
}

#hero .text-overlay h2 {
	font-size: 3.6rem;
	margin-bottom: 1vh;
	line-height: 1.2em;
	font-weight: 700;
}

#hero .text-overlay p {
	font-size: 1.4vw;
}

#hero .logos {
	position: absolute;
	bottom: 170px;
	right: 25px;
	z-index: 2;
	display: flex;
	gap: 20px;
	max-width: 300px;
	background: rgba(255, 255, 255, 0.3);
	padding: 10px;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

#hero .logos .item {
	width: 60%;
	height: 100%;
	text-align: center;
}

#hero .logos .item:nth-child(1) {
	width: 40%;
}

#hero .logos .item img {
	width: 100%;
	height: auto;
	opacity: 1;
}

/* Slider Navigation Styles */
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #fff;
	font-size: 1rem;
	font-weight: bold;
	padding: 10px;
	cursor: pointer;
	z-index: 1000;
	transition: background 0.3s ease;
	border-radius: 5px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
}

.slider-nav:hover {
	background: rgba(255, 255, 255, 0.5);
}

.slider-nav:after {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url("../images/right-arrow-angle.png") no-repeat center center;
	background-size: contain;
}

.slider-nav.prev:after {
	transform: rotate(180deg);
}

.slider-nav.prev {
	left: 30px;
	font-size: 0;
}

.slider-nav.next {
	right: 30px;
	font-size: 0;
}

/* Navigation Dots */
.slider-dots {
	position: absolute;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 1000;
	display: none;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.dot:hover {
	background: rgba(255, 255, 255, 0.8);
	transform: scale(1.2);
}

.dot.active {
	background: #29a643;
	transform: scale(1.3);
}

.news-ticker-bar {
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 100%;
	z-index: 20;
	background: rgba(11, 125, 192, 0.8);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	color: #fff;
	padding: 20px 0;
	overflow: hidden;
}

.news-ticker-bar .d-flex {
	gap: 20px;
}

.ticker-label {
	background: #fff;
	padding: 5px 15px;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	border-radius: 4px;
	white-space: nowrap;
	flex-shrink: 0;
	color: #000;
	position: relative;
}

.ticker-label::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 120%;
	height: 160%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 4px;
	opacity: 0;
	animation: signalRing 1.6s ease-out infinite;
	pointer-events: none;
}

@keyframes signalRing {
	0% {
		transform: translate(-50%, -50%) scale(0.85);
		opacity: 0.55;
	}

	70% {
		opacity: 0.05;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.35);
		opacity: 0;
	}
}

.ticker-content-wrapper {
	flex-grow: 1;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-items {
	display: flex;
	align-items: center;
	white-space: nowrap;
	animation: ticker-scroll 30s linear infinite;
}

.ticker-items:hover {
	animation-play-state: paused;
}

.ticker-item {
	display: inline-flex;
	align-items: center;
	margin-right: 40px;
}

.ticker-item .dot {
	width: 10px;
	height: 10px;
	background-color: #000;
	border-radius: 50%;
	margin-right: 15px;
	display: inline-block;
}

.ticker-item a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	transition: color 0.3s ease;
}

.ticker-item a:hover {
	color: #29a643;
}

@keyframes ticker-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

#graph {
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.3);
	height: 100%;
	padding: 20px;
	border-radius: 25px;
}

#graphbox {
	box-shadow: 0px 6.83px 37.56px 0px #0000001f;
	border-radius: 20px;
	padding: 30px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.title {
	margin-bottom: 40px;
	text-align: center;
}

.title h2 {
	font-size: 2.5rem;
	font-weight: 600;
	color: #1e1e1e;
	text-transform: uppercase;
}

#latest_news {
	padding: 60px 0;
}

#latest_news .news_item {
	display: flex;
	margin-bottom: 30px;
}

#latest_news .news_item img {
	border-radius: 20px;
	max-width: 100%;
	display: block;
}

#latest_news .news_item .thumb {
	width: 50%;
	padding-right: 20px;
}

#latest_news .news_item .content {
	width: 50%;
}

#latest_news .news_item .content h3,
#latest_news .news_item .content h3 a {
	font-size: 1.5rem;
	margin-bottom: 10px;
	font-weight: 600;
	color: #000;
	text-decoration: none;
}

#latest_news .news_item .details {
	margin-bottom: 10px;
}

#latest_news .news_item .thumb {
	display: block;
	width: 50%;
	height: 210px;
	background-size: cover !important;
	background-position: center;
	border-radius: 10px;
	margin-right: 30px;
}

#latest_news .news_item .post_date {
	font-weight: 600;
	font-size: 0.8rem;
	color: #1e1e1e;
}

#latest_news .news_item .details .category {
	display: inline-block;
	margin-right: 10px;
	font-size: 0.8rem;
	color: #fff;
	background: #f29d9d;
	border-radius: 5px;
	text-decoration: none;
	padding: 0 5px;
}

#latest_news .news_item.full {
	display: flex;
	flex-wrap: wrap;
}

#latest_news .news_item.full .thumb {
	width: 100%;
	height: 320px;
	margin-bottom: 15px;
}

#latest_news .news_item.full .content {
	width: 100%;
}

#discover_kerala {
	background: #eeeeee;
	padding: 80px 0;
	position: relative;
}

#discover_kerala .container {
	position: relative;
	z-index: 2;
}

#discover_kerala:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 400px;
	height: 400px;
	background: url(../images/human.webp) no-repeat scroll left center;
	background-size: contain;
	z-index: 1;
	filter: grayscale(100%);
	opacity: 0.3;
}

.location_list .item {
	width: 25%;
	margin-bottom: 25px;
}

.location_list .item .cover {
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location_list .item:hover .cover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.location_list .image_section {
	display: flex;
	justify-content: end;
	margin-bottom: 20px;
	position: relative;
}

.location_list .image_section .thumb {
	width: 80%;
	height: 180px;
	background-size: cover;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.location_list .image_section .number {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #000;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.3s ease;
}

.location_list .item:hover .image_section .thumb {
	width: 100%;
}

.location_list .item:hover .image_section .number {
	color: #fff;
	left: 10px;
	top: 10px;
}

.location_list h4 {
	font-size: 1.3em;
	font-weight: 600;
}

.location_list .button {
	color: #29a643;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.9em;
	font-weight: 600;
	transition: all 0.1s ease-in-out;
}

.location_list .button:hover {
	letter-spacing: 2px;
}

#video_gallery {
	padding: 80px 0;
}

.video_list .image {
	height: 150px;
	width: 100%;
	background-size: cover;
	background-position: center center;
	display: block;
	position: relative;
}

.video_list .time {
	background: rgba(255, 255, 255, 0.3);
	padding: 5px 10px;
	border-radius: 20px;
	color: #fff;
	backdrop-filter: blur(2px);
	position: absolute;
	right: 30px;
	top: 30px;
	font-size: 0.8em;
	font-weight: 600;
}

.video_list .cover {
	border: 1px solid #ddd;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

.video_list .cover img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}

.video_list .content {
	padding: 5px;
}

.video_list h4 {
	font-size: 1em;
	font-weight: 400;
}

#csr_initiatives {
	padding: 80px 0;
}

#previous_marts {
	padding: 80px 0;
	position: relative;
	background: #000;
	overflow: hidden;
}

#previous_marts::after {
	background: #29a643;
	background: radial-gradient(circle,
			rgba(41, 166, 67, 0.4) 0%,
			rgba(0, 0, 0, 0) 48%);
	position: absolute;
	left: 0;
	right: 0;
	top: -55%;
	height: 100%;
	content: "";
}

#previous_marts .title {
	color: #fff;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 5;
}

#previous_marts .title h2 {
	color: #fff;
}

.mart_list.owl-carousel .owl-stage-outer {
	padding: 30px 0 50px;
}

.mart_list .item img {
	position: absolute;
	width: 280px !important;
	height: 280px !important;
	border-radius: 20px;
	background: white;
	transition: transform 0.4s ease, box-shadow 0.4s;
	overflow: hidden;
	object-fit: cover;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	border: 8px solid #fff;
}

.mart_list .item img.img1 {
	transform: rotate(7deg);
	z-index: 3;
	position: relative;
}

.mart_list .item img.img2 {
	transform: rotate(0deg);
	z-index: 2;
}

.mart_list .item img.img3 {
	transform: rotate(-7deg);
}

/* Hover effect */
.mart_list .item:hover img.img1 {
	transform: rotate(0deg) scale(1.07);
	box-shadow: 0 8px 32px rgba(41, 166, 67, 0.25);
	z-index: 5;
}

.mart_list .item:hover img.img2 {
	transform: rotate(-5deg) scale(1.03);
	z-index: 4;
}

.mart_list .item:hover img.img3 {
	transform: rotate(-12deg) scale(0.98);
	z-index: 3;
}

.mart_list .item .image_group {
	position: relative;
	cursor: pointer;
	transition: transform 0.3s ease;
	padding: 0;
}

.mart_list h5 {
	position: absolute;
	bottom: 12px;
	font-weight: 600;
	color: white;
	text-shadow: 2px 2px 5px black;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 8;
	transform: rotate(7deg);
	font-size: 1.7em;
	transition: transform 0.3s ease;
}

.mart_list h5 span {
	display: inline-block;
	width: 200px;
}

.mart_list .item:hover h5 {
	transform: scale(1.1) rotate(0deg);
}

#previous_marts .mart_list .owl-dot {
	margin-top: 20px;
}

.mart_list .owl-dot span {
	width: 8px;
	height: 8px;
	background: #d9d9d9;
}

#previous_marts .mart_list .owl-dot.active span {
	background: #29a643;
}

#previous_marts .mart_list .owl-nav {
	width: 300px;
	margin: 0 auto;
	position: relative;
}

#previous_marts .mart_list .owl-nav button {
	width: 48px;
	height: 48px;
	border: none;
	transition: color 0.3s ease;
	background: url("../images/arrow.svg") no-repeat center center;
	overflow: hidden;
	text-indent: -999999px;
	position: absolute;
	right: 0;
}

#previous_marts .mart_list .owl-nav button.owl-prev {
	right: unset;
	left: 0;
	transform: rotate(180deg);
}

#footer {
	background: #eee;
	color: #667085;
	padding: 80px 0;
	font-size: 16px;
}

#footer .about {
	display: flex;
}

#footer .about img {
	width: 150px;
	height: 120px;
}

#footer .logo {
	display: flex;
	gap: 20px;
	padding-top: 30px;
	align-items: center;
	width: 80%;
}

#footer .logo .item {
	width: 60%;
}

#footer .logo .item:nth-child(1) {
	width: 40%;
}

#footer .logo img {
	width: 100%;
	height: auto;
}

#footer h3 {
	font-size: 1rem;
	margin-bottom: 10px;
	color: #1e1e1e;
	font-weight: 600;
}

#footer .phone,
#footer .address,
#footer .whatsapp,
#footer .email {
	margin-bottom: 20px;
	padding-left: 50px;
	position: relative;
}

#footer .phone::before,
#footer .whatsapp::before,
#footer .email::before,
#footer .address::before {
	content: "";
	background-image: url("../images/phone.svg");
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background-size: contain;
}

#footer .whatsapp::before {
	background-image: url("../images/whatsapp.svg");
}

#footer .email::before {
	background-image: url("../images/email.svg");
}

#footer .address::before {
	background-image: url("../images/location.svg");
}

#footer .social {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	list-style: none;
	padding: 0;
	margin: 10px 0 0;
	gap: 20px;
}

#footer .footer_menu,
#footer .footer_menu_list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}

#footer .footer_menu li {
	margin-bottom: 10px;
	width: 50%;
}

#footer .footer_menu a {
	text-decoration: none;
	color: #666;
	transition: color 0.3s ease;
}

#footer .footer_menu a:hover {
	color: #29a643;
}

.secfoot {
	padding-top: 50px;
	align-items: center;
}

.secfoot p {
	font-size: 14px;
	color: #666;
	line-height: 1.6em;
	margin: 0;
}

.secfoot p a {
	color: #29a643;
	text-decoration: none;
}

/* inner page styles */
#banner {
	background-size: cover;
	background-position: center center;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

#banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(3px);
}

#banner .container {
	position: relative;
	z-index: 1;
	text-align: center;
}

#banner h1.title {
	color: #fff;
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 20px;
}

#banner p {
	color: #fff;
	font-size: 1.3rem;
	font-weight: 300;
}

#content {
	padding: 80px 0;
}

#content.single_page h3 {
	font-weight: 600;
	margin: 20px 0;
	font-size: 1.8rem;
}

.single_content h1,
.single_content h2,
.single_content h3,
.single_content h4,
.single_content h5,
.single_content h6 {
	margin-bottom: 25px;
}

.single_content p {
	margin-bottom: 25px;
	margin-top: 25px;
	line-height: 1.8em;
}

.image_cover {
	margin-bottom: 30px;
}

.image_cover img {
	width: 100%;
	height: auto;
	display: block;
}

#about {
	padding: 100px 0;
	background: #eeefdf;
}

.about-container {
	margin-bottom: 80px;
}

.about-container p {
	font-size: 1.1em;
	line-height: 1.6em;
	text-align: justify;
}

.about-video video {
	transition: transform 0.4s ease;
	display: block;
}

.about-video:hover video {
	transform: scale(1.02);
}

.about-parallax-section {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	background: #fafafa;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-parallax-section .parallax-content {
	text-align: center;
	z-index: 10;
	position: relative;
}

.about-parallax-section .sub {
	font-size: 14px;
	letter-spacing: 2px;
	color: #666;
}

.about-parallax-section .title {
	font-size: 2.5em;
	line-height: 65px;
	font-weight: 900;
	margin: 20px 0;
}

.about-parallax-section .desc {
	max-width: 450px;
	margin: auto;
	font-size: 17px;
	color: #333;
	margin-bottom: 30px;
}

.about-parallax-section .number {
	margin-top: 30px;
	font-size: 13px;
	color: #555;
	display: block;
	letter-spacing: 3px;
}

/* Floating Images */
.about-parallax-section .p-img {
	position: absolute;
	width: 400px;
	opacity: 0.9;
	transition: transform 0.2s linear;
}

/* Positions */
.about-parallax-section .img1 {
	left: 0;
	top: 10%;
}

.about-parallax-section .img2 {
	right: 0;
	top: 15%;
}

.about-parallax-section .img3 {
	left: 3%;
	bottom: 7%;
	width: 400px;
}

.about-parallax-section .img4 {
	right: 12%;
	bottom: 30%;
	width: 200px;
}

.about-parallax-section .img5 {
	top: 0%;
	left: 35%;
	width: 300px;
	opacity: 0.2;
}

.about-parallax-section .img6 {
	right: 1%;
	bottom: 2%;
	width: 320px;
}

/*timeline styles start here*/
div.icon img,
div.icon svg {
	width: 100px;
	height: 100px;
}

div.icon {
	width: 100%;
	margin-bottom: 20px;
}

.timeline-container {
	position: relative;
	width: 100%;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 25px;
	background: rgba(0, 0, 0, 0.3);
	padding: 20px;
	backdrop-filter: blur(5px);
}

.timeline-container::after {
	content: "";
	display: table;
	clear: both;
}

.timeline {
	width: 100%;
}

.timeline-list {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.timeline-list-wrap {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	transform: translate3d(0, 0, 0);
	transition: transform 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.timeline-item {
	float: left;
	width: 100%;
	/* Changed from fixed width */
	height: 400px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	padding: 20px;
	/* Added padding */
	background: #fff;
	/* Ensure background */
}

.timeline-dots-wrap {
	position: absolute;
	overflow: hidden;
	z-index: 10;
	/* Ensure dots are above content if needed, or side by side */
}

/* Horizontal Mode (Default) - Keeping as fallback/base */
.timeline-horizontal .timeline-dots-wrap {
	width: 100%;
	height: 35px;
	bottom: -50px;
	/* Default position */
}

.timeline-horizontal .timeline-dots {
	background: url("../img/timeline-bg.png") bottom repeat-x;
}

.timeline-horizontal .timeline-dots li {
	float: left;
	width: 50px;
	text-align: center;
}

/* Vertical Mode - Ruler Style */
.timeline-vertical {
	display: flex;
	/* Use flexbox for layout */
	flex-direction: row-reverse;
	/* Dots on left, content on right? Or standard? Let's try standard flex */
}

/* We need to override the JS generated structure slightly with CSS or adapt to it.
   JS wraps items in .timeline-list-wrap -> .timeline-list
   And dots in .timeline-dots-wrap
   They are siblings in .timeline container.
*/

.timeline-vertical .timeline-list {
	width: calc(100% - 100px);
	/* Reserve space for ruler */
	float: right;
	/* The Ruler Line */
}

.timeline-vertical .timeline-dots-wrap {
	width: 100px;
	/* Width of the ruler area */
	height: 100%;
	top: 0;
	left: 0;
	/* Light background for ruler area */
	border-right: 1px solid #fff;
	/* Ruler edge */
}

.timeline-vertical .timeline-dots {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	/* Remove background image for ruler style */
	background: none;
	padding-left: 0;
}

.timeline-vertical .timeline-dots li {
	width: 100%;
	position: relative;
	height: 60px;
	/* Fixed height for ticks */
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 30px;
	box-sizing: border-box;
}

/* The Tick */
.timeline-vertical .timeline-dots li::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 10px;
	height: 1px;
	background: #fff;
	transform: translateY(-50%);
}

/* Active Tick */
.timeline-vertical .timeline-dots li.slide-active::after {
	width: 20px;
	background: #0bb02d;
	height: 2px;
}

.timeline-vertical .timeline-dots button {
	padding: 0;
	background: none;
	border: none;
	text-align: right;
	font-weight: 500;
	color: #fff;
	transition: all 0.3s ease;
}

.timeline-vertical .timeline-dots li.slide-active button {
	color: #fff;
	font-size: 24px;
}

.timeline-vertical .timeline-dots li {
	/* Match content height for sync sliding */
	align-items: flex-start;
	/* Align year to top of content */
	padding-top: 20px;
}

.timeline-vertical .timeline-dots li::after {
	top: 34px;
	/* Adjust tick position */
}

.timeline-vertical .timeline-dots li.slide-active::after {
	top: 40px;
}

/* Hide navigation arrows if they exist in HTML but not used in vertical ruler */
.timeline-nav {
	display: none;
}

.theme-2 {
	width: 100%;
	border-radius: 10px;
	height: 400px;
}

.timeline-list .inner_content {
	padding: 30px;
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	height: 100%;
}

.timeline-list .inner_content h4 {
	color: #fff;
	margin-bottom: 20px;
}

.timeline-small-box .timeline-list {
	height: 400px;
}

/* Content Animations */
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 40px, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* Hide content by default on all slides */
.timeline-item .inner_content .icon,
.timeline-item .inner_content h4,
.timeline-item .inner_content p {
	opacity: 0;
	transform: translate3d(0, 40px, 0);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Animate content on active slide */
.box-item.slide-active .inner_content .icon {
	animation: fadeInUp 1s ease-out both;
	animation-delay: 0.5s;
}

.box-item.slide-active .inner_content h4 {
	animation: fadeInUp 1s ease-out both;
	animation-delay: 0.8s;
}

.box-item.slide-active .inner_content p {
	animation: fadeInUp 1s ease-out both;
	animation-delay: 1s;
}

/*timeline styles end here*/
/*destination list style start here*/
.destination-archive-container {
	padding: 60px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	min-height: 100vh;
}

.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

.archive-header {
	text-align: center;
	margin-bottom: 50px;
}

.archive-title {
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 15px;
	font-weight: 700;
}

.archive-description {
	font-size: 1.1rem;
	color: #7f8c8d;
	max-width: 600px;
	margin: 0 auto;
}

.filter-container {
	margin-bottom: 40px;
	text-align: center;
}

.filter-buttons {
	display: inline-flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.filter-btn {
	padding: 10px 24px;
	border: 1px solid #218838;
	background: transparent;
	color: #218838;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
	background: #218838;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.destination-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.destination-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.destination-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.destination-card:hover .destination-img {
	transform: scale(1.1);
}

.placeholder-img {
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #f1f2f6, #ddd);
}

.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.destination-card:hover .card-overlay {
	opacity: 1;
}

.card-link {
	color: white;
	text-decoration: none;
	padding: 12px 25px;
	border: 1px solid white;
	border-radius: 25px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.card-link:hover {
	background: white;
	color: #2c3e50;
}

.card-content {
	padding: 25px;
}

.card-title {
	font-size: 1.3rem;
	color: #2c3e50;
	margin-bottom: 12px;
	font-weight: 600;
}

.card-excerpt {
	color: #7f8c8d;
	line-height: 1.6;
	margin-bottom: 15px;
}

.card-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.tag {
	background: #ecf0f1;
	color: #2c3e50;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 0.85rem;
	font-weight: 500;
}

@media (max-width: 768px) {
	.destinations-grid {
		grid-template-columns: 1fr;
	}

	.filter-buttons {
		gap: 5px;
	}

	.filter-btn {
		padding: 10px 18px;
		font-size: 0.9rem;
	}
}

/* DESTINATION LIST STYLES END HERE */
/*Contact page style start here*/
#contact {
	padding: 100px 0;
}

#contact h2 {
	margin-bottom: 40px;
	font-size: 1.6rem;
	font-weight: 700;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
	width: 100%;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 1rem;
	transition: all 0.2s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
	border-color: #00b38f;
	/* you can replace with your brand color */
	box-shadow: 0 0 0 3px rgba(0, 179, 143, 0.15);
	outline: none;
}

.contact-form-wrapper textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form-wrapper .btn-primary {
	background-color: #00b38f;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	padding: 0;
	height: 50px;
	transition: background 0.3s ease;
	width: 200px;
}

.contact-form-wrapper .btn-primary:hover {
	background-color: #009f7f;
}

.contact-form-wrapper .wpcf7-not-valid-tip {
	font-size: 0.9rem;
	color: #d9534f;
	margin-top: 4px;
}

#contact-info-section {
	padding-left: 50px;
}

.contact-info-box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.contact-item:hover {
	transform: translateY(-5px);
}

.icon-box {
	flex-shrink: 0;
	background: linear-gradient(135deg, #00afda, #00b38f);
	color: #fff;
	border-radius: 10px;
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.contact-content h4 {
	font-size: 1.1rem;
	color: #1a1a1a;
	font-weight: 600;
	margin-bottom: 6px;
}

.contact-content p {
	font-size: 0.95rem;
	color: #555;
	margin: 0;
	line-height: 1.5;
}

.contact-content a {
	color: #007b8e;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-content a:hover {
	color: #00b38f;
}

.map {
	padding: 50px 0;
}

/*contact page styles end here*/
/* gallery page styles start here */
#gallery {
	padding: 100px 0;
}

.gallery-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.gallery {
	margin-top: 20px;
}

.wp-block-gallery.has-nested-images .wp-block-image {
	width: calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*.66667);
}

.wp-block-gallery.has-nested-images .wp-block-image a {
	display: block;
	width: 100%;
}

.wp-block-gallery.has-nested-images .wp-block-image img {
	width: 100%;
	height: auto;
}

#header .gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

#header .gallery br {
	display: none !important;
}

#header .gallery-item {
	float: none !important;
	margin: 0 !important;
}

#header .gallery-item img {
	width: 100%;
	border: none !important;
}

.gallery-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
	transform: scale(1.05);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	padding: 40px 20px 20px;
	color: white;
}

.gallery-title {
	font-size: 1.2em;
	font-weight: 600;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* gallery page styles end here */
#committee {
	padding: 100px 0;
	background: #f5f5f5;
}

.committee-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 20px;
}

.committee-member {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	transition: transform 0.3s ease;
	position: relative;
	border: 1px solid #eee;
}

.member-photo img {
	width: 100%;
	height: 290px;
	object-fit: cover;
	border-radius: 15px;
}

.member-info {
	padding: 15px 10px;
	margin: auto;
	text-align: center;
}

.member-name {
	margin: 0 0 5px 0;
	color: #000;
	font-size: 1.2em;
}

.member-designation {
	margin: 0;
	color: #333;
	font-style: italic;
	font-size: 0.9em;
}

#cst-content {
	padding: 100px 0;
}

.csr-grid .content {
	padding: 25px 20px;
}

.csr-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.csr-item {
	border-radius: 25px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
	padding: 10px;
}

.video-thumbnail {
	position: relative;
	cursor: pointer;
}

.video-thumbnail img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 15px;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.csr-item h3 {
	margin: 20px 0;
	font-size: 1.5rem;
}

#latest_news.news-section .news_item .thumb {
	width: 40%;
	height: 280px;
}

#latest_news.news-section .news_item .content {
	width: 60%;
}

#latest_news.news-section .news_item .read_more {
	display: inline-block;
	margin-top: 15px;
	color: #29a643;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease-in-out;
	position: relative;
}

#latest_news.news-section .news_item .read_more:after {
	content: "";
	display: block;
	left: 0;
	height: 2px;
	width: 0;
	background: #29a643;
	transition: width 0.3s;
}

#latest_news.news-section .news_item .read_more svg {
	width: 28px;
	height: 28px;
}

#latest_news.news-section .news_item .read_more svg path {
	fill: #29a643;
}

#latest_news.news-section .news_item .read_more:hover:after {
	width: 100%;
}

#count {
	background: url(../images/alappuzha-2.webp) no-repeat scroll top center;
	background-size: cover;
	padding: 150px 0 100px;
	min-height: 600px;
	position: relative;
	background-color: #fafafa;
}

#count .row {
	margin-bottom: 50px;
}

#count::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	z-index: 1;
}

#count .container {
	position: relative;
	z-index: 2;
}

#count h2 {
	color: #fff;
	font-size: 5em;
	font-weight: 700;
	display: flex;
	align-items: end;
}

#count h2 small {
	font-size: .3em;
	font-weight: 400;
	color: #fff3a3;
}

#count .col-md-4:nth-child(2) {
	margin-top: 50px;
}

#count .col-md-4:nth-child(3) {
	margin-top: 100px;
}

#count p {
	font-size: 20px;
	color: #fff;
}

/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.destinations-grid .destination-item {
	margin-bottom: 30px;
}

/* Scoped under Discover Kerala */
#discover-kerala .filter-section h5 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #1e293b;
}

#discover-kerala .filter-buttons {
	display: flex;
	text-align: left;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
}

#discover-kerala .filter-btn {
	display: flex;
	text-align: left;
	padding: 5px 15px;
	border: 1px solid #999;
	border-radius: 20px;
	font-size: 0.8rem;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	font-weight: 400;
	color: #333;
}

#discover-kerala .filter-section {
	margin-bottom: 50px;
}

#discover-kerala .filter-btn:hover {
	background-color: #29A643;
	color: #fff;
	border-color: #29A643;
}

#discover-kerala .filter-btn.active {
	background-color: #29A643;
	color: #fff;
	border-color: #29A643;
}

/* Cards */
#discover-kerala .destination-card {
	transition: transform 0.2s ease, box-shadow 0.3s ease;
	border-radius: 12px;
}

#discover-kerala .destination-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#discover-kerala .card-image-container {
	height: 300px;
	overflow: hidden;
}

#discover-kerala .card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

#discover-kerala .destination-card:hover .card-img {
	transform: scale(1.05);
}

/* Dark bottom overlay */
#discover-kerala .card-bottom-overlay {
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	transition: opacity 0.3s ease;
}

#discover-kerala .card-description {
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
	height: 0;
	overflow: hidden;
	font-size: 14px;
}

#discover-kerala .destination-card:hover .card-description {
	opacity: 1;
	height: 100px;
	transform: translateY(0);
	color: #fff;
}

#discover-kerala .badges {
	position: absolute;
	right: 15px;
	top: 15px;
}

#discover-kerala .badges .badge {
	font-size: 0.75rem;
	padding: 5px 10px;
	color: #fff;
	background-color: rgba(41, 166, 67, 0.7);
	border-radius: 20px;
	font-weight: 400;
}

#discover-kerala .layer {
	font-size: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.text-teal {
	color: #00796B !important;
}

.filter-section h5 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 1rem;
}

/*widget styles*/

/* KTM Post Listing Widget Styles */

/* Common Styles */
.ktm-post-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.ktm-post-link:hover {
	text-decoration: none;
	color: inherit;
}

.ktm-post-title {
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: #333;
	transition: color 0.3s ease;
}

.ktm-post-link:hover .ktm-post-title {
	color: #0073aa;
}

.ktm-post-meta {
	margin-bottom: 10px;
	font-size: 13px;
	color: #777;
}

.ktm-post-date {
	display: inline-block;
	padding: 2px 0;
}

.ktm-post-excerpt {
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}

.ktm-post-read-more {
	display: inline-block;
}

.ktm-read-more-text {
	color: #0073aa;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.ktm-post-link:hover .ktm-read-more-text {
	color: #005a87;
}

/* Grid Layout */
.ktm-layout-grid .ktm-grid-item {
	margin-bottom: 20px;
}

.ktm-post-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.ktm-post-link:hover .ktm-post-card {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.ktm-post-image {
	height: 140px;
	overflow: hidden;
}

.ktm-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.ktm-post-link:hover .ktm-post-image img {
	transform: scale(1.05);
}

.ktm-post-content {
	padding: 20px;
}

/* List Layout */
.ktm-layout-list .ktm-list-item {
	margin-bottom: 20px;
}

.ktm-post-list-wrapper {
	display: flex;
	gap: 20px;
	padding: 15px;
	background: #fff;
	border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ktm-post-link:hover .ktm-post-list-wrapper {
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.ktm-post-list-image {
	flex-shrink: 0;
	width: 150px;
	overflow: hidden;
	border-radius: 10px;
}

.ktm-post-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.ktm-post-link:hover .ktm-post-list-image img {
	transform: scale(1.05);
}

.ktm-post-list-content {
	flex-grow: 1;
}

/* No Posts Message */
.ktm-no-posts {
	text-align: center;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 10px;
	color: #666;
}

.mobile_images,
.mobile_logo {
	display: none;
}

/* Responsive Styles */

@media (max-width: 1480px) {
	#header .container {
		width: 100%;
	}

	.about-parallax-section .p-img {
		width: 150px;
		opacity: 0.9;
	}

	.about-parallax-section .img1 {
		top: 22%;
		left: 0;
		width: 300px;
	}

	.about-parallax-section .img2 {
		top: 10%;
		right: 0;
		width: 250px;
	}

	.about-parallax-section .img3 {
		width: 350px;
		bottom: 5%;
		left: 2%;
	}

	.about-parallax-section .img4 {
		width: 160px;
		bottom: 40%;
		right: 5%;
	}

	.about-parallax-section .img5 {
		width: 170px;
		top: 0%;
		left: 20%;
	}

	.about-parallax-section .img6 {
		width: 280px;
		bottom: 0%;
		right: 0;
	}
}

@media all and (max-width: 1366px) {
	#header .brand img {
		width: 200px;
	}

	#header .button2,
	#header .button3 {
		font-size: 12px;
	}

}

@media all and (max-width: 1080px) {

	#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner,
	#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before,
	#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
		height: 2px !important;
		border-radius: 0 !important;
	}

	#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
		padding: 0 25px;
	}

	#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary {
		backdrop-filter: blur(10px);
	}

	#hero .slide,
	#hero {
		height: 700px !important;
	}

	.desktop_images {
		display: none;
	}

	.mobile_images {
		display: block;
	}

	.continuous-carousel-container {
		width: 100%;
		overflow: hidden;
		position: relative;
		padding: 40px 0 0;
	}

	.about-parallax-section .number {
		font-size: 17px;
	}

	.continuous-carousel-track {
		display: flex;
		width: fit-content;
		animation: scroll-left 30s linear infinite;
	}

	.continuous-carousel-track:hover {
		animation-play-state: paused;
	}

	.continuous-carousel-item {
		flex-shrink: 0;
		width: 250px;
		height: 180px;
		margin-right: 20px;
		border-radius: 10px;
		overflow: hidden;
	}

	.continuous-carousel-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	@keyframes scroll-left {
		0% {
			transform: translateX(0);
		}

		100% {
			transform: translateX(-50%);
		}
	}

	.about-parallax-section {
		height: auto;
		padding: 80px 0;
		flex-wrap: wrap;
	}

	#count h2 {
		flex-wrap: wrap;
	}

	#count h2 small {
		display: block;
		width: 100%;
	}

	.destination_widget_list .item {
		width: 50%;
	}

	.destination_widget_list .item a {
		height: 120px;
	}

	#header .button_group {
		order: 2 !important;
	}

	#header .order-lg-2 {
		order: 3 !important;
	}

}

@media (max-width: 768px) {
	.ktm-layout-grid .ktm-grid-item {
		width: 50%;
	}

	.ktm-post-list-wrapper {
		flex-direction: column;
	}

	.ktm-post-list-image {
		width: 100%;
		height: 180px;
	}

	#hero .text-overlay h2 {
		font-size: 5vw;
		font-weight: 600;
	}

	#hero .text-overlay .cover {
		width: 90%;
		text-align: center;
		margin: 0 auto;
	}

	#hero .logos {
		right: 5px;
		bottom: 70px;
	}

	#hero .text-overlay p {
		font-size: 3vw;
	}

	.slider-nav {
		font-size: 2rem;
		padding: 15px 10px;
	}

	.slider-nav.prev {
		left: 5px;
	}

	.slider-nav.next {
		right: 5px;
	}

	.slider-dots {
		bottom: 20px;
		gap: 10px;
	}

	.dot {
		width: 10px;
		height: 10px;
	}

	.timline_cover {
		margin-bottom: 30px
	}

	#count {
		padding: 200px 0 50px;
	}

	#count .col-md-4 {
		margin-top: 0 !important;
		margin-bottom: 30px;
	}

	.about-parallax-section {
		padding-bottom: 0;
	}

	div.icon img,
	div.icon svg {
		width: 70px;
		height: 70px;
	}

	.timeline-small-box .timeline-list,
	.theme-2 {
		height: 300px;
	}

	.location_list .item {
		width: 50%;
	}

	#footer .logo {
		width: 100%;
		background: #fff;
		padding: 20px;
		border-radius: 10px;
		margin: 25px 0;
	}

	#footer .footer_menu {
		margin-bottom: 30px;
	}

	#footer .secfoot {
		text-align: center;
	}

	#footer .secfoot .text-end {
		text-align: center !important;
	}

	#footer .follow {
		margin-top: 30px;
	}

	#footer .download {
		margin-bottom: 30px;

	}

	.destination_widget_list .item {
		width: 50%;
	}

	.news-ticker-bar {
		bottom: 0;
	}

	.ticker-label {
		font-size: 13px;
		padding: 5px 10px;
	}

	.ticker-item a {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	#header .brand img.mobile_logo {
		display: block;
		width: 70px;
	}

	#hero .slide,
	#hero {
		height: 500px !important;
	}

	#hero .logos {
		max-width: 180px;
	}

	#header.fixed .brand img.mobile_logo {
		width: 40px;
	}

	#header {
		padding: 10px 0;
	}

	#banner {
		padding-top: 120px;
	}

	#banner h1.title {
		font-size: 2rem;
	}

	.desktop_logo {
		display: none;
	}

	.ktm-layout-grid .ktm-grid-item {
		width: 50%;
	}

	.ktm-post-image {
		height: 90px;
	}

	.location_list .image_section .thumb {
		width: 100%;
	}

	.location_list .image_section {
		margin-bottom: 0;
	}

	.location_list .image_section .number {
		color: #fff;
		left: 15px;
		top: 15px;
	}

	.location_list .item .cover {
		padding: 0;
	}

	.location_list .item p {
		font-size: 12px;
	}

	.location_list h4 {
		font-size: 1em;
		margin-bottom: 10px;
	}

	.location_list .content {
		padding: 15px 10px;
	}

	#graphbox {
		padding: 10px;
	}

	#graph {
		padding: 10px;
	}

	#count p {
		font-size: 14px;
	}

	.timeline-list .inner_content h4 {
		font-size: 1em;
	}

	.timeline .icon img,
	.timeline .icon svg {
		width: 40px;
		height: 40px;
	}

	.timeline-vertical .timeline-dots button {
		font-size: 13px;
	}

	.timeline-vertical .timeline-dots li.slide-active button {
		font-size: 18px;
	}

	.timeline-vertical .timeline-dots-wrap {
		width: 80px;
	}

	.timeline-list .inner_content {
		padding: 10px;
	}

	.timeline-vertical .timeline-list {
		width: calc(100% - 80px);
	}

	.title h2 {
		font-size: 2rem;
	}

	.video_list .cover img {
		object-fit: cover;
		height: 200px;
	}

	#latest_news .news_item {
		flex-wrap: wrap;
	}

	#latest_news .news_item .thumb {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	#latest_news .news_item .content {
		width: 100%;
	}

	#latest_news .news_item.full .thumb {
		height: 210px;
	}

	#header.fixed .button_group {
		display: none;
	}

	.ktm-post-list-wrapper .ktm-post-excerpt {
		display: none;
	}

	.ktm-post-list-image {
		height: 120px;
	}

	.ktm-post-title {
		font-size: 14px;
	}

	.ktm-post-list-wrapper {
		padding: 10px;
	}

	.about-parallax-section .title {
		font-size: 2em;
	}

	.committee-list {
		grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
		gap: 10px;
	}

	.member-name {
		font-weight: 600;
		font-size: 1em;
	}

	#banner {
		align-items: end;
		height: auto;
		min-height: 350px;
		padding-bottom: 50px;
	}
}

@media (max-width: 425px) {
	.committee-list {
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
		gap: 10px;
	}
}

/* Updated Video Gallery Styles */
.mfp-close-btn-in .mfp-close {
	color: #fff;
}

.mfp-wrap {
	z-index: 99999;
}

.video_list .cover {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	display: block;
}

.video_list .cover img {
	width: 100%;
	/* Fixed height for consistency */
	object-fit: cover;
	object-position: center center;
	transition: transform 0.3s ease;
	display: block;
}

.video_list .cover:hover img {
	transform: scale(1.05);
}

.video-link {
	display: block;
	position: relative;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	transition: background 0.3s ease;
}

.video_list .cover:hover .play-button {
	background: #ec2328;
	/* Theme Red */
}

.video-duration {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
}

/* Pagination Styles */
.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}

.pagination .page-numbers {
	display: inline-block;
	padding: 8px 16px;
	background: #fff;
	border: 1px solid #ddd;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: #29a643;
	color: #fff;
	border-color: #29a643;
}

/* Downloads Template Styles */
.downloads-list {
	padding: 50px 0;
}

.download-item {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-info h3 {
	margin: 0 0 5px;
	font-size: 1.2rem;
	color: #333;
}

.download-info p {
	margin: 0;
	color: #666;
	font-size: 0.9rem;
}

.download-action .btn-download {
	background-color: #29a643;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background-color 0.3s;
}

.download-action .btn-download:hover {
	background-color: #218838;
	color: #fff;
}

/* Beta Version Tag */
.beta-tag-stripe {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate(50%, -50%) rotate(-90deg) translateY(-50%);
	transform-origin: center;
	background: #ef252a;
	color: white;
	padding: 5px 15px;
	font-size: 12px;
	z-index: 99999;
	letter-spacing: 1px;
	border-radius: 4px 4px 0 0;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
	pointer-events: none;
	user-select: none;
	cursor: default;
	white-space: nowrap;
}