/* ============================================================
   MODERN DESIGN LAYER — Runia
   Design language modeled on dimerschool.dimersoft.org:
   Inter typeface, violet #7976F6 primary, teal #38B3B8 accent,
   glassy navbar, blurred gradient blobs, soft rounded cards,
   pill buttons. Loaded LAST so it overrides the legacy theme.
   ============================================================ */

:root {
	--primary: #7976F6;
	--primary-hover: #6764EE;
	--primary-soft: rgba(121, 118, 246, 0.08);
	--primary-border: rgba(121, 118, 246, 0.22);
	--secondary: #EEF2FF;
	--accent: #38B3B8;
	--background: #ffffff;
	--foreground: #111827;
	--muted: #F3F4F6;
	--muted-foreground: #6B7280;
	--body-text: #374151;
	--border: #E5E7EB;
	--dark: #111827;
	--darker: #0B1220;
	--radius-sm: 0.75rem;
	--radius-md: 1rem;
	--radius-lg: 1.5rem;
	--radius-xl: 2rem;
	--shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
	--shadow-md: 0 4px 12px -2px rgba(17, 24, 39, 0.08);
	--shadow-lg: 0 16px 40px -12px rgba(121, 118, 246, 0.25);
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Base ---------- */
html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font) !important;
	color: var(--body-text);
	line-height: 1.65;
	background: var(--background);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font);
	color: var(--foreground);
	font-weight: 700;
	letter-spacing: -0.02em;
}

p {
	color: var(--body-text);
}

a {
	transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

img {
	border-radius: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn,
.contact-area button,
.nf-btn,
input[type="submit"].btn {
	border-radius: 9999px !important;
	font-weight: 600 !important;
	font-family: var(--font);
	padding: 0.75rem 1.75rem;
	border: none;
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.contact-area button,
.btn-success,
.btn-primary {
	background: var(--primary) !important;
	color: #fff !important;
	border-color: var(--primary) !important;
}

.contact-area button:hover,
.btn-success:hover,
.btn-primary:hover {
	background: var(--primary-hover) !important;
	border-color: var(--primary-hover) !important;
	box-shadow: 0 10px 24px -8px rgba(121, 118, 246, 0.55);
}

.btn-default {
	background: #fff !important;
	border: 1px solid var(--border) !important;
	color: var(--muted-foreground) !important;
}

.btn-default:hover {
	background: var(--muted) !important;
	color: var(--primary) !important;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.header-area {
	background: var(--darker) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 9px;
	padding-bottom: 9px;
}

.header-contact ul li {
	font-size: 12.5px;
	font-weight: 500;
}

.header-contact ul li i {
	color: var(--primary);
}

.header-contact ul li span {
	color: #9CA3AF;
	letter-spacing: 0.01em;
}

.header-social ul li a {
	color: #9CA3AF !important;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	font-size: 13px;
}

.header-social ul li a:hover {
	color: #fff !important;
	background: var(--primary) !important;
}

/* language switcher (top bar) */
.header-social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.lang-switch {
	position: relative;
	display: inline-block;
	margin-right: 14px;
}

.lang-switch .lang-current {
	color: #9CA3AF;
	text-decoration: none;
	font-size: 12.5px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	transition: all 0.2s ease;
}

.lang-switch .lang-current:hover {
	opacity: 1;
	color: #fff;
	border-color: var(--primary-border);
	background: rgba(121, 118, 246, 0.15);
}

.lang-switch .lang-menu {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 99990;
	background: #fff;
	min-width: 180px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	border-radius: 0.9rem;
	border: 1px solid var(--border);
	box-shadow: 0 16px 40px -12px rgba(17, 24, 39, 0.25);
	display: none;
}

.lang-switch:hover .lang-menu,
.lang-switch.open .lang-menu {
	display: block;
}

.lang-switch .lang-menu li a {
	display: block;
	padding: 8px 16px;
	color: var(--body-text) !important;
	font-size: 13px;
	text-decoration: none;
	font-weight: 500;
}

.lang-switch .lang-menu li a:hover {
	background: var(--secondary);
	color: var(--primary) !important;
}

.lang-switch .lang-menu li.lang-active a {
	font-weight: 700;
	color: var(--primary) !important;
}

.lang-switch .lang-menu li.lang-active a i.fa-check {
	color: var(--accent);
	margin-left: 6px;
}

/* ============================================================
   NAVBAR — glass bar + pill links
   ============================================================ */
.menu-area {
	position: relative !important;
	background: rgba(255, 255, 255, 0.9) !important;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--primary-border) !important;
	box-shadow: 0 4px 20px -8px rgba(121, 118, 246, 0.15);
	z-index: 9990;
}

.menu-area .row {
	display: flex;
	align-items: center;
}

.logo {
	margin: 10px 0 !important;
}

.logo img {
	height: 44px !important;
	width: auto !important;
}

.sticky .logo img {
	height: 40px !important;
}

ul.nav-menu {
	float: right !important;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
	padding: 12px 0;
}

ul.nav-menu > li {
	display: inline-block;
	position: relative;
}

ul.nav-menu li a {
	font-family: var(--font) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: rgba(17, 24, 39, 0.78) !important;
	text-decoration: none !important;
	padding: 9px 16px !important;
	border-radius: 9999px !important;
	text-transform: none !important;
	letter-spacing: 0;
	display: block;
	transition: all 0.2s ease;
}

ul.nav-menu li a:hover,
ul.nav-menu li.current_page_item a,
ul.nav-menu li.current-menu-item a {
	color: var(--primary) !important;
	background: var(--secondary) !important;
}

/* dropdown */
ul.nav-menu li ul {
	border-radius: 1rem !important;
	border: 1px solid var(--border) !important;
	background: #fff !important;
	box-shadow: 0 20px 50px -12px rgba(17, 24, 39, 0.25) !important;
	padding: 10px !important;
	margin: 0 !important;
	min-width: 215px;
}

ul.nav-menu li ul li {
	display: block;
	width: 100%;
	animation: modernDrop 0.25s ease both;
}

@keyframes modernDrop {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

ul.nav-menu li ul li a {
	background: transparent !important;
	color: var(--body-text) !important;
	padding: 10px 16px !important;
	border-radius: 0.7rem !important;
	font-weight: 500 !important;
}

ul.nav-menu li ul li a:hover {
	background: var(--secondary) !important;
	color: var(--primary) !important;
	padding-left: 20px !important;
}

ul.nav-menu li ul li a:before {
	display: none !important;
}

/* nav CTA pill */
.nav-cta-item {
	margin-left: 10px;
}

a.nav-cta {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	background: var(--primary) !important;
	color: #fff !important;
	font-weight: 600 !important;
	padding: 10px 22px !important;
	border-radius: 9999px !important;
	box-shadow: 0 8px 20px -6px rgba(121, 118, 246, 0.55);
}

a.nav-cta:hover {
	background: var(--primary-hover) !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px -6px rgba(121, 118, 246, 0.6);
}

/* sticky state */
#strickymenu.sticky {
	background: rgba(255, 255, 255, 0.96) !important;
	border-bottom: 1px solid var(--primary-border) !important;
	box-shadow: 0 14px 40px -12px rgba(17, 24, 39, 0.22) !important;
}

.sticky ul.nav-menu li a {
	padding: 9px 16px !important;
}

/* meanmenu (mobile) */
.mean-container .mean-bar {
	background: transparent !important;
	min-height: 56px;
	padding: 0 6px;
}

.mean-container a.meanmenu-reveal {
	background: var(--primary) !important;
	color: #fff !important;
	border-radius: 12px;
	box-shadow: 0 6px 16px -4px rgba(121, 118, 246, 0.5);
}

.mean-container .mean-nav {
	background: #ffffff !important;
	border-radius: 0 0 1rem 1rem;
	box-shadow: 0 20px 40px -14px rgba(17, 24, 39, 0.2);
	margin-top: -6px;
	overflow: hidden;
}

.mean-container .mean-nav ul li a {
	background: #fff !important;
	color: var(--foreground) !important;
	font-family: var(--font);
	font-weight: 500;
	border-top: 1px solid var(--border) !important;
}

.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li li a:hover {
	background: var(--secondary) !important;
	color: var(--primary) !important;
}

.mean-container .mean-nav ul li li a {
	background: #fff !important;
	color: var(--muted-foreground) !important;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.slider {
	position: relative;
}

.slider::before,
.slider::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	z-index: 2;
	pointer-events: none;
}

.slider::before {
	width: 340px;
	height: 340px;
	right: -80px;
	top: 60px;
	background: rgba(56, 179, 184, 0.4);
}

.slider::after {
	width: 280px;
	height: 280px;
	left: -60px;
	bottom: 40px;
	background: rgba(121, 118, 246, 0.45);
}

.slider-item {
	height: 660px !important;
	background-position: center !important;
}

.slider .bg {
	background: linear-gradient(100deg,
		rgba(17, 24, 39, 0.9) 0%,
		rgba(17, 24, 39, 0.62) 48%,
		rgba(121, 118, 246, 0.32) 100%) !important;
}

.slider-text {
	text-align: left !important;
}

.slider-text .slider-animated {
	text-align: center;
}

.slider-animated h2 {
	font-family: var(--font) !important;
	font-size: clamp(32px, 5.4vw, 40px) !important;
	font-weight: 700 !important;
	line-height: 1.06 !important;
	text-transform: none !important;
	letter-spacing: -0.03em !important;
	color: #fff !important;
	margin-bottom: 18px !important;
	text-shadow: 0 2px 30px rgba(17, 24, 39, 0.4);
}

.slider-animated p {
	font-family: var(--font) !important;
	font-size: 18px !important;
	color: rgba(255, 255, 255, 0.86) !important;
	max-width: 40rem;
	margin: 0 auto 26px !important;
	line-height: 1.7;
}

.slider-animated ul {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0;
	padding: 0;
}

.slider-animated li a {
	font-family: var(--font) !important;
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 14px 30px !important;
	border-radius: 9999px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	background: var(--primary) !important;
	color: #fff !important;
	border: 1px solid transparent !important;
	box-shadow: 0 10px 26px -8px rgba(121, 118, 246, 0.65);
	transition: all 0.2s ease;
}

.slider-animated li a:hover {
	background: var(--primary-hover) !important;
	border-color: transparent !important;
	color: #fff !important;
	transform: translateY(-2px);
}

.slider-animated li:last-child a {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 255, 255, 0.45) !important;
	color: #fff !important;
	backdrop-filter: blur(8px);
	box-shadow: none;
}

.slider-animated li:last-child a:hover {
	background: rgba(255, 255, 255, 0.22) !important;
	border-color: #fff !important;
	color: #fff !important;
	transform: translateY(-2px);
}

.slide-carousel .owl-dots {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}

.slide-carousel .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.45) !important;
	transition: all 0.25s ease;
}

.slide-carousel .owl-dots .owl-dot.active span {
	background: var(--primary) !important;
	width: 26px;
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.banner-slider {
	height: 320px !important;
	position: relative;
	border-radius: 0 0 2rem 2rem;
	overflow: hidden;
	background-position: center !important;
}

.banner-slider .bg {
	background: linear-gradient(115deg,
		rgba(17, 24, 39, 0.92) 0%,
		rgba(30, 27, 75, 0.78) 55%,
		rgba(121, 118, 246, 0.55) 100%) !important;
}

.banner-slider::after {
	content: '';
	position: absolute;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(56, 179, 184, 0.3);
	filter: blur(60px);
	right: -60px;
	bottom: -80px;
	pointer-events: none;
}

.banner-text h1 {
	font-family: var(--font) !important;
	font-size: clamp(28px, 4vw, 38px) !important;
	font-weight: 700 !important;
	text-transform: none !important;
	letter-spacing: -0.02em !important;
}

.banner-text h1::after {
	content: '';
	display: block;
	width: 56px;
	height: 4px;
	border-radius: 9999px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	margin: 16px auto 0;
}

/* ============================================================
   SECTION HEADLINES
   ============================================================ */
.headline,
.testimonial-headline {
	margin: 0 15px 40px 15px !important;
}

.headline-shadow {
	display: block !important;
}

.headline-shadow:before {
	display: none !important;
}

.headline-shadow h2,
.testimonial-headline h2 {
	font-family: var(--font) !important;
	font-size: clamp(26px, 3vw, 34px) !important;
	font-weight: 700 !important;
	text-transform: none !important;
	letter-spacing: -0.02em !important;
	color: var(--foreground) !important;
	margin: 0 !important;
}

.headline-shadow h2::before {
	content: '';
	display: block;
	width: 48px;
	height: 5px;
	border-radius: 9999px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	margin: 0 auto 14px;
}

.headline-shadow p,
.testimonial-headline p {
	font-family: var(--font) !important;
	font-size: 17px !important;
	color: var(--muted-foreground) !important;
	max-width: 44rem;
	margin: 10px auto 0 !important;
}

/* ============================================================
   CARDS — services / blog / gallery / portfolio / team
   ============================================================ */
.services-item,
.blog-item,
.caption-item,
.recent-item,
.team-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-item:hover,
.blog-item:hover,
.caption-item:hover,
.recent-item:hover,
.team-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.services-photo,
.blog-photo,
.recent-photo {
	height: 210px !important;
	background-size: cover !important;
	background-position: center !important;
}

.caption-photo {
	height: 200px !important;
	background-size: cover !important;
	background-position: center !important;
}

.team-photo {
	height: 260px !important;
	background-size: cover !important;
	background-position: center top !important;
}

.services-text,
.blog-text,
.caption-text,
.recent-text,
.team-text {
	background: #fff !important;
	border-top: none !important;
	padding: 20px 22px 22px;
}

.services-text h3 a,
.blog-text h3 a,
.recent-text h3 {
	font-family: var(--font);
	font-size: 17px;
	font-weight: 700;
	color: var(--foreground);
	text-decoration: none;
	transition: color 0.2s ease;
}

.services-text h3 a:hover,
.blog-text h3 a:hover {
	color: var(--primary) !important;
}

.services-text,
.blog-text,
.recent-text {
	font-size: 15px;
	color: var(--muted-foreground);
	line-height: 1.65;
}

/* read-more links */
.services-link a {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	background: transparent !important;
	background-color: transparent !important;
	color: var(--primary) !important;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	padding: 0 !important;
	border-radius: 0 !important;
	text-decoration: none;
}

.services-link a i {
	transition: transform 0.2s ease;
}

.services-link a:hover i {
	transform: translateX(4px);
}

.services-link a:hover {
	background: transparent !important;
	color: var(--primary-hover) !important;
}

/* blog author meta */
.blog-author ul,
.single-blog-author ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 12px 22px 0;
}

.blog-item .blog-author {
	padding-top: 14px;
	background: #fff !important;
}

.blog-author li {
	font-size: 12px;
	color: var(--muted-foreground);
}

.blog-author li.gro {
	background: var(--primary-soft) !important;
	color: var(--primary) !important;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 9999px;
	font-size: 11.5px;
	letter-spacing: 0.02em;
}

/* gallery caption + lightbox hover overlays */
.caption-bg,
.lightbox-bg {
	background: linear-gradient(180deg, rgba(121, 118, 246, 0.55), rgba(56, 179, 184, 0.45)) !important;
}

.caption-icon a,
.lightbox-icon a {
	background: #fff !important;
	color: var(--primary) !important;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	box-shadow: 0 10px 24px -6px rgba(17, 24, 39, 0.3);
	transition: transform 0.2s ease;
}

.caption-icon a:hover,
.lightbox-icon a:hover {
	transform: scale(1.08);
	color: var(--primary-hover) !important;
}

.caption-text p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--foreground);
}

/* team */
.team-text {
	text-align: center;
	padding: 18px 16px 20px !important;
}

.team-text h4 {
	font-size: 16px;
	margin: 0 0 4px;
}

.team-text p {
	margin: 0;
	font-size: 14px;
	color: var(--muted-foreground);
}

.team-social {
	left: 0;
	right: 0;
}

.team-social li a {
	background: #fff !important;
	color: var(--primary) !important;
	width: 34px;
	height: 34px;
	line-height: 34px;
	border-radius: 9999px;
	box-shadow: 0 6px 16px -4px rgba(17, 24, 39, 0.25);
}

.team-social li a:hover {
	background: var(--primary) !important;
	color: #fff !important;
}

/* testimonials */
.testimonial-text .client-name {
	background: transparent !important;
	padding: 0 !important;
	margin-bottom: 14px;
}

.testimonial-text .client-name h4 {
	font-size: 17px;
	color: var(--foreground);
	margin: 0;
}

.testimonial-text .client-name span {
	font-size: 14px;
	color: var(--muted-foreground);
}

.testimonial-detail {
	background: #fff !important;
	color: var(--body-text) !important;
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	box-shadow: var(--shadow-sm);
}

.testimonial-detail .fa-quote-left {
	color: var(--primary) !important;
}

.testimonial-photo img {
	border-radius: 9999px;
	border: 3px solid var(--secondary);
	box-shadow: 0 10px 24px -8px rgba(121, 118, 246, 0.4);
}

.testimonial-area.main-testimonial .testimonial-detail {
	background: #fff !important;
	color: var(--body-text) !important;
}

.main-testimonial .testimonial-carousel .owl-dots .owl-dot {
	background: var(--muted) !important;
	border: 1px solid var(--border) !important;
}

.main-testimonial .testimonial-carousel .owl-dots .owl-dot.active {
	background: var(--primary) !important;
	border-color: var(--primary) !important;
}

/* ============================================================
   WHY CHOOSE AREA
   ============================================================ */
.choose-area .choose-left,
.choose-area .choose-right {
	min-height: 480px;
}

.choose-area .choose-left {
	border-radius: 2rem 0 0 2rem;
	background-size: cover;
	background-position: center;
}

.bg-choose {
	background: linear-gradient(135deg, rgba(17, 24, 39, 0.93) 0%, rgba(67, 56, 202, 0.82) 100%) !important;
}

.choose-item ul li {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 1rem;
	padding: 16px 18px;
	margin-bottom: 14px;
	backdrop-filter: blur(6px);
	transition: all 0.25s ease;
}

.choose-item ul li:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateX(6px);
}

.choose-icon img {
	background: #fff !important;
	border-radius: 12px !important;
	padding: 7px;
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.choose-text h3 {
	color: #fff !important;
	font-size: 16px;
	margin: 0 0 6px;
}

.choose-text p {
	color: rgba(255, 255, 255, 0.82) !important;
	font-size: 14px;
	margin: 0;
	line-height: 1.6;
}

/* ============================================================
   FAQ (accordion panels)
   ============================================================ */
.faq-gallery .panel-default > .panel-heading {
	background: #fff !important;
	border-radius: 1rem !important;
	border: 1px solid var(--border);
}

.faq-gallery .panel {
	background: #fff;
	border: 1px solid var(--border) !important;
	border-radius: 1rem !important;
	box-shadow: var(--shadow-sm);
	margin-bottom: 14px;
	overflow: hidden;
}

.faq-gallery h4.panel-title a {
	font-family: var(--font);
	font-size: 16px;
	font-weight: 600;
	color: var(--foreground);
	text-decoration: none;
}

.faq-gallery h4.panel-title a:hover {
	color: var(--primary) !important;
}

.faq-gallery .panel-group .panel-heading a:after {
	color: var(--primary) !important;
}

.faq-gallery .panel-body {
	border-top: 1px solid var(--border) !important;
	font-size: 15px;
	color: var(--body-text);
}

.faq-gallery > h3 {
	font-size: 24px;
}

.faq-gallery h4.sub {
	font-size: 16px;
	color: var(--muted-foreground);
	font-weight: 500;
}

/* ============================================================
   COUNTER AREA
   ============================================================ */
.bg-counterup {
	background: linear-gradient(120deg, rgba(17, 24, 39, 0.9) 0%, rgba(67, 56, 202, 0.85) 100%) !important;
}

.counter-item h2.counter {
	font-family: var(--font);
	font-size: 40px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}

.counter-item h4 {
	color: rgba(255, 255, 255, 0.8) !important;
	font-weight: 500;
	font-size: 16px;
}

.counter-border {
	border-color: rgba(255, 255, 255, 0.14) !important;
}

/* ============================================================
   FORMS / CONTACT / SIDEBAR / SINGLE PAGES
   ============================================================ */
.form-control {
	font-family: var(--font);
	border-radius: 0.85rem !important;
	border: 1px solid var(--border) !important;
	padding: 11px 14px;
	box-shadow: none !important;
	color: var(--foreground);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
	border-color: var(--primary) !important;
	box-shadow: 0 0 0 4px rgba(121, 118, 246, 0.14) !important;
}

.contact-area label,
.form-group label {
	font-family: var(--font);
	font-weight: 600;
	font-size: 14px;
	color: var(--foreground);
}

.contact-area h4 {
	font-size: 19px;
	margin-bottom: 18px;
}

.map-area iframe {
	border-radius: 1.25rem;
	border: 1px solid var(--border);
	width: 100%;
}

.error {
	background: #FEF2F2;
	border: 1px solid #FECACA;
	color: #B91C1C;
	border-radius: 0.85rem;
	padding: 12px 16px;
	font-size: 14px;
	margin-bottom: 16px;
}

.success {
	background: #F0FDF4;
	border: 1px solid #BBF7D0;
	color: #15803D;
	border-radius: 0.85rem;
	padding: 12px 16px;
	font-size: 14px;
	margin-bottom: 16px;
}

/* sidebar */
.sidebar-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 1.1rem;
	box-shadow: var(--shadow-sm);
	padding: 20px 22px;
	margin-bottom: 22px;
}

.sidebar-item h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border);
	position: relative;
}

.sidebar-item h3:before {
	background: var(--primary) !important;
	height: 3px;
	bottom: -1px;
	border-radius: 9999px;
}

.sidebar-item ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-item ul li {
	padding: 6px 0;
	border-bottom: 1px dashed var(--border);
}

.sidebar-item ul li:last-child {
	border-bottom: none;
}

.sidebar-item ul li a {
	color: var(--body-text);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
}

.sidebar-item ul li a:hover {
	color: var(--primary) !important;
	padding-left: 6px;
}

.searchbar-item button.btn {
	background: var(--primary) !important;
	color: #fff !important;
	border: none !important;
}

.searchbar-item button.btn:hover {
	background: var(--primary-hover) !important;
}

/* single detail pages */
.single-service-photo img,
.service-main-photo img,
.faq-gallery-main img {
	border-radius: 1.25rem;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
}

.single-service-text p,
.about-text p,
.common-text p {
	line-height: 1.8;
	color: var(--body-text);
}

.single-blog-author li.gro {
	background: var(--primary-soft) !important;
	color: var(--primary) !important;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 9999px;
	font-size: 12.5px;
}

.mission-icon {
	background: var(--primary) !important;
	color: #fff !important;
	border-radius: 9999px;
	box-shadow: 0 10px 24px -8px rgba(121, 118, 246, 0.55);
}

.about-mission {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	box-shadow: var(--shadow-sm);
	padding: 26px;
	height: 100%;
}

.about-mission h3 {
	font-size: 18px;
}

/* ============================================================
   PAGINATION / FILTER PILLS / MISC
   ============================================================ */
.pagination a,
.pagination li a,
.pagination strong,
.pagination-area a,
.pagination-area strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 14px;
	margin: 0 3px;
	border-radius: 9999px !important;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--body-text);
	font-family: var(--font);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}

.pagination a:hover,
.pagination li a:hover,
.pagination-area a:hover {
	border-color: var(--primary) !important;
	color: var(--primary) !important;
	background: var(--secondary) !important;
}

.recent-menu ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 0 0 34px;
	padding: 0;
}

.recent-menu ul li {
	cursor: pointer;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	color: var(--body-text);
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 9999px;
	padding: 10px 22px;
	transition: all 0.2s ease;
}

.recent-menu ul li:hover,
.recent-menu ul li.filter-active,
.recent-menu ul li.active {
	background: var(--primary) !important;
	border-color: var(--primary) !important;
	color: #fff !important;
}

.hvr-bounce-to-right:before {
	background: var(--primary) !important;
	border-radius: 9999px !important;
}

.well {
	background: var(--muted);
	border: 1px dashed var(--border);
	border-radius: 1.25rem;
	color: var(--muted-foreground);
}

/* careers job type label */
.blog-author .label {
	font-family: var(--font);
	border-radius: 9999px !important;
	font-weight: 600;
	font-size: 11px;
	padding: 5px 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-contact-area {
	background: linear-gradient(115deg, #4F46E5 0%, #7976F6 55%, #38B3B8 130%) !important;
	padding: 40px 0;
}

.footer-contact-item {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 1.25rem;
	padding: 22px 24px;
	backdrop-filter: blur(8px);
	height: 100%;
}

.footer-contact-item ul {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-contact-item ul li:first-child {
	flex-shrink: 0;
}

.footer-contact-item ul li img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	background: #fff;
	border-radius: 12px;
	padding: 9px;
}

.footer-contact-item h4 {
	color: #fff !important;
	font-size: 16px;
	margin: 0 0 4px;
}

.footer-contact-item p {
	color: rgba(255, 255, 255, 0.85) !important;
	font-size: 14px;
	margin: 0;
}

.footer-main {
	background: var(--dark) !important;
	color: #9CA3AF !important;
	padding: 60px 0 40px;
}

.footer-main h3 {
	color: #fff !important;
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.footer-main h3:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 3px;
	border-radius: 9999px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-main p {
	color: #9CA3AF;
	font-size: 15px;
	line-height: 1.75;
}

.footer-main .news-item {
	padding: 7px 0;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.09);
}

.footer-main .news-item:last-child {
	border-bottom: none;
}

.footer-main .news-title a {
	color: #9CA3AF;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
}

.footer-main .news-title a:hover {
	color: #fff;
	padding-left: 6px;
}

.footer-copyrignt {
	background: var(--darker) !important;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text p {
	color: #6B7280 !important;
	font-size: 14px;
	margin: 0;
}

/* scroll top */
.scroll-top {
	background: var(--primary) !important;
	color: #fff !important;
	width: 46px;
	height: 46px;
	line-height: 46px !important;
	border-radius: 9999px;
	box-shadow: 0 12px 28px -8px rgba(121, 118, 246, 0.65);
}

.scroll-top:hover {
	background: var(--primary-hover) !important;
}

/* ============================================================
   OWL CAROUSEL CONTROLS
   ============================================================ */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
	background: #fff !important;
	color: var(--primary) !important;
	width: 44px;
	height: 44px;
	line-height: 44px !important;
	border-radius: 9999px;
	border: 1px solid var(--primary-border);
	box-shadow: 0 8px 20px -6px rgba(17, 24, 39, 0.18);
	transition: all 0.2s ease;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
	background: var(--primary) !important;
	color: #fff !important;
	border-color: var(--primary);
}

.slide-carousel .owl-nav .owl-prev,
.slide-carousel .owl-nav .owl-next {
	background: rgba(255, 255, 255, 0.14) !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(6px);
}

.slide-carousel .owl-nav .owl-prev:hover,
.slide-carousel .owl-nav .owl-next:hover {
	background: var(--primary) !important;
	border-color: var(--primary);
}

.owl-carousel .owl-dots .owl-dot span {
	background: var(--muted);
	border: 1px solid var(--border);
}

.owl-carousel .owl-dots .owl-dot.active span {
	background: var(--primary);
	border-color: var(--primary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
	.menu-area .row {
		display: block;
	}

	.slider-item {
		height: 520px !important;
	}

	.slider-animated h2 {
		font-size: 32px !important;
	}

	.banner-slider {
		height: 240px !important;
	}

	.choose-area .choose-left,
	.choose-area .choose-right {
		min-height: 320px;
	}

	.footer-main {
		padding: 44px 0 30px;
	}

	.footer-col {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.slider-item {
		height: 460px !important;
	}

	.slider::before,
	.slider::after {
		display: none;
	}

	.banner-slider {
		height: 200px !important;
		border-radius: 0 0 1.25rem 1.25rem;
	}

	.headline,
	.testimonial-headline {
		margin-bottom: 28px !important;
	}

	.counter-item h2.counter {
		font-size: 32px;
	}

	.footer-contact-item {
		margin-bottom: 16px;
	}
}

/* ============================================================
   TYPOGRAPHY SCALE — standard readable sizes
   (override block, must stay last in this file)
   ============================================================ */
body {
	font-size: 18px !important;
}

/* top bar */
.header-contact ul li {
	font-size: 16px !important;
}

.header-social ul li a {
	font-size: 16px !important;
}

.lang-switch .lang-current {
	font-size: 16px !important;
}

.lang-switch .lang-menu li a {
	font-size: 16px !important;
}

/* navbar */
ul.nav-menu li a {
	font-size: 17px !important;
}

ul.nav-menu li ul li a {
	font-size: 17px !important;
}

a.nav-cta {
	font-size: 17px !important;
}

.mean-container .mean-nav ul li a {
	font-size: 17px !important;
}

/* hero */
.slider-animated p {
	font-size: 22px !important;
}

.slider-animated li a {
	font-size: 17px !important;
}

/* section headlines */
.headline-shadow p,
.testimonial-headline p {
	font-size: 21px !important;
}

/* cards */
.services-text,
.blog-text,
.recent-text {
	font-size: 18px !important;
}

.services-text h3 a,
.blog-text h3 a,
.recent-text h3 {
	font-size: 22px !important;
}

.services-link a {
	font-size: 17px !important;
}

.blog-author li {
	font-size: 15px !important;
}

.blog-author li.gro {
	font-size: 14px !important;
}

.caption-text p {
	font-size: 18px !important;
}

.team-text h4 {
	font-size: 21px !important;
}

.team-text p {
	font-size: 17px !important;
}

.testimonial-text .client-name h4 {
	font-size: 21px !important;
}

.testimonial-text .client-name span {
	font-size: 17px !important;
}

/* why choose */
.choose-text h3 {
	font-size: 21px !important;
}

.choose-text p {
	font-size: 18px !important;
}

/* faq */
.faq-gallery h4.panel-title a {
	font-size: 20px !important;
}

.faq-gallery .panel-body {
	font-size: 18px !important;
}

.faq-gallery h4.sub {
	font-size: 18px !important;
}

/* forms */
.error,
.success {
	font-size: 18px !important;
}

.contact-area label,
.form-group label {
	font-size: 17px !important;
}

/* sidebar & single pages */
.sidebar-item ul li a {
	font-size: 18px !important;
}

.single-blog-author li.gro {
	font-size: 15px !important;
}

/* pagination & filters */
.pagination a,
.pagination li a,
.pagination strong,
.pagination-area a,
.pagination-area strong {
	font-size: 17px !important;
}

.recent-menu ul li {
	font-size: 17px !important;
}

.blog-author .label {
	font-size: 14px !important;
}

/* footer */
.footer-main h3 {
	font-size: 22px !important;
}

.footer-main p {
	font-size: 18px !important;
}

.footer-main .news-title a {
	font-size: 18px !important;
}

.footer-contact-item h4 {
	font-size: 21px !important;
}

.footer-contact-item p {
	font-size: 18px !important;
}

.copyright-text p {
	font-size: 17px !important;
}

/* generic content areas (about, detail pages, privacy, terms) */
.common-text,
.single-service-text,
.faq-home,
.about-area {
	font-size: 18px !important;
}

.common-text p,
.single-service-text p {
	font-size: 18px !important;
}
