/**
* Template Name: Landify
* Template URL: https://bootstrapmade.com/landify-bootstrap-landing-page-template/
* Updated: Aug 04 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
	--default-font:
		"Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
		"Noto Color Emoji";
	--heading-font: "Ubuntu", sans-serif;
	--nav-font: "Rubik", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #ffffff; /* Background color for the entire website, including individual sections */
	--default-color: #3b5353; /* Default color used for the majority of the text content across the entire website */
	--heading-color: #193838; /* Color for headings, subheadings and title throughout the website */
	--accent-color: #00a19e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: #3b5353; /* The default color of the main navmenu links */
	--nav-hover-color: #00a19e; /* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #3b5353; /* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #00a19e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
	--background-color: #f0f6f5;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #031a1a;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #0f302f;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

.text-primary {
	color: var(--accent-color) !important;
}

.text-bold {
	font-weight: 700;
}

.btn {
	background: var(--accent-color);
	color: var(--contrast-color);
	padding: 15px 30px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	box-shadow: 0 8px 20px
		color-mix(in srgb, var(--accent-color), transparent 70%);
}

.btn:hover {
	background: color-mix(
		in srgb,
		var(--accent-color),
		var(--default-color) 10%
	);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px
		color-mix(in srgb, var(--accent-color), transparent 60%);
	color: var(--contrast-color);
}

.btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px
		color-mix(in srgb, var(--accent-color), transparent 70%);
}

.btn-ask-question {
	display: flex;
	align-items: center;
	gap: 10px;
}

.no-bullets {
	margin: 0;
	padding: 0;
	list-style: none;
}

.more-link {
	color: var(--heading-color);
	font-weight: 500;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.more-link i {
	transition: transform 0.3s ease;
}

.more-link:hover {
	color: var(--accent-color);
}

.more-link:hover i {
	transform: translateX(5px);
}

/*------------------------------
# Global Modal
------------------------------*/
.modal-header,
.modal-body {
	padding-left: 25px;
	padding-right: 25px;
}

.modal-header {
	align-items: normal;
	border-bottom: none;
}

.modal-header p {
	margin-bottom: 0;
	text-align: center;
}

.modal-title-wrapper {
	margin-left: 25px;
}

@media (min-width: 575px) {
	.modal-dialog {
		max-width: 550px;
	}
}

@media (min-width: 992px) {
	.modal-dialog {
		max-width: 580px;
	}

	.modal-header,
	.modal-body {
		padding-left: 40px;
		padding-right: 40px;
	}
}

/*------------------------------
# Global Form
------------------------------*/
.form-control,
.form-select {
	padding: 0.75rem 1.25rem;
	border-color: #e5e5e5;
	border-radius: 8px;
	font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
	border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
	box-shadow: 0 0 0 0.25rem
		color-mix(in srgb, var(--accent-color), transparent 90%);
}

.form-control::placeholder,
.form-select::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	--background-color: #ffffff;
	color: var(--default-color);
	transition: all 0.5s;
	z-index: 997;
	background-color: var(--background-color);
}

.header .toolbar {
	background-color: var(--background-color);
	height: 40px;
	padding: 0;
	font-size: 14px;
	transition: all 0.5s;
}

.header .toolbar .contact-info i {
	font-style: normal;
	/*color: var(--contrast-color); */
	color: color-mix(in srgb, var(--contrast-color), transparent 40%);
	margin-right: 1em;
}

.header .toolbar .contact-info a,
.header .toolbar .contact-info i a,
.header .toolbar .contact-info i span {
	padding-left: 5px;
	/* color: var(--contrast-color);*/
	color: color-mix(in srgb, var(--contrast-color), transparent 40%);
}

@media (max-width: 575px) {
	.header .toolbar .contact-info i a,
	.header .toolbar .contact-info i span {
		font-size: 13px;
	}
}

@media (max-width: 389px) {
	.toolbar .contact-info i {
		display: none;
	}
}

.header .toolbar .contact-info i a {
	line-height: 0;
	transition: 0.3s;
}

.header .toolbar .contact-info a:hover,
.header .toolbar .contact-info i:hover,
.header .toolbar .contact-info i a:hover {
	color: var(--contrast-color);
	/*  text-decoration: underline; */
}

.toolbar .social-links {
	align-items: center;
}

.social-links__max {
	width: 16px;
	height: 16px;
	display: inline-block;
	background-image: url(/assets/img-1/icon-max-messenger-white.svg);
}

.social-links__max:hover {
	background-image: url(/assets/img-1/icon-max-messenger-black.svg);
}

.header .toolbar .social-links a {
	color: color-mix(in srgb, var(--contrast-color), transparent 40%);
	line-height: 0;
	transition: 0.3s;
	margin-left: 20px;
}

.header .toolbar .social-links a:hover {
	color: var(--contrast-color);
}

.header .branding {
	min-height: 60px;
	padding: 10px 0;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 50px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 700;
	color: var(--heading-color);
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
	background-color: #ffffff;
	opacity: 0.8;
}

.scrolled .header .toolbar {
	height: 0;
	visibility: hidden;
	overflow: hidden;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 14px;
	padding: 8px 26px;
	margin: 0;
	border-radius: 4px;
	transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .btn-getstarted {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 20px;
	}

	.header .navmenu {
		order: 3;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		padding: 18px 15px;
		font-size: 16px;
		font-family: var(--nav-font);
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li:last-child a {
		padding-right: 0;
	}

	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-hover-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover > a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(
			in srgb,
			var(--accent-color),
			transparent 90%
		);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid
			color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown > .dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu > ul {
		display: block;
	}

	.navmenu .social-links__max {
		background-image: url(/assets/img-1/icon-max-messenger-black.svg);
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 14px;
	padding-bottom: 50px;
	position: relative;
}

.footer .footer-top {
	padding-top: 50px;
	border-top: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
	line-height: 1;
	margin-bottom: 25px;
}

.footer .footer-about .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.footer .footer-about .logo span {
	color: var(--heading-color);
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
	font-family: var(--heading-font);
}

.footer-slogan p {
	font-family: var(--heading-font);
	font-weight: 400;
}

.footer-slogan p:first-child {
	font-size: calc(18px + 2 * ((100vw - 320px) / (1920 - 320)));
	margin-bottom: 5px;
}

.footer-slogan p:last-child {
	font-size: calc(16px + 2 * ((100vw - 320px) / (1920 - 320)));
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	margin-right: 10px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

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

.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-links ul i {
	padding-right: 2px;
	font-size: 12px;
	line-height: 0;
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul a {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	display: inline-block;
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

.footer .footer-contact p {
	margin-bottom: 5px;
}

.footer .copyright {
	padding-top: 25px;
	padding-bottom: 25px;
	background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
	margin-bottom: 0;
}

/* .footer .credits {
	margin-top: 6px;
	font-size: 13px;
} */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: -15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 20px 0;
	position: relative;
}

.page-title h1 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 66px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding: 30px 0;
	margin-bottom: 30px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 0;
	position: relative;
	z-index: 2;
}

.description-title {
	position: absolute;
	top: 4px;
	color: color-mix(in srgb, var(--heading-color), transparent 95%);
	left: 0;
	right: 0;
	z-index: 1;
	font-weight: 700;
	font-size: 52px;
	text-transform: uppercase;
	line-height: 1;
}

.section-title p {
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}

@media (max-width: 575px) {
	.section-title h2 {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.description-title {
		font-size: 38px;
	}
}

/*--------------------------------------------------------------
# Global Tab
--------------------------------------------------------------*/
.tabs-wrapper {
	background-color: var(--surface-color);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.nav-tabs {
	border: 0;
	gap: 20px;
	margin-bottom: 60px;
	display: flex;
}

.nav-item {
	flex: 1;
	min-width: 0;
}

.nav-tabs .nav-link {
	background: color-mix(
		in srgb,
		var(--surface-color),
		var(--default-color) 3%
	);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	border-radius: 15px;
	padding: 25px 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	height: auto;
	min-height: 80px;
	cursor: pointer;
}

.nav-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
	);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.nav-link .tab-content {
	position: relative;
	z-index: 2;
	flex: 1;
}

.nav-link .tab-content h5 {
	margin: 0 0 4px 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--heading-color);
	text-align: center;
	transition: color 0.4s ease;
}

.nav-link .tab-content span {
	font-size: 13px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	transition: color 0.4s ease;
}

.nav-link:hover {
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: 0 15px 40px
		color-mix(in srgb, var(--accent-color), transparent 70%);
}

.nav-link:hover::before {
	opacity: 1;
}

.nav-link:hover .tab-content h5,
.nav-link:hover .tab-content span {
	color: var(--contrast-color);
}

.nav-link.active {
	border-color: var(--accent-color);
	box-shadow: 0 15px 40px
		color-mix(in srgb, var(--accent-color), transparent 70%);
}

.nav-link.active::before {
	opacity: 1;
}

.nav-link.active .tab-content h5,
.nav-link.active .tab-content span {
	color: var(--contrast-color);
}

@media (max-width: 991px) {
	.nav-tabs {
		gap: 15px;
		margin-bottom: 40px;
	}

	.nav-item {
		flex: 1 0 30%;
	}
}

@media (max-width: 767px) {
	.tabs-wrapper {
		padding: 20px;
	}

	.nav-tabs {
		gap: 10px;
		margin-bottom: 20px;
	}

	.nav-tabs .nav-link {
		padding: 0 10px;
		min-height: 60px;
	}

	.nav-link .tab-content h5 {
		font-size: 13px;
		font-weight: 500;
	}

	.nav-link .tab-content span {
		font-size: 12px;
	}
}

/*--------------------------------------------------------------
# Global Table
--------------------------------------------------------------*/
.table-striped th {
	border-top: 1px solid #dee2e6;
}

/*--------------------------------------------------------------
# Global Table
--------------------------------------------------------------*/
.card {
	background-color: var(--surface-color);
	border: none;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
	border-radius: 12px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	padding: 140px 0 60px 0;
	background: linear-gradient(
		135deg,
		var(--surface-color) 0%,
		color-mix(in srgb, var(--accent-color), transparent 95%) 100%
	);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 20% 80%,
		color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
		transparent 50%
	);
	pointer-events: none;
}

.hero-content {
	padding: 20px 0;
}

.hero-content > :last-child {
	margin-top: 40px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 32px;
	color: var(--heading-color);
}

.hero-description {
	font-size: 2rem;
	line-height: 1.7;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-bottom: 48px;
	font-weight: 300;
}

.hero-bages {
	border: 0;
	gap: 20px;
	display: flex;
	flex-wrap: wrap;
}

.hero-bage {
	flex: 1;
	min-width: 0;
}

.hero-bage-link {
	background: color-mix(
		in srgb,
		var(--accent-color),
		var(--default-color) 10%
	);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	border-radius: 15px;
	padding: 25px 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	height: auto;
	min-height: 80px;
	cursor: pointer;
}

.hero-bage-link:hover {
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: 0 15px 40px
		color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero-bage-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
	);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.hero-bage-link:hover::before {
	opacity: 1;
}

.hero-bage-content {
	position: relative;
	z-index: 2;
	flex: 1;
	color: #fff;
}

.hero-advantages {
	position: relative;
	z-index: 1;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid var(--accent-color);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	padding: 25px 20px;
}

.hero-advantages-list li {
	font-size: 1.3rem;
	font-weight: 300;
	color: var(--accent-color);
	margin-bottom: 4px;
	position: relative;
	padding-left: 30px;
}

.hero-advantages-list li i {
	position: absolute;
	left: 0;
	top: 0;
}

@media (max-width: 992px) {
	.hero {
		padding: 110px 0 80px;
	}

	.hero-bages {
		flex-direction: column;
		gap: 15px;
	}

	.hero-advantages-list li {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.hero {
		padding-bottom: 60px;
	}

	.hero-title {
		font-size: 2.5rem;
		margin-bottom: 24px;
	}

	.hero-description {
		font-size: 1.125rem;
		margin-bottom: 40px;
	}
}

@media (max-width: 574px) {
	.hero-title {
		font-size: 2.1rem;
	}
}

.purpose {
	position: relative;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%,
		var(--surface-color) 100%
	);
}

.purpose::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: color-mix(in srgb, var(--accent-color), transparent 96%);
	transform: rotate(-15deg);
	z-index: 1;
}

.purpose-list {
	margin-bottom: 20px;
}

.purpose-list li:not(:last-child) {
	margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Table Block
--------------------------------------------------------------*/
@media (min-width: 992px) {
	.table-block .tabs-wrapper {
		padding: 55px;
	}
}

/*--------------------------------------------------------------
# Advantages Section
--------------------------------------------------------------*/
.advantages-list {
	max-width: 80%;
	margin: 0 auto;
}

.advantages-item {
	display: flex;
	gap: 25px;
}

.advantages-item + .advantages-item {
	margin-top: 35px;
}

.advantages-icon {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	border: 2px solid var(--contrast-color);
	color: var(--contrast-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.advantages-icon:hover {
	transform: translateY(-5px);
}

.advantages h5 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--heading-color);
	font-weight: 600;
}

.advantages p {
	color: color-mix(in srgb, var(--default-color), transparent 25%);
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 767px) {
	.advantages-list {
		max-width: 100%;
	}

	.advantages-item {
		flex-direction: column;
		gap: 20px;
	}

	.advantages-item + .advantages-item {
		margin-top: 25px;
	}

	.advantages-icon {
		margin: 0 auto;
	}

	.advantages-content {
		text-align: center;
	}
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .swiper {
	padding: 10px 0;
}

.gallery .swiper-wrapper {
	height: auto;
}

.gallery .swiper-slide img {
	width: 100%;
	transition: 0.3s;
	border-radius: 1rem;
}

.gallery .swiper-slide img:hover {
	transform: scale(1.1);
}

.gallery-slider .swiper-pagination {
	bottom: -5px;
}

.gallery-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #f0f6f5;
	opacity: 1;
}

.gallery-slider .swiper-pagination-bullet-active {
	background: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-slider {
	width: 100%;
	position: relative;
	padding-bottom: 60px;
}

.testimonial-item {
	background-color: var(--surface-color);
	padding: 40px;
	border-radius: 20px;
}

.testimonial-preview-text {
	height: calc(1rem * 1.8 * 2);
	overflow: hidden;
}

.testimonial-item h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.testimonial-item p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 30px;
	font-style: italic;
}

.profile {
	gap: 15px;
	border-bottom: 1px solid
		color-mix(in srgb, var(--default-color), transparent 92%);
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
}

.profile-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.profile-info h3 {
	font-size: 18px;
	margin: 0;
	font-weight: 600;
}

.profile-info span {
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-navigation {
	position: absolute;
	bottom: 0;
	gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	margin: 0;
	width: 44px;
	height: 44px;
	background-color: var(--surface-color);
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
	transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
	font-size: 20px;
	color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
	color: var(--contrast-color);
}

@media (max-width: 767px) {
	.testimonial-preview-text {
		height: calc(1rem * 1.8 * 4);
	}

	.profile-info h3 {
		height: calc(18px * 1.2 * 3);
	}

	.profile-info span {
		display: inline-block;
		height: calc(14px * 1.2 * 2);
	}
}

@media (max-width: 575px) {
	.testimonials .testimonial-item {
		padding: 20px;
	}
}

/*--------------------------------------------------------------
# Video Gallery Section
--------------------------------------------------------------*/
.video-gallery-list {
	gap: 25px;
}

/* .video-gallery-item video {
	border-radius: 1rem;
} */

.video-gallery-info h4 {
	font-size: 18px;
	font-weight: 600;
	padding-right: 50px;
}

.video-gallery-info p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-size: 14px;
	margin-bottom: 0;
	padding-right: 50px;
}

@media (max-width: 767px) {
	.video-gallery-info {
		margin-top: 15px;
	}
}

@media (max-width: 991px) {
	.video-gallery .section-title {
		margin-bottom: 0;
	}

	.video-gallery-item:not(:first-child) {
		display: none;
	}
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
	--card-radius: 16px;
	--card-shadow: 0 10px 30px
		color-mix(in srgb, var(--default-color), transparent 92%);
	--muted: color-mix(in srgb, var(--default-color), transparent 55%);
	--line: color-mix(in srgb, var(--default-color), transparent 85%);
	--accent-soft: color-mix(in srgb, var(--accent-color), transparent 85%);
	--accent-strong: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.price-card {
	background: var(--surface-color);
	border: 1px solid var(--line);
	border-radius: var(--card-radius);
	padding: 28px;
	box-shadow: var(--card-shadow);
	display: flex;
	flex-direction: column;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s;
}

.price-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 40px
		color-mix(in srgb, var(--default-color), transparent 88%);
	border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .card-head {
	margin-bottom: 25px;
}

.pricing .title {
	font-size: 22px;
	margin-bottom: 20px;
}

.pricing-img {
	width: 100%;
	max-height: 239px;
	object-fit: cover;
	border-radius: 1rem;
}

.pricing .cta {
	margin-top: 25px;
}

.pricing .btn-choose {
	border: 2px solid var(--accent-color);
	color: var(--accent-color);
	background: transparent;
	font-weight: 700;
	padding: 10px 16px;
	border-radius: 10px;
	transition: 0.3s;
}

.price .btn-choose:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-category {
	font-family: var(--heading-font);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact .content h2 {
	font-weight: 700;
	line-height: 1.2;
}

.contact .content .lead {
	color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .contact-info .info-item {
	font-size: 1.1rem;
}

.contact .contact-info .info-item i {
	color: var(--accent-color);
	font-size: 1.4rem;
}

/* .contact .contact-form {
  background-color: var(--surface-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
} */

.contact .contact-form .btn-submit {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	padding: 0.75rem 2rem;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.contact .contact-form .btn-submit:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
	transform: translateY(-1px);
}

.contact .contact-form .btn-submit:active {
	transform: translateY(0);
}

.agreement {
	margin-top: 15px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
	height: auto !important;
}

.service-details .service-header {
	margin-bottom: 40px;
}

.service-details .service-header h1 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
}

.service-details .service-header h1:after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 0;
	width: 80px;
	height: 4px;
	background: var(--accent-color);
}

.service-details .service-header .service-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
	margin-top: 25px;
}

.service-details .service-header .service-meta span {
	display: flex;
	align-items: center;
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
	color: var(--accent-color);
	margin-right: 8px;
	font-size: 16px;
}

.service-details .service-header .lead {
	font-size: 18px;
	line-height: 1.7;
	color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-tabs {
	margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
	border-bottom: 2px solid
		color-mix(in srgb, var(--heading-color), transparent 90%);
	margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
	margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
	border: none;
	border-radius: 0;
	padding: 12px 20px;
	font-weight: 600;
	color: color-mix(in srgb, var(--heading-color), transparent 30%);
	position: relative;
	transition: all 0.3s;
	display: flex;
	align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
	margin-right: 8px;
	font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: var(--accent-color);
	transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
	color: var(--heading-color);
	background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
	width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
	color: var(--accent-color);
	background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
	width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 700;
}

.service-details .service-tabs .tab-content .content-block p {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-bottom: 15px;
	line-height: 1.7;
}

.service-details .service-tabs .tab-content img {
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
	position: relative;
	padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
	content: "";
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 15px;
	width: 2px;
	background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
	position: relative;
	padding-bottom: 35px;
}

.service-details
	.service-tabs
	.tab-content
	.process-timeline
	.timeline-item:last-child {
	padding-bottom: 0;
}

.service-details
	.service-tabs
	.tab-content
	.process-timeline
	.timeline-item
	.timeline-marker {
	position: absolute;
	left: -30px;
	top: -5px;
	width: 32px;
	height: 32px;
	background-color: var(--accent-color);
	color: var(--contrast-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	z-index: 2;
}

.service-details
	.service-tabs
	.tab-content
	.process-timeline
	.timeline-item
	.timeline-content {
	padding-left: 10px;
}

.service-details
	.service-tabs
	.tab-content
	.process-timeline
	.timeline-item
	.timeline-content
	h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.service-details
	.service-tabs
	.tab-content
	.process-timeline
	.timeline-item
	.timeline-content
	p {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
	background-color: var(--surface-color);
	border-radius: 12px;
	padding: 30px;
	transition: all 0.3s ease;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--accent-color);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
	transform: scaleX(1);
	transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
	transform: rotateY(180deg);
	background-color: var(--accent-color);
}

.service-details
	.service-tabs
	.tab-content
	.benefit-card:hover
	.benefit-icon
	i {
	color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
	font-size: 28px;
	color: var(--accent-color);
	transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-bottom: 0;
}

.service-details .service-gallery h3 {
	font-size: 26px;
	margin-bottom: 25px;
	font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details
	.service-gallery
	.service-details-slider
	.portfolio-item:hover
	.portfolio-info {
	opacity: 1;
	transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
	border-radius: 12px;
	transition: all 0.4s ease;
}

.service-details
	.service-gallery
	.service-details-slider
	.portfolio-item
	.portfolio-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(0, 0, 0, 0) 100%
	);
	padding: 30px 20px 20px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.service-details
	.service-gallery
	.service-details-slider
	.portfolio-item
	.portfolio-info
	h5 {
	color: var(--contrast-color);
	font-weight: 700;
	margin-bottom: 5px;
}

.service-details
	.service-gallery
	.service-details-slider
	.portfolio-item
	.portfolio-info
	p {
	color: color-mix(in srgb, var(--contrast-color), transparent 20%);
	margin: 0;
	font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
	padding-top: 5px;
	bottom: 0;
}

.service-details
	.service-gallery
	.service-details-slider
	.swiper-pagination
	.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
	opacity: 1;
}

.service-details
	.service-gallery
	.service-details-slider
	.swiper-pagination
	.swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 25px;
	border-radius: 5px;
	background-color: var(--accent-color);
}

.service-details .service-sidebar {
	position: sticky;
	top: 100px;
}

.service-details .service-sidebar .action-card {
	background: linear-gradient(
		135deg,
		var(--accent-color) 0%,
		color-mix(in srgb, var(--accent-color), black 20%) 100%
	);
	border-radius: 15px;
	padding: 35px 30px;
	color: var(--contrast-color);
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	text-align: center;
}

.service-details .service-sidebar .action-card:before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	z-index: 1;
}

.service-details .service-sidebar .action-card:after {
	content: "";
	position: absolute;
	bottom: -40px;
	left: -40px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
	color: var(--contrast-color);
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
	margin-bottom: 25px;
	opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
	background-color: var(--contrast-color);
	color: var(--accent-color);
	border: none;
	border-radius: 8px;
	padding: 12px 25px;
	font-weight: 600;
	display: inline-block;
	transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
	display: block;
	margin-top: 20px;
	font-size: 14px;
	opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
	margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
	background-color: var(--surface-color);
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid
		color-mix(in srgb, var(--heading-color), transparent 90%);
}

.service-details .service-sidebar .service-features-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-details .service-sidebar .service-features-list ul li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
	margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
	flex-shrink: 0;
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	color: var(--accent-color);
	width: 42px;
	height: 42px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
	flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
}

.service-details .service-sidebar .service-features-list ul li div p {
	color: color-mix(in srgb, var(--default-color), transparent 25%);
	margin: 0;
	font-size: 14px;
}

.service-details .service-sidebar .testimonial-card {
	background-color: var(--surface-color);
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .testimonial-card .testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
	font-size: 36px;
	color: var(--accent-color);
	opacity: 0.3;
}

.service-details
	.service-sidebar
	.testimonial-card
	.testimonial-header
	.rating {
	display: flex;
}

.service-details
	.service-sidebar
	.testimonial-card
	.testimonial-header
	.rating
	i {
	color: #ffd700;
	font-size: 16px;
	opacity: 1;
	margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
	font-style: italic;
	line-height: 1.7;
	margin-bottom: 20px;
	color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
	display: flex;
	align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
}

.service-details
	.service-sidebar
	.testimonial-card
	.client-info
	.client-details
	h5 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 5px;
}

.service-details
	.service-sidebar
	.testimonial-card
	.client-info
	.client-details
	span {
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
	background-color: var(--surface-color);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-method:last-child {
	margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-method i {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
	flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
	display: block;
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
	margin: 0;
	font-weight: 600;
	color: var(--heading-color);
}

@media (max-width: 991px) {
	.service-details .service-sidebar {
		position: relative;
		top: 0;
		margin-bottom: 40px;
	}

	.service-details .service-header h1 {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.service-details .service-tabs .nav-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
	}

	.service-details .service-tabs .nav-tabs .nav-link {
		white-space: nowrap;
		padding: 10px 15px;
		font-size: 14px;
	}

	.service-details .service-tabs .nav-tabs .nav-link i {
		font-size: 16px;
	}

	.service-details .service-header h1 {
		font-size: 26px;
	}

	.service-details .service-header .service-meta {
		gap: 15px;
	}

	.service-details .service-header .service-meta span {
		font-size: 14px;
	}

	.service-details .service-header .lead {
		font-size: 16px;
	}
}

/*--------------------------------------------------------------
# Modal Testimonials
--------------------------------------------------------------*/
.modal-testimonials-profile {
	border-bottom: 1px solid
		color-mix(in srgb, var(--default-color), transparent 92%);
	margin-bottom: 1rem;
	padding-bottom: 1rem;
}

.modal-testimonials .modal-dialog {
	max-width: 980px;
}

.modal-testimonials .modal-body {
	padding-bottom: 40px;
}

.modal-testimonials p:last-child {
	margin-bottom: 0;
}

.modal-testimonials-profile h3 {
	font-size: 1.27rem;
}

.modal-testimonials-profile p {
	color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.modal-testimonials img {
	max-height: 300px;
	object-fit: cover;
}

@media (min-width: 768px) {
	.modal-testimonials-profile {
		margin-bottom: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.modal-testimonials-profile h3 {
		font-size: 1.4rem;
	}

	.modal-testimonials-profile p {
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
# Modal Policy
--------------------------------------------------------------*/
.modal-policy .modal-body {
	font-size: 14px;
	padding-left: 15px;
    padding-right: 15px;
}

.modal-policy ol,
.modal-policy ul {
	padding: 0 0 0 20px;
}

.modal-policy p:not(:first-child) {
	margin-top: 8px;
	margin-bottom: 8px;
}

.modal-policy p:first-child {
	margin-top: 0;
}

.modal-policy li + li {
	margin-top: 8px;
}

@media (min-width: 992px) {
    .modal-policy .modal-dialog {
        max-width: 980px;
    }

	.modal-policy .modal-body {
		font-size: 16px;
		padding-left: 25px;
		padding-right: 25px;
	}

	.modal-policy p:not(:first-child) {
		margin-top: 15px;
		margin-bottom: 15px;
	}

	.modal-policy p + p,
	.modal-policy li + li {
		margin-top: 15px;
	}
}
/*--------------------------------------------------------------
# Plugin Callback
--------------------------------------------------------------*/
.plugin-callback {
	position: fixed;
	right: 20px;
	bottom: 75px;
	z-index: 99;
}

.plugin-callback__btn {
	display: flex;
	align-items: center;
	justify-content: center;
/* 	width: 55px;
	height: 55px; */
	border-radius: 50%;
	font-size: 52px;
	color: #2ca5e0;
	line-height: 1;
	padding: 0;
}

.plugin-callback__btn:hover {
	color: #2ca5e0;
}

.plugin-callback__btn::after {
	content: " ";
	display: block;
	position: absolute;
	border: 1px solid #2ca5e0;
	left: -20px;
	right: -20px;
	top: -20px;
	bottom: -20px;
	border-radius: 50%;
	animation: animate-circle 1.5s linear infinite;
	opacity: 0;
	backface-visibility: hidden;
}

.plugin-callback__btn .bi-telegram::before {
	background-color: #fff;
    border-radius: 50%;
}

@media (min-width: 768px) {
	.plugin-callback {
		right: 30px;
	}

	/* .plugin-callback__btn {
		width: 60px;
		height: 60px;
		font-size: 28px;
	} */
}

@keyframes animate-circle {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}
