/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	background: var(--gcc-dark-light-green);
	height: 60px;
	font-size: 14px;
	font-family: var(--gcc-font) !important;
	position: relative;
	overflow: visible;
	z-index: 1100;
	transition: all 0.35s ease;
}

/* hide topbar on scroll */
#topbar.topbar-hidden {
	max-height: 0;
	opacity: 0;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	overflow: hidden;
}

#topbar .dropdown-toggle {
	border: 0;
	background: transparent;
	color: var(--gcc-main-white);
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	transition: all 0.3s ease;
}

#topbar .dropdown-toggle:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

#topbar .dropdown-toggle:focus {
	box-shadow: none !important;
}

#topbar .dropdown-toggle::after {
	display: none !important;
}

/* dropdown arrow icon */
#topbar .dropdown-toggle i {
	font-size: 11px;
	transition: transform 0.3s ease;
}

#topbar .dropdown.show .dropdown-toggle i {
	transform: rotate(180deg);
}

#topbar .dropdown-menu {
	border: none;
	transform-origin: top;
	border-radius: 14px;
	padding: 8px;
	min-width: 220px;
	overflow: hidden;
	z-index: 1200;
	will-change: transform, opacity;
	background: var(--gcc-main-white);
	box-shadow:
		0 12px 40px rgba(0, 0, 0, 0.16),
		0 2px 6px rgba(0, 0, 0, 0.08);
	transform-origin: top center;
	animation: dropdownSmooth 0.24s cubic-bezier(0.22, 1, 0.36, 1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* smooth dropdown entrance */
@keyframes dropdownSmooth {
	from {
		opacity: 0;
		transform: translateY(10px) scale(0.97);
	}

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

#topbar .dropdown-item {
	position: relative;
	font-size: 13px;
	font-weight: 500;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	color: var(--gcc-dark-black);
	transition:
		background-color 0.28s ease,
		color 0.28s ease,
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.28s ease;
	transform: translateX(0);
	will-change: transform;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
}

/* hover effect */
#topbar .dropdown-item:hover {
	background: var(--gcc-main-white);
	color: var(--gcc-light-green);

	transform: translateX(6px);

	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* active click */
#topbar .dropdown-item:active {
	transform: scale(0.98);
}

/* divider line */
#topbar .dropdown-menu li:not(:last-child) {
	position: relative;
}

#topbar .dropdown-menu li:not(:last-child)::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 14px;
	right: 14px;
	height: 1px;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.08),
		rgba(0, 0, 0, 0.03),
		transparent
	);
}

#topbar img {
	display: block;
	object-fit: cover;
}

#topbar .dropdown-item img,
#topbar .dropdown-toggle img {
	border-radius: 50%;
	transition: transform 0.3s ease;
}

#topbar .dropdown-item:hover img {
	transform: scale(1.08);
}

#topbar,
#topbar .dropdown {
	isolation: isolate;
}

#top-header-center-text {
	font-size: 13px;
	letter-spacing: 0.2px;
	font-weight: 400;
	line-height: 1.4;
}

@keyframes stickySlideDown {
	from {
		opacity: 0;
		transform: translateY(-100%);
	}

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

@media (max-width: 1199px) {
	#top-header-center-text {
		font-size: 12px;
	}

	#topbar .dropdown-menu {
		min-width: 190px;
	}
}

@media (max-width: 991px) {
	#topbar {
		display: none !important;
	}
}

/*--------------------------------------------------------------
# MAIN HEADER
--------------------------------------------------------------*/
.main-header {
	position: relative;
	z-index: 5;
	background: var(--gcc-main-white);
	transition: all 0.3s ease;
	box-shadow:
		0 4px 24px rgba(0, 0, 0, 0.08),
		0 1px 3px rgba(0, 0, 0, 0.04);
}

.main-header.header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--gcc-main-white);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	animation: headerSlideDown 0.3s ease;
}

/* used by both .header-fixed and .is-sticky */
@keyframes headerSlideDown {
	from {
		opacity: 0;
		transform: translateY(-100%);
	}

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

.main-header .navbar .container-fluid {
	width: 90%;
}

/* sticky header (single, merged definition) */
.main-header.is-sticky {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: var(--gcc-main-white);
	box-shadow:
		0 4px 24px rgba(0, 0, 0, 0.1),
		0 1px 2px rgba(0, 0, 0, 0.05);
	animation: stickySlideDown 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-header .navbar {
	padding: 0;
	background: var(--gcc-main-white);
}

.main-header .navbar-brand {
	padding: 10px 0;
	margin: 0;
}

.main-header .navbar-brand img {
	max-width: 190px;
	height: auto;
}

.main-header .navbar-nav {
	gap: 6px;
	align-items: center;
}

.main-header .nav-item {
	position: relative;
}

.main-header .navbar-nav .nav-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 30px 14px;
	font-size: 18px;
	font-weight: 500;
	color: #222;
	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

.main-header .navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 22px;
	height: 3px;
	background: var(--gcc-dark-light-green);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	border-radius: 15px;
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
	color: var(--gcc-dark-light-green);
}

.main-header .navbar-nav .nav-link:hover::after,
.main-header .navbar-nav .nav-link.active::after {
	transform: scaleX(1);
}

/* dropdown arrow */
.main-header .dropdown-toggle-custom i {
	font-size: 11px;
	transition: transform 0.3s ease;
}

.main-header .dropdown:hover > .dropdown-toggle-custom i {
	transform: rotate(180deg);
}

.main-header .dropdown {
	position: relative;
}

.main-header .dropdown-toggle::after {
	display: none !important;
}

.main-header .dropdown-menu li {
	position: relative;
	list-style: none;
}

.main-header .dropdown-menu .dropdown-item {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: space-between;

	width: 100%;

	padding: 11px 16px 11px 34px;

	border-radius: 10px;

	font-size: 14px;
	font-weight: 500;
	color: #2b2b2b;

	background: transparent;

	overflow: hidden;

	transition:
		background-color 0.28s ease,
		color 0.28s ease,
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

/* bullet */
.main-header .dropdown-menu .dropdown-item::before {
	content: "";

	position: absolute;

	left: 14px;
	top: 50%;

	width: 6px;
	height: 6px;

	border-radius: 50%;

	background: var(--gcc-dark-light-green);

	transform: translateY(-50%) scale(0);

	transition: transform 0.25s ease;
}

/* hover */
.main-header .dropdown-menu .dropdown-item:hover {
	background: #f0f7f3;
	color: var(--gcc-dark-light-green);

	transform: translateX(5px);
}

.main-header .dropdown-menu .dropdown-item:hover::before {
	transform: translateY(-50%) scale(1);
}

/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/

.main-header .desktop-only-buttons {
	display: flex;
	align-items: center;
}

.main-header .mobile-only-buttons {
	display: none;
}

.main-header .header-btn-style1 a.btn-black {
	position: relative;
}

.main-header .header-btn-style1 a {
	padding-left: 30px;
	padding-right: 30px;
}

.btn-one {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding-top: 8px;
	padding-left: 35px;
	padding-right: 35px;
	padding-bottom: 8px;
	background-color: transparent;
	color: var(--gcc-main-white);
	font-size: 18px;
	line-height: 54px;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 0px;
	transition: all 0.3s linear;
	font-family: var(--gcc-font) !important;
	z-index: 2;
}

.main-header .header-btn-style1 a + a {
	margin-left: 10px;
}

.btn-one::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
}

.btn-one::before {
	content: "";
	position: absolute;
	inset: 0;
	transform: translateX(-100%);
	transition: transform 0.4s ease;
	z-index: -1;
}

.btn-one:hover::before {
	transform: translateX(0);
}

.btn-one:hover {
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Blue button: base = blue, hover slides in green */
.btn-blue::after {
	background: var(--gcc-navy-blue) !important;
}
.btn-blue::before {
	background: var(--gcc-dark-light-green) !important;
}

/* Green button: base = green, hover slides in blue */
.btn-green::after {
	background: var(--gcc-dark-light-green) !important;
}
.btn-green::before {
	background: var(--gcc-navy-blue) !important;
}

/*--------------------------------------------------------------
# TOGGLER
--------------------------------------------------------------*/

.main-header .navbar-toggler {
	border: none;
	padding: 0;
	box-shadow: none;
}

.main-header .navbar-toggler:focus {
	box-shadow: none;
}

.main-header .navbar-toggler span {
	display: block;

	width: 25px;
	height: 3px;

	margin: 5px 0;

	border-radius: 20px;

	background: #222;

	transition: all 0.3s ease;
}

.main-header .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	min-width: 260px;
	margin: 0;
	padding: 10px;
	border: none;
	border-radius: 14px;
	background: var(--gcc-main-white);
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.12),
		0 2px 8px rgba(0, 0, 0, 0.04);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition:
		opacity 0.28s ease,
		visibility 0.28s ease,
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 999;
}

.main-header .submenu {
	position: absolute;
	top: 0;
	left: calc(100% + 10px);
	min-width: 260px;
	margin: 0;
	padding: 10px;
	border: none;
	border-radius: 14px;
	background: var(--gcc-main-white);
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.12),
		0 2px 8px rgba(0, 0, 0, 0.04);
	opacity: 0;
	visibility: hidden;
	transform: translateX(12px);
	transition:
		opacity 0.28s ease,
		visibility 0.28s ease,
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 999;
}

.main-header .dropdown.show > .dropdown-menu,
.main-header .dropdown-submenu.show > .submenu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

/* Desktop dropdown — hover only for devices that actually support hover */
@media (hover: hover) and (pointer: fine) {
	.main-header .dropdown:hover > .dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.main-header .dropdown-submenu:hover > .submenu {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}
}

@media (max-width: 991px) {
	.main-header .container-fluid {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.main-header .navbar {
		padding: 12px 0;
	}

	/* Outer wrapper expanding edge-to-edge */
	.main-header .navbar-collapse {
		margin-top: 18px;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		padding: 16px 0;
		background: #f8f9fa;
		border-top: 1px solid rgba(0, 0, 0, 0.06);
	}

	.main-header .navbar-nav {
		align-items: stretch;
		width: 100%;
		gap: 0;
	}

	/* Main Section Link */
	.main-header .navbar-nav .nav-link {
		width: 100%;
		padding: 14px 20px;
		font-size: 16px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.main-header .navbar-nav .nav-link::after {
		display: none;
	}

	/* Full-Width White Dropdown Card */
	.main-header .dropdown-menu {
		position: static;
		display: none;
		width: 100% !important;
		margin: 0 0 10px 0;
		padding: 10px 0;
		background: #ffffff !important;
		border: none;
		border-radius: 0 !important; /* Flat edges to touch screen borders */
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
	}

	/* Full-Width Submenu Card */
	.main-header .submenu {
		position: static;
		display: none;
		width: 100% !important;
		margin: 5px 0;
		padding: 10px 0;
		background: #ffffff !important;
		border: none;
		border-radius: 0 !important;
		box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03) !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
	}

	.main-header .dropdown.show > .dropdown-menu,
	.main-header .dropdown-submenu.show > .submenu {
		display: block;
	}

	/* Item Links within full-width menu */
	.main-header .dropdown-menu .dropdown-item {
		padding: 12px 24px; /* Internal margin for text alignment */
		font-size: 14px;
		color: #333333;
		border-radius: 0;
		background: transparent;
		width: 100%;
	}

	.main-header .dropdown-menu .dropdown-item::before {
		display: none;
	}

	.main-header .dropdown-menu .dropdown-item:hover,
	.main-header .dropdown-menu .dropdown-item:focus {
		background: #f8f9fa;
		color: #1e73be;
	}

	/* Indent nested submenu items slightly for visual hierarchy */
	.main-header .submenu .dropdown-item {
		padding-left: 36px;
	}

	.main-header .desktop-only-buttons {
		display: none;
	}

	.main-header .mobile-only-buttons {
		display: block;
		margin-top: 20px;
		padding: 0 16px;
	}

	.main-header .btn-one {
		width: 100%;
	}

	.header-btn-style1 {
		display: block !important;
	}

	.main-header .header-btn-style1 a + a {
		margin-left: 0 !important;
		margin-top: 10px;
	}

	.mobile-screen-translator {
		font-size: 12px;
		font-weight: 600;
		display: flex;
	}
}

/*--------------------------------------------------------------
# LARGE SCREEN FIX
--------------------------------------------------------------*/
@media (min-width: 1360px) and (max-width: 1366px) {
	.main-header .container-fluid {
		width: 100% !important;
	}

	.main-header .navbar-nav .nav-link {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 12px;
	}
}

/*--------------------------------------------------------------
/* ================= HERO SWIPER WRAPPER =================
/*-------------------------------------------------------------- */
#hero-section .hero-swiper {
	width: 100%;
	height: calc(100vh - 22.5vh);
	background: var(--gcc-black);
	position: relative;
}

/* ================= SLIDES ================= */
#hero-section .hero-swiper .swiper-slide {
	position: relative;
	overflow: hidden;
}

/* ================= BACKGROUND ================= */
#hero-section .hero-swiper .slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/* transform: scale(1.1); */
	/* transition: 6s ease; */
}

#hero-section .hero-swiper .swiper-slide-active .slide-bg img {
	height: 100% !important;
}

/* #hero-section .hero-swiper .swiper-slide-active .slide-bg {
  transform: scale(1);
} */

/* DARK OVERLAY */
#hero-section .hero-swiper .slide-bg::after {
	content: "";
	position: absolute;
	inset: 0;
}

#hero-section .container {
	position: relative;
	padding-top: 153px;
	z-index: 30;
	height: 60vh;
	align-items: center;
	display: flex;
}

#hero-section .main-slider-content {
	position: relative;
	display: block;
	width: 100%;
}

#hero-section .main-slider-content__inner {
	position: relative;
	display: block;
	overflow: hidden;
}

#hero-section .swiper-slide-active .main-slider-content .sub-title {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
	-ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
	transform: perspective(400px) rotateY(0deg) translateY(0px);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}

#hero-section .main-slider-content .sub-title {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 21px;
	opacity: 0;
	-webkit-transform: perspective(400px) rotateY(0deg) translate(-80px);
	-ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
	transform: perspective(400px) rotateY(0deg) translateY(-80px);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	z-index: 10;
}

#hero-section .main-slider-content .sub-title .border-line {
	position: relative;
	display: block;
	width: 50px;
	height: 2px;
	background-color: var(--gcc-light-green);
	margin-right: 20px;
}

#hero-section .main-slider-content .sub-title h5 {
	color: #ffffff;
	font-size: 16px;
	line-height: 26px;
}

#hero-section .swiper-slide-active .main-slider-content .big-title {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
	-ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
	transform: perspective(400px) rotateY(0deg) translateY(0px);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}
#hero-section .main-slider-content .big-title {
	position: relative;
	display: block;
	opacity: 0;
	-webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
	-ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
	transform: perspective(400px) rotateY(0deg) translateY(-80px);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	z-index: 10;
}

#hero-section .main-slider-content .big-title h2 {
	color: #ffffff;
	font-size: 60px;
	line-height: 1.2em;
	font-weight: 800;
	text-transform: capitalize;
}

#hero-section .swiper-slide-active .main-slider-content .text {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
	-ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
	transform: perspective(400px) rotateY(0deg) translateX(0px);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}
#hero-section .main-slider-content .text {
	position: relative;
	display: block;
	width: 100%;
	margin-top: 16px;
	opacity: 0;
	-webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
	-ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
	transform: perspective(400px) rotateY(0deg) translateX(80px);
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	z-index: 10;
}
#hero-section .main-slider-content .text p {
	color: #ffffff;
	font-size: 19px;
	line-height: 36px;
	font-weight: 400;
}

/* ================= NAVIGATION ================= */
#hero-section .hero-swiper .swiper-button-prev {
	right: 20px !important;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gcc-main-white);
	transition: 0.3s ease;
	top: 50% !important;
}

#hero-section .hero-swiper .swiper-button-next {
	right: 20px !important;
	left: auto !important;
	top: 50% !important;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gcc-main-white);
	transition: 0.3s ease;
}

/* remove default Swiper arrows */
#hero-section .hero-swiper .swiper-button-next::after,
#hero-section .hero-swiper .swiper-button-prev::after {
	display: none;
}

#hero-section .hero-swiper .swiper-button-prev:hover {
	background: rgba(255, 255, 255, 0.25);
}

/* ================= PAGINATION ================= */
#hero-section .hero-swiper .swiper-pagination {
	left: 20px !important;
	bottom: 30px !important;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#hero-section .hero-swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--gcc-main-white);
	opacity: 0.4;
	border-radius: 2px;
	transition: all 0.3s ease;
}

#hero-section .hero-swiper .swiper-pagination-bullet-active {
	width: 8px;
	height: 22px;
	opacity: 1;
	border-radius: 2px;
}

#hero-section .slide-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ================= KEYFRAMES ================= */
@keyframes heroTextRevealAnim {
	100% {
		transform: translateX(0);
	}
}

@keyframes heroBorderOpacityAnim {
	50% {
		border-left: 2px solid #363636;
	}
	100% {
		border-left: 2px solid transparent;
	}
}

@keyframes heroTextUp {
	0% {
		transform: translateY(120%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes heroRevealText {
	to {
		clip-path: inset(0 0% 0 0);
	}
}

@media (min-width: 1360px) and (max-width: 1366px) {
	.featured {
		margin-top: -113px !important;
	}

	#hero-section .container {
		padding-top: 80px;
	}

	#hero-section .hero-swiper {
		height: calc(100vh - 25.5vh);
	}

	.featured .icon-box h3 {
		font-size: 15px !important;
	}

	.featured .icon-box {
		min-height: 0 !important;
		padding: 15px !important;
	}

	#hero-section .hero-swiper .swiper-button-next {
		top: 40% !important;
	}

	#rate-calculate {
		padding-top: 30px !important;
	}
}
/*==============================================================
# FEATURED SECTION
==============================================================*/

.featured {
	position: relative;
	z-index: 2;
	margin-top: -144px;
}

/*==============================================================
# ICON BOX BASE
==============================================================*/

.featured .icon-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;

	min-height: 120px;
	padding: 25px;

	border-top: 4px solid var(--gcc-main-white);

	overflow: hidden;
	transition: all 0.4s ease;
}

/*==============================================================
# TRANSPARENT GLASS BOX
==============================================================*/

.featured .transparent-box {
	position: relative;
	z-index: 0;

	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(3px);

	overflow: hidden;

	transition:
		transform 0.4s ease,
		background-color 0.4s ease,
		color 0.4s ease;
}

/*==============================================================
# WHITE OVERLAY ANIMATION
==============================================================*/

.featured .transparent-box::before {
	content: "";
	position: absolute;
	inset: 0;

	background: #fff;

	transform: scaleY(0);
	transform-origin: top;

	transition: transform 0.4s ease;

	z-index: 1;
	pointer-events: none;
}

.featured .transparent-box:hover::before {
	transform: scaleY(1);
}

/*==============================================================
# HOVER EFFECT (MAIN STATE CONTROL)
==============================================================*/

.featured .transparent-box:hover {
	transform: translateY(-2px);
	background-color: #fff;
	color: #000;
}

/*==============================================================
# CONTENT ABOVE OVERLAY
==============================================================*/

.featured .icon-box > * {
	position: relative;
	z-index: 2;
}

/*==============================================================
# TEXT STYLING
==============================================================*/

.featured .icon-box h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
}

.featured .icon-box h3 a {
	color: var(--gcc-main-white);
	text-decoration: none;
	transition: color 0.3s ease;
}

/* FULL INVERT ON HOVER */
.featured .transparent-box:hover h3 a {
	color: var(--gcc-font-black);
}

/*==============================================================
# ICON ANIMATION
==============================================================*/

.featured .feature-icon {
	width: 55px;
	transition: transform 0.4s ease;
}

.featured .transparent-box:hover .feature-icon {
	transform: scale(1.1);
}

/*==============================================================
# EXCHANGE HEADER BOX
==============================================================*/

.exchange-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gcc-dark-light-green);
	padding: 28px 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	border-radius: 22px 22px 0 0;
}

.exchange-box i {
	font-size: 52px;
	color: var(--gcc-main-white);
}

/* Triangle Connector */
.exchange-box::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -16px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 16px solid var(--gcc-dark-light-green);
	z-index: 20;
}

/*==============================================================
# HEADER CONTENT
==============================================================*/

.card-header-custom {
	text-align: center;
}

.card-header-custom h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--gcc-main-white);
	margin-bottom: 4px;
}

.card-header-custom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.82rem;
}

/*==============================================================
# RATE CALCULATOR SECTION
==============================================================*/
.calculator-wrapper {
	position: relative;
	z-index: 4;
	/* top: -69px; */
}

#rate-calculate {
	padding-top: 30px;
}

/*==============================================================
# LEFT CONTENT
==============================================================*/

#rate-calculate .main-row {
	position: relative;
	/* top: -75px; */
}
/* 
#rate-calculate .container {
	height: 68vh;
} */

#rate-calculate .row {
	align-items: stretch;
}

#rate-calculate .content-left,
.calculator-wrapper {
	height: 100%;
}

#rate-calculate .content-left {
	position: relative;

	padding: 60px 70px 60px 10px;
}

#rate-calculate .content-left h1 {
	font-size: 38px; /* slightly reduced */
	line-height: 1.1;
	margin-bottom: 20px; /* reduced */
	letter-spacing: -1.5px;
}

#rate-calculate .content-left p {
	margin-bottom: 14px; /* tighter spacing */
	line-height: 1.6;
	color: #4a5568;
}

#rate-calculate .content-left h1 span {
	color: var(--gcc-light-green);
	display: inline-flex;
	align-items: center;
	gap: 12px;
	position: relative;
	font-size: 48px;
	font-weight: 600;
}

#rate-calculate .content-left h1 span::after {
	content: "";
	width: 55px;
	height: 4px;
	background: linear-gradient(90deg, var(--gcc-light-green), #53c27d, #7ee2a8);
	border-radius: 50px;
	display: inline-block;
	box-shadow: 0 4px 10px rgba(26, 143, 73, 0.25);
	margin-left: 10px;
	position: relative;
	top: 2px;
}

#rate-calculate .content-left h1 span::after {
	animation: glowMove 2.5s ease-in-out infinite;
}

@keyframes glowMove {
	0%,
	100% {
		transform: translateX(0);
		opacity: 0.8;
	}
	50% {
		transform: translateX(6px);
		opacity: 1;
	}
}

.feature-box {
	background: var(--gcc-main-white);
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* icon */
.feature-icon {
	font-size: 60px;
	color: var(--gcc-light-green);
	transition: all 0.4s ease;
}

/* text */
.feature-box h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	color: #182433;
}

.feature-box p {
	font-size: 14px;
	color: #6b7280;
}

/* hover effect (optional premium feel) */
.feature-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-box:hover .feature-icon {
	transform: scale(1.1);
}

/*==============================================================
# CARD WIDGET
==============================================================*/

.card-widget {
	background: var(--gcc-main-white);
	/* background: var(--gcc-main-white); */
	border-radius: 0 0 22px 22px;
	overflow: hidden;
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.card-body-custom {
	background: var(--gcc-main-white);
	padding: 28px;
}

/*==============================================================
# TRANSFER TABS
==============================================================*/

.transfer-tabs {
	display: flex;
	gap: 4px;
	padding: 4px;
	background: var(--gcc-main-white);
	border-radius: 12px;
}

.tab-btn {
	flex: 1;

	border: none;

	background: transparent;

	border-radius: 9px;

	padding: 10px;

	font-size: 0.82rem;
	font-weight: 500;

	color: #666;

	cursor: pointer;

	transition: all 0.2s;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.tab-btn.active {
	background: var(--gcc-main-white);

	color: #1a6e3c;

	font-weight: 600;

	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

/*==============================================================
# COUNTRY SELECT
==============================================================*/

.country-select-wrap {
	position: relative;
	margin-bottom: 20px;
}

.country-select {
	width: 100%;
	border: 1.5px solid #e0e8e3;
	border-radius: 12px;
	height: 50px;
	padding: 11px 14px 11px 48px;
	font-size: 0.9rem;
	font-weight: 500;
	color: #1a1a1a;
	appearance: none;
	outline: none;
	cursor: pointer;
	transition: border-color 0.2s;
}

.country-select:focus {
	border-color: var(--gcc-light-green);
}

.country-flag {
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border-radius: 50%;
	object-fit: cover;
	pointer-events: none;
}

/*==============================================================
# LABELS
==============================================================*/
.section-label {
	text-align: center;
	font-size: 0.72rem;
	font-weight: 600;
	color: #8a9a90;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin-bottom: 6px;
}

/*==============================================================
# AMOUNT DISPLAY
==============================================================*/
.amount-display {
	text-align: center;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--gcc-light-green);
	letter-spacing: -0.5px;
}

/*==============================================================
# RANGE SLIDER
==============================================================*/
.range-wrap {
	margin-bottom: 6px;
}

input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 5px;
	border-radius: 3px;
	outline: none;
	cursor: pointer;
	background: linear-gradient(
		to right,
		var(--gcc-light-green) 0%,
		var(--gcc-light-green) var(--progress),
		var(--gcc-navy-blue) var(--progress),
		var(--gcc-navy-blue) 100%
	) !important;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--gcc-light-green);
	border: 3px solid var(--gcc-main-white);
	cursor: pointer;
	box-shadow:
		0 0 0 2px var(--gcc-light-green),
		0 2px 6px rgba(0, 0, 0, 0.18);
}

.range-labels {
	display: flex;
	justify-content: space-between;
	font-size: 0.72rem;
	color: #8a9a90;
	margin-top: 5px;
	margin-bottom: 20px;
}

/*==============================================================
# RECEIVE BOX
==============================================================*/

.receive-box {
	display: flex;
	align-items: center;
	gap: 12px;

	padding: 16px 20px;

	margin-bottom: 20px;

	border-radius: 14px;

	background: linear-gradient(135deg, #1a6e3c 0%, var(--gcc-light-green) 100%);
}

.receive-currency-tag {
	font-size: 0.78rem;
	font-weight: 700;

	color: rgba(255, 255, 255, 0.75);

	letter-spacing: 0.04em;
}

.receive-amount {
	font-size: 1.85rem;
	font-weight: 700;

	color: var(--gcc-main-white);

	letter-spacing: -0.5px;
}

/*==============================================================
# FEE INFO
==============================================================*/

.fee-info {
	display: flex;
	justify-content: space-between;

	padding: 0 2px;

	margin-bottom: 16px;

	font-size: 0.76rem;

	color: #8a9a90;
}

.fee-info span b {
	color: #444;
	font-weight: 600;
}

/*==============================================================
# BUTTON
==============================================================*/

.send-btn {
	width: 100%;
	border: none;
	border-radius: 14px;
	padding: 15px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--gcc-main-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	letter-spacing: 0.01em;
	background: linear-gradient(
		135deg,
		var(--gcc-light-green) 0%,
		var(--gcc-light-green) 100%
	);
	box-shadow: 0 6px 18px rgba(3, 163, 16, 0.274);
	transition:
		opacity 0.18s,
		transform 0.12s;
}

.send-btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.send-btn:active {
	transform: scale(0.98);
}

/*==============================================================
# BADGE
==============================================================*/
.rate-badge {
	text-align: center;
	margin-top: 14px;
	font-size: 0.74rem;
	color: #8a9a90;
}

.rate-badge b {
	color: var(--gcc-light-green);
}

/*==============================================================
# RESPONSIVE
==============================================================*/

@media (max-width: 991px) {
	.featured {
		margin-top: 0;
	}

	.featured .icon-box {
		min-height: 110px;
	}

	#rate-calculate .content-left {
		padding: 10px 0 30px;
		text-align: center;
	}

	#rate-calculate .content-left h1 {
		font-size: 44px;
		letter-spacing: -1px;
	}

	#rate-calculate .content-left p {
		max-width: 100%;
		font-size: 16px;
	}

	.exchange-box::after {
		display: none;
	}

	#rate-calculate .container {
		height: 100% !important;
	}

	.calculator-wrapper {
		top: 0 !important;
	}

	#rate-calculate .main-row {
		top: 0 !important;
	}
}

/* ============================================================
    FOREX TICKER
============================================================ */
.forex-wrapper {
	width: 100%;
	background: var(--gcc-dark-light-green);
	display: flex;
	align-items: stretch;
	min-height: 64px;
	overflow: hidden;
}
.forex-title-block {
	background: var(--green-dark);
	min-width: 280px;
	height: 64px;
	display: flex;
	align-items: center;
	padding: 0 40px;
	flex-shrink: 0;
	clip-path: polygon(
		0 0,
		calc(100% - 20px) 0,
		100% 50%,
		calc(100% - 20px) 100%,
		0 100%
	);
}
.forex-title-block h4 {
	color: var(--gcc-main-white);
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	white-space: nowrap;
	font-family: var(--gcc-font) !important;
}
.forex-ticker {
	flex: 1;
	overflow: hidden;
}
.forex-track {
	display: flex;
	align-items: center;
	gap: 48px;
	width: max-content;
	animation: forexLoop 28s linear infinite;
	height: 64px;
}
.forex-ticker:hover .forex-track {
	animation-play-state: paused;
}
@keyframes forexLoop {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
.forex-item {
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}
.forex-item img {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.3);
}
.forex-item .rate-text {
	color: var(--gcc-main-white);
	font-size: 14px;
	font-weight: 500;
}
.forex-item .change-up {
	color: #a3ffb8;
	font-size: 12px;
}
.forex-item .change-down {
	color: #ffa3a3;
	font-size: 12px;
}

@media (max-width: 768px) {
	.forex-title-block {
		min-width: 100%;
		clip-path: none;
		height: 44px;
		justify-content: center;
		padding: 0 20px;
	}
	.forex-wrapper {
		flex-direction: column;
	}
	.forex-track {
		height: 52px;
		padding: 0 20px;
	}
}
/* ============================================================
   OUR SERVICES - FINAL COMPLETE CSS
============================================================ */

.our-services {
	position: relative;
	padding: 80px 0 0 0;
	overflow: hidden;
	background-color: var(--gcc-main-white);
}

/* ============================================================
   ANIMATED BACKGROUND
============================================================ */
.our-services .svc-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url(../images/our-services.jpg);
	background-size: 120%;
	background-position: center;
	background-repeat: no-repeat;
	animation: bgZoomDrift 3s ease-in-out infinite alternate;
	pointer-events: none;
}

@keyframes bgZoomDrift {
	0% {
		transform: scale(1) translate(0, 0);
	}

	50% {
		transform: scale(1.06) translate(-1%, 0.5%);
	}

	100% {
		transform: scale(1.1) translate(0.5%, -1%);
	}
}

/* ============================================================
   FLOATING PARTICLES
============================================================ */
.our-services .svc-particles {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.our-services .svc-particles span {
	position: absolute;
	border-radius: 50%;
	background: rgba(21, 101, 192, 0.08);
	animation: floatUp linear infinite;
}

@keyframes floatUp {
	0% {
		transform: translateY(100%) scale(0.5);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 0.4;
	}

	100% {
		transform: translateY(-120%) scale(1.3);
		opacity: 0;
	}
}

/* ============================================================
   HEADING
============================================================ */
.our-services .section-heading {
	position: relative;
	z-index: 2;
	text-align: center;
}

.our-services .section-heading h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #1a1a2e;
}

.our-services .section-heading h2 span {
	color: var(--gcc-light-green);
}

/* ============================================================
   SWIPER
============================================================ */

.our-services .servicesSwiper {
	position: relative;
	z-index: 2;
	padding: 40px 0 70px !important;
}

.our-services .swiper-wrapper {
	align-items: center;
}

.our-services .swiper-slide {
	transition: all 0.5s ease;
	opacity: 0.6;

	/* SAME WIDTH */
	transform: scale(1);

	display: flex;
	height: auto;
}

/* SIDE SLIDES */

.our-services .swiper-slide-prev,
.our-services .swiper-slide-next {
	opacity: 0.8;
	transform: scale(1);
}

/* ACTIVE MIDDLE SLIDE */

.our-services .swiper-slide-active {
	opacity: 1;
	transform: scale(1.05);
	z-index: 10;
}

/* ACTIVE CARD EFFECT */

.our-services .swiper-slide-active .single-finances-box {
	transform: translateY(-8px);
}

/* ============================================================
   SERVICE CARD
============================================================ */

.single-finances-box {
	position: relative;
	background: #ffffff;
	overflow: visible;
	cursor: pointer;
	height: 525px;
	box-shadow: 0 8px 32px rgba(11, 61, 145, 0.1);
	transition:
		transform 0.52s cubic-bezier(0.23, 1, 0.32, 1),
		box-shadow 0.52s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================================
   IMAGE AREA
============================================================ */
.single-finances-box .img-box {
	position: relative;
}

.single-finances-box .img-box .inner {
	height: 220px;
	overflow: hidden;
}

.single-finances-box .img-box .inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;

	transition: transform 0.6s ease;
}

/* IMAGE ZOOM */

.single-finances-box:hover .img-box .inner img {
	transform: scale(1.08);
}

/* ============================================================
   IMAGE OVERLAY
============================================================ */

.single-finances-box .img-box::before {
	position: absolute;
	content: "";
	inset: 0;

	z-index: 1;

	background: var(--gcc-light-green) 4a;

	transform: scaleY(0);
	transform-origin: bottom;

	transition: all 500ms ease;
}

.single-finances-box:hover .img-box::before {
	transform: scaleY(1);
}

/* ============================================================
   SERVICE ICON
============================================================ */
.single-finances-box .overly-icon {
	position: absolute;
	z-index: 999;
	width: 70px;
	height: 70px;
	top: 100%;
	right: 30px;
	transform: translateY(-50%);
	background-color: var(--gcc-dark-light-green) !important;
	border-radius: 6px;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(21, 101, 192, 0.25);
	transition: all 0.5s ease-in-out;
}

/* ICON HOVER ANIMATION */

.single-finances-box:hover .overly-icon {
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%) scale(1.08);
	background: var(--gcc-dark-light-green);
	padding: 15px;
	border-radius: 50%;
	box-shadow:
		0 0 0 10px rgba(66, 165, 245, 0.2),
		0 18px 40px rgba(11, 61, 145, 0.35);
}

/* ICON SVG */

.single-finances-box .overly-icon svg {
	width: 30px;
	height: 30px;

	fill: none;
	stroke: var(--gcc-main-white);
	stroke-width: 2;

	stroke-linecap: round;
	stroke-linejoin: round;

	transition: transform 0.5s ease;
}

.single-finances-box:hover .overly-icon svg {
	transform: scale(1.1);
}

/* ============================================================
   TEXT BOX
============================================================ */

.single-finances-box .text-box {
	padding: 55px 24px 30px;
	text-align: center;

	border-radius: 0 0 16px 16px;

	transition: transform 0.5s ease;
}

.single-finances-box:hover .text-box {
	transform: translateY(-3px);
}

/* TITLE */

.single-finances-box .text-box h3 {
	margin-bottom: 12px;
	font-size: 1.25rem;
	font-weight: 700;
}

.single-finances-box .text-box h3 a {
	color: #1a1a2e;
	text-decoration: none;

	transition: color 0.4s ease;
}

.single-finances-box:hover .text-box h3 a {
	color: var(--gcc-light-green);
}

/* DESCRIPTION */

.single-finances-box .text-box p {
	font-size: 0.9rem;
	line-height: 1.7;
	color: #4a5568;

	margin-bottom: 22px;
}

/* ============================================================
   ACTIVE SWIPER CARD
============================================================ */

.swiper-slide-active .single-finances-box {
	box-shadow:
		0 28px 60px rgba(11, 61, 145, 0.22),
		0 0 0 4px rgba(66, 165, 245, 0.18);
}

/* SHIMMER EFFECT */

.swiper-slide-active .single-finances-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 55%;
	height: 100%;
	z-index: 20;
	pointer-events: none;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.14),
		transparent
	);

	animation: shimmer 2.4s ease 0.5s infinite;
}

@keyframes shimmer {
	0% {
		left: -80%;
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	100% {
		left: 120%;
		opacity: 0;
	}
}

/* ============================================================
   PAGINATION
============================================================ */

.our-services .swiper-pagination {
	position: relative;
	margin-top: 20px;
}

.our-services .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--gcc-gray-color);
	opacity: 1;
	transition: 0.3s ease;
}

.our-services .swiper-pagination-bullet-active {
	background: var(--gcc-light-green);
	transform: scale(1.35);
}

/*--------------------------------------------------------------
# Our Strength
--------------------------------------------------------------*/
.our-strength {
	background: var(--gcc-dark-light-green) !important;
	padding: 60px 0;
	overflow: hidden;
}

.our-strength .section-title {
	text-align: center;
}

.our-strength .section-title h1 {
	font-size: 45px;
	font-weight: bolder;
	text-transform: uppercase;
	position: relative;
	color: var(--gcc-black);
	display: flex;
	justify-content: center;
	align-items: center;
}

.our-strength .purecounter {
	font-size: 65px;
	letter-spacing: 2px;
}

.our-strength .our-stregnth-title {
	font-size: 18px;
}

.our-strength .plus-icon {
	font-size: 65px;
	letter-spacing: 2px;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news-section {
	padding: 80px 0 90px;
	background: var(--gcc-dark-light-green);
	position: relative;
	overflow: hidden;
}

/* subtle decorative blob */
.news-section::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 420px;
	height: 420px;
	background: radial-gradient(
		circle,
		rgba(26, 156, 62, 0.1) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--gcc-dark);
}

.section-title .highlight {
	color: var(--gcc-green);
}

.section-sub {
	font-size: 1rem;
	color: var(--gcc-muted);
	margin: 0 auto;
	line-height: 1.7;
}

/* ── Swiper wrapper ── */
.swiper-news {
	padding: 12px 4px 56px !important;
}

/* ── Card ── */
.news-card {
	background: var(--gcc-main-white);
	border-radius: var(--card-radius);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.news-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.news-card__img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/10;
}

.news-card__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.news-card:hover .news-card__img-wrap img {
	transform: scale(1.06);
}

.news-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--gcc-green);
	color: var(--gcc-main-white);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 20px;
}

.news-card__body {
	padding: 22px 24px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.news-card__meta {
	font-size: 0.75rem;
	color: var(--gcc-muted);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.news-card__meta svg {
	flex-shrink: 0;
}

.news-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--gcc-dark);
	margin-bottom: 12px;
	flex: 1;
}

.news-card__excerpt {
	font-size: 0.875rem;
	color: var(--gcc-muted);
	line-height: 1.65;
	margin-bottom: 20px;
}

.btn-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gcc-green);
	color: var(--gcc-main-white);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 11px 22px;
	border-radius: 8px;
	text-decoration: none;
	border: 2px solid var(--gcc-green);
	transition:
		background var(--transition),
		color var(--transition),
		gap var(--transition);
	align-self: flex-start;
}

.btn-read-more:hover {
	background: transparent;
	color: var(--gcc-green);
	gap: 12px;
}

.btn-read-more svg {
	transition: transform var(--transition);
}

.btn-read-more:hover svg {
	transform: translateX(3px);
}

/* ── Swiper pagination ── */
.swiper-pagination-bullet {
	background: var(--gcc-main-white);
	opacity: 1;
	width: 10px;
	height: 10px;
}

.swiper-pagination-bullet-active {
	background-color: var(--gcc-light-green) !important;
	width: 28px;
	border-radius: 5px;
}

/* ── Swiper nav arrows ── */
.swiper-btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 8px;
}

.swiper-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--gcc-green);
	background: transparent;
	color: var(--gcc-green);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		background var(--transition),
		color var(--transition);
}

.swiper-btn:hover {
	background: var(--gcc-green);
	color: var(--gcc-main-white);
}

.swiper-btn.swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}

/* ============================================================
   NEWS SECTION - FINAL CSS (NO ROOT VARIABLES)
============================================================ */

.news-section {
	position: relative;
	overflow: hidden;

	padding: 80px 0 90px;

	background: #f7f9f7;
}

/* ============================================================
   BACKGROUND DECORATION
============================================================ */

.news-section::before {
	content: "";

	position: absolute;

	top: -120px;
	right: -120px;

	width: 420px;
	height: 420px;

	border-radius: 50%;

	background: radial-gradient(
		circle,
		rgba(26, 156, 62, 0.1) 0%,
		transparent 70%
	);

	pointer-events: none;
}

/* ============================================================
   SECTION HEADING
============================================================ */

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.15;

	color: #172b1f;
}

.section-title .highlight {
	color: var(--gcc-light-green);
}

.section-sub {
	max-width: 760px;

	margin: 0 auto;

	font-size: 1rem;
	line-height: 1.7;

	color: #6b7280;
}

/* ============================================================
   SWIPER
============================================================ */

.swiper-news {
	padding: 12px 4px 56px !important;
}

.swiper-news .swiper-slide {
	height: auto;
	display: flex;
}

/* ============================================================
   NEWS CARD
============================================================ */

.news-card {
	position: relative;

	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: column;

	overflow: hidden;

	border-radius: 20px;

	background: #ffffff;

	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);

	transition:
		transform 0.45s ease,
		box-shadow 0.45s ease;
}

/* HOVER */

.news-card:hover {
	transform: translateY(-8px);

	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   IMAGE
============================================================ */

.news-card__img-wrap {
	position: relative;
	overflow: hidden;

	aspect-ratio: 16/10;
}

.news-card__img-wrap img {
	width: 100%;
	height: 100%;

	object-fit: cover;

	transition: transform 0.6s ease;
}

.news-card:hover .news-card__img-wrap img {
	transform: scale(1.07);
}

/* IMAGE OVERLAY */

.news-card__img-wrap::before {
	content: "";

	position: absolute;
	inset: 0;

	z-index: 1;

	background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);

	opacity: 0;

	transition: opacity 0.4s ease;
}

.news-card:hover .news-card__img-wrap::before {
	opacity: 1;
}

/* ============================================================
   BADGE
============================================================ */

.news-card__badge {
	position: absolute;

	top: 14px;
	left: 14px;

	z-index: 5;

	padding: 5px 12px;

	border-radius: 30px;

	background: var(--gcc-light-green);

	color: var(--gcc-main-white);

	font-size: 0.72rem;
	font-weight: 700;

	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* ============================================================
   BODY
============================================================ */

.news-card__body {
	padding: 24px;

	display: flex;
	flex-direction: column;
	flex: 1;
}

/* ============================================================
   META
============================================================ */

.news-card__meta {
	display: flex;
	align-items: center;
	gap: 6px;

	margin-bottom: 12px;

	font-size: 0.76rem;

	color: #6b7280;
}

.news-card__meta svg {
	flex-shrink: 0;
}

/* ============================================================
   TITLE
============================================================ */

.news-card__title {
	flex: 1;
	margin-bottom: 14px;
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.45;

	color: #172b1f;

	transition: color 0.3s ease;
}

.news-card:hover .news-card__title {
	color: var(--gcc-light-green);
}

/* ============================================================
   EXCERPT
============================================================ */

.news-card__excerpt {
	margin-bottom: 22px;

	font-size: 0.9rem;
	line-height: 1.7;

	color: #6b7280;
}

/* ============================================================
   READ MORE BUTTON
============================================================ */

.btn-read-more {
	position: relative;

	display: inline-flex;
	align-items: center;
	gap: 8px;

	align-self: flex-start;

	padding: 11px 22px;

	border-radius: 10px;
	border: 2px solid var(--gcc-light-green);

	background: var(--gcc-light-green);

	color: var(--gcc-main-white);

	font-size: 0.8rem;
	font-weight: 700;

	letter-spacing: 0.08em;
	text-transform: uppercase;

	text-decoration: none;

	overflow: hidden;

	transition:
		background 0.4s ease,
		color 0.4s ease,
		gap 0.4s ease;
}

/* BUTTON HOVER */

.btn-read-more:hover {
	background: transparent;
	color: var(--gcc-light-green);

	gap: 12px;
}

/* BUTTON ICON */

.btn-read-more svg {
	transition: transform 0.4s ease;
}

.btn-read-more:hover svg {
	transform: translateX(4px);
}

/* ============================================================
   PAGINATION
============================================================ */

.swiper-news .swiper-pagination {
	margin-top: 10px;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;

	opacity: 1;

	background: #c9d8cc;

	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	width: 28px;
	border-radius: 10px;
	background: var(--gcc-light-green);
}

/* ============================================================
   CUSTOM NAVIGATION
============================================================ */

.swiper-btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;

	margin-top: 12px;
}

/* NAV BUTTON */

.swiper-btn {
	width: 46px;
	height: 46px;

	border-radius: 50%;
	border: 2px solid var(--gcc-light-green);

	background: transparent;

	color: var(--gcc-light-green);

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;

	transition:
		background 0.35s ease,
		color 0.35s ease,
		transform 0.35s ease;
}

/* NAV HOVER */

.swiper-btn:hover {
	background: var(--gcc-light-green);
	color: var(--gcc-main-white);

	transform: translateY(-2px);
}

/* DISABLED */

.swiper-btn.swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
	.news-section {
		padding: 70px 0 80px;
	}

	.news-card__body {
		padding: 22px;
	}
}

@media (max-width: 767px) {
	.section-sub {
		font-size: 0.95rem;
	}

	.news-card__title {
		font-size: 1rem;
	}

	.news-card__excerpt {
		font-size: 0.85rem;
	}

	.calculator-wrapper {
		z-index: 2;
	}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background-color: var(--gcc-dark-light-green) !important;
	color: var(--gcc-main-white);
	font-size: 15px;
	position: relative;
	overflow: hidden;
}

#footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at top,
		rgba(255, 255, 255, 0.04),
		transparent 60%
	);
	pointer-events: none;
}

.footer-contact {
	padding: 35px 0;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	margin-bottom: 10px;
}

.contact-item img {
	width: 30px;
}

.qr-box {
	background: var(--gcc-main-white);
	display: inline-block;
	padding: 8px;
	border-radius: 6px;
}

.footer-desc p {
	opacity: 0.85;
	font-size: 15px;
	margin-top: 15px;
}

/* ================= LINKS ================= */
.footer-links {
	padding: 50px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* HEADINGS */
.footer-col h2,
.download-now h2,
.social-media h2 {
	color: var(--gcc-main-white);
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	width: 100%;
	display: block;
	position: relative;
	letter-spacing: 0.5px;
}

/* underline */
.footer-col h2::after,
.social-media h2::after {
	content: "";
	display: block;
	width: 45%;
	height: 2px;
	background: rgba(255, 255, 255, 0.5);
	margin: 10px auto 0;
}

.download-now h2::after {
	content: "";
	display: block;
	width: 45%;
	height: 2px;
	background: rgba(255, 255, 255, 0.5);
	margin: 10px 0 0;
}

/* LISTS */
.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
}

/* LINKS */
.footer-col ul li a,
.footer-bottom a {
	color: var(--gcc-main-white);
	text-decoration: none;
	font-size: 14px;
	position: relative;
	transition: all 0.2s ease;
}

/* hover effect */
.footer-col ul li a:hover,
.footer-bottom a:hover {
	color: var(--gcc-main-white);
	transform: translateX(5px);
}

/* underline animation */
.footer-col ul li a::after,
.footer-bottom a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0%;
	height: 1px;
	background: var(--gcc-main-white);
	transition: 0.25s ease;
}

.footer-col ul li a:hover::after,
.footer-bottom a:hover::after {
	width: 100%;
}

.footer-top .contact-details-list li p {
	font-size: 14px !important;
}

/* ================= SOCIAL ================= */
.social-media {
	text-align: center;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.social-icons img {
	width: 34px;
	/* filter: grayscale(100%); */
	transition: 0.3s ease;
}

.social-icons img:hover {
	transform: translateY(-5px) scale(1.08);
	filter: grayscale(0%);
}

/* Underline: left-aligned by default, centered on large screens */
.footer-col h2::after {
	content: "";
	display: block;
	width: 45%;
	height: 2px;
	background: rgba(255, 255, 255, 0.5);
	margin: 8px 0 0; /* was: 8px auto 0 → auto centered it */
}

@media (max-width: 767.98px) {
	.social-media h2::after {
		margin: 10px auto;
	}

	#footercontact {
		margin: 0 auto;
	}

	.download-title {
		margin: 10px auto;
	}

	.download-now h2 {
		margin: 10px auto;
	}

	.footer-col {
		margin: 14px 0;
	}
}

/* ================= BOTTOM ================= */
.footer-bottom {
	background-color: var(--gcc-black);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding: 16px 0;
	text-align: center;
	font-size: 13px;
}

.footer-bottom a {
	font-size: 13px;
	margin: 0 4px;
}

.footer-bottom a:hover {
	color: var(--gcc-main-white);
}

.footer-col h2 {
	color: var(--gcc-main-white);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 28px;
	position: relative;
	padding-bottom: 12px;
}

.footer-col h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: var(--gcc-main-white);
	border-radius: 2px;
}

/* ---- Timeline ---- */
.timeline {
	position: relative;
	padding-left: 28px;
}

/* vertical line */
.timeline::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 6px;
	bottom: 6px;
	width: 2px;
	background: linear-gradient(
		to bottom,
		var(--gcc-light-green),
		rgba(173, 170, 170, 0.25)
	);
}

.timeline-item {
	position: relative;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

/* dot — always left, ignoring .left/.right */
.timeline-item::before {
	content: "";
	position: absolute;
	left: -28px;
	top: 4px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--gcc-main-white);
	border: 3px solid var(--gcc-light-green);
	transition:
		transform 0.25s var(--ease),
		box-shadow 0.25s var(--ease);
	z-index: 1;
}

.timeline-item:hover::before {
	transform: scale(1.15);
	background: var(--gcc-light-green);
}

.timeline-card {
	border-radius: var(--radius);
	padding: 14px 16px;
	transition:
		box-shadow 0.25s var(--ease),
		transform 0.25s var(--ease);
}

.timeline-item:hover .timeline-card {
	transform: translateX(4px);
}

.timeline-date {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color: var(--gcc-main-white);
	background: rgba(36, 135, 76, 0.08);
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 8px;
	letter-spacing: 0.3px;
}

.timeline-card p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--gcc-main-white);
	font-weight: 500;
}

.timeline-item.left,
.timeline-item.right {
	text-align: left;
	margin: 0;
	width: 100%;
}
/* ================================================
   FLOATING CLUSTER
   ================================================ */
.float-cluster {
	position: fixed;
	bottom: 100px;
	right: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	z-index: 9999;
}

/* ── Base button ── */
.float-btn {
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	/* entry animation */
	animation: floatPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.float-btn:hover {
	transform: scale(1.12);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.float-btn svg:not(.progress-ring):not(.top-arrow) {
	width: 22px;
	height: 22px;
}

/* stagger entrance */
.float-location {
	animation-delay: 0.05s;
}

.float-whatsapp {
	animation-delay: 0.1s;
	background: var(--gcc-light-green);
	color: var(--gcc-main-white);
}

.float-call {
	animation-delay: 0.15s;
}
#footercontact {
	background-color: var(--gcc-navy-blue);
	color: var(--gcc-main-white);
}

.float-top {
	animation-delay: 0.2s;
	background: var(--gcc-main-white);
	color: #24884c;
	padding: 0;
	overflow: visible;
}

@keyframes floatPop {
	from {
		opacity: 0;
		transform: scale(0.5) translateY(20px);
	}

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

/* ── Tooltip ── */
.float-tooltip {
	position: absolute;
	right: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%);
	background: rgba(15, 25, 20, 0.82);
	color: var(--gcc-main-white);
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	padding: 5px 10px;
	border-radius: 6px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.float-tooltip::after {
	content: "";
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-left-color: rgba(15, 25, 20, 0.82);
}

.float-btn:hover .float-tooltip {
	opacity: 1;
}

/* ================================================
   SCROLL-TO-TOP  –  filling circle ring
   ================================================ */
.float-top {
	width: 48px;
	height: 48px;
	background: var(--gcc-main-white);
	position: relative;
}

.progress-ring {
	position: absolute;
	inset: -4px;
	/* slightly larger than button = ring around it */
	width: calc(100% + 8px);
	height: calc(100% + 8px);
	transform: rotate(-90deg);
	pointer-events: none;
}

.progress-ring__bg {
	fill: none;
	stroke: var(--gcc-main-white);
	stroke-width: 3;
}

.progress-ring__fill {
	fill: none;
	stroke: var(--gcc-dark-light-green);
	stroke-width: 3;
	stroke-linecap: round;
	transition: stroke-dashoffset 0.05s linear;
}

.top-arrow {
	width: 20px;
	height: 20px;
	position: relative;
	z-index: 1;
}

@media (max-width: 991px) {
	.float-cluster {
		bottom: 30px;
		right: 20px;
	}
}

.footer-widget-contact-info {
	position: relative;
	display: block;
	border-radius: 4px;
	font-family: var(--gcc-font) !important;
}

.single-footer-widget .title h3 {
	color: var(--gcc-main-white);
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
	margin: 0 0 20px 0;
}

.footer-widget-contact-info .phone-number {
	position: relative;
	margin-bottom: 25px;
}

.footer-widget-contact-info .phone-number p {
	color: var(--contact-orange);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	margin: 0 0 10px 0;
}

.footer-widget-contact-info .phone-number a {
	color: var(--gcc-main-white);
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
	#footer .footer-col ul {
		padding-left: 0;
		text-align: left;
	}

	#footer .social-icons {
		text-align: left;
	}

	#footer .qr-box {
		margin-left: 0 !important;
	}

	#footer .store-icons {
		margin-left: 0;
	}
}

/* Contact List Styles */
.contact-details-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* .contact-details-list li {
	display: flex;
	align-items: flex-start;
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
} */

/* Modern SVG Icon wrapper styles */
.contact-details-list .icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--gcc-dark-light-green);
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-details-list .icon svg {
	width: 100%;
	height: 100%;
}

/* Links & text formatting inside list */
.contact-details-list a {
	color: var(--gcc-main-white);
	text-decoration: none;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500;
}

.contact-details-list address {
	color: var(--gcc-main-white);
	font-style: normal;
	font-size: 14px !important;
	line-height: 1.5;
	font-weight: 500;
}

.store-icons {
	display: inline-block;
	transition: transform 0.35s ease-in-out;
	transform: scale(1);
	cursor: pointer;
}

.store-icons:hover {
	transform: scale(1.08);
}
.store-icons:hover {
	transform: translateY(-6px) scale(1.05);
	filter: brightness(1.08);
}

/* Desktop dropdown — hover only for devices that actually support hover */
@media (hover: hover) and (pointer: fine) {
	.main-header .dropdown:hover > .dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.main-header .dropdown-submenu:hover > .submenu {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}
}
