.banner-top img {
	width: 100%;
}

.banner-wrap {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	scroll-margin-top: 100px;
}

.banner-wrap .inner {
	display: flex;
	gap: 90px;
	padding: 60px 0;
	align-items: center;
}

.banner-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0A0B0C;
	z-index: 0;
	opacity: .8;
}

.banner-left {
	flex: 1;
	color: white;
	position: relative;
}

.banner-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px;
}

.banner-subtitle {
	color: #ddd4d4;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
	max-width: 500px;
}

.banner-actions {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.btn-discover {
	background: linear-gradient(to right, #ed6170 0%, #bc0b1e 100%);
	color: #FFF;
	padding: 12px 25px;
	border-radius: 50px;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
}

.btn-discover:hover {
	background: #FFF;
	color: #000;
}

.btn-discover::after {
	content: '\2192';
	font-size: 20px;
	transform: translateY(-2px);
}

.call-box {
	display: flex;
	align-items: center;
	gap: 15px;
}

.call-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, #ed6170 0%, #bc0b1e 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.call-icon svg {
	width: 30px;
	height: 30px;
	color: #FFF;
}

.call-info {
	display: flex;
	flex-direction: column;
}

.call-label {
	font-size: 15px;
	color: #FFF;
}

.call-number {
	font-size: 20px;
	font-weight: bold;
	color: #f31830;
}

.clients-box {
	border: 1px solid #5b5b5d;
	border-radius: 15px;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 500px;
}

.clients-avatars {
	display: flex;
	align-items: center;
}

.clients-box .avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 3px solid #1a1a2e;
	margin-left: -15px;
	background: rgba(0, 0, 0, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	position: relative;
}

.clients-box .avatar img {
	border-radius: 50%;
}

.clients-box .avatar .plus {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.clients-box .avatar:first-child {
	margin-left: 0;
}

.avatar-plus {
	background: #2d2d44;
	font-size: 20px;
}

.clients-text {
	font-size: 16px;
	font-weight: 600;
}

.banner-right {
	width: 50%;
	position: relative;
}

.form-sidebar {
	position: relative;
	background: #FFF;
	border-top: 5px solid #f31830;
}

.form-container {
	padding: 0 40px 40px;
}

.form-sidebar .text-subtitle {
	background-color: #f2f4fa;
	padding: 12px;
	border-radius: 12px;
	margin-bottom: 16px;
	font-size: 26px;
	font-weight: 700;
	text-align: center;
}

.form-sidebar .text-subtitle img {
	max-width: 200px;
}

.video-placeholder {
	font-size: 15px;
	text-align: center;
	font-weight: 700;
	max-width: 70%;
	margin: 0 auto 20px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 15px;
	margin-bottom: 15px;
}

.label-text {
	margin-bottom: 5px;
}

.label-text span {
	color: #f31830;
}

.form-input {
	border: none;
	padding: 9px 12px;
	font-size: 15px;
	outline: none;
	transition: all 0.3s;
	width: 100%;
	background: #F4F5F8;
}

.form-input.full-width {
	grid-column: 1 / -1;
}

textarea.form-input {
	resize: vertical;
	min-height: 100px;
	font-family: inherit;
}

.btn-submit {
	    background: linear-gradient(to right, #ed6170 0%, #bc0b1e 100%);
	color: #FFF;
	padding: 12px 40px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-submit:hover {
	background: #000;
}

.btn-submit::after {
	content: '\2192';
	font-size: 20px;
	transform: translateY(-1px);
}

.features-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	padding: 40px 60px;
	background: white;
	max-width: 1400px;
	margin: 0 auto;
	border-radius: 0 0 20px 20px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: #ff2e2e;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	flex-shrink: 0;
}

.feature-content h3 {
	font-size: 20px;
	margin-bottom: 8px;
	color: #1a1a2e;
}

.feature-content p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* facts-section */
.facts-section {
	position: relative;
	padding: 50px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* .facts-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .64);
} */

.facts-section .section-header {
	text-align: center;
	margin-bottom: 70px;
}

.facts-section .section-label {
	color: #666;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.facts-section .section-label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -60px;
	width: 50px;
	height: 3px;
	background: #f31830;
	transform: translateY(-50%);
}

.facts-section .section-title {
	font-size: 28px;
	text-transform: uppercase;
}

.facts-section .facts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.facts-section .fact-card {
	background: #ffffff;
	border: 8px solid #f31830;
	border-radius: 8px;
	padding: 60px 15px 25px;
	text-align: center;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facts-section .fact-card .content-text h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.facts-section .fact-card .content-text {
	position: relative;
	z-index: 1;
}

.facts-section .fact-card::after {
	position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: #f31830;
    transform: scale(.4);
    transition: all 300ms ease;
}

.facts-section .fact-card:hover::after {
	transform: scale(1);
    opacity: 1;
}

.facts-section .fact-card:hover {
	color: #FFF;
}

.facts-section .fact-card:hover .icon-circle {
	background-color: #FFF;
}

.facts-section .icon-circle {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
	background: linear-gradient(to bottom, #ffffff 0%, #bc0b1e 80%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.facts-section .icon-circle img {
	width: 50px;
	height: 50px;
}

.facts-section .fact-number {
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.facts-section .fact-label {
	font-size: 18px;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

/* .facts-section .fact-card:before {
    content: "";
    background: url(https://dev242.kodesolution.com/techon/wp-content/plugins/mascot-core-techon/assets/images/current-theme/icon-lines-5.png);
    position: absolute;
    right: 0;
    bottom: 0;
    width: 138px;
    height: 139px;
	z-index: 1;
} */

/* why choose  */
/* why choose  */
.why-choose {
    background-color: #000;
    color: #FFF;
    position: relative;
	scroll-margin-top: 100px;
}

.why-choose .inner {
    display: grid;
    grid-template-columns: auto 40%;
    padding: 0 var(--container-gutter);
    margin: 0 auto;
    max-width: var(--container);
    width: 100%;
}

.why-choose__content {
    padding: 80px 40px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose__label {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #999;
    font-weight: 600;
}

.why-choose__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
	text-transform: uppercase;
}

.why-choose__features {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.why-choose__feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-choose__feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose__feature-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.why-choose__feature-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.why-choose__description {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 30px;
}

.why-choose__services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-choose__service {
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-choose__service-number {
    width: 60px;
    height: 60px;
    border: 2px solid #f31830;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
	padding: 5px;
}

.why-choose__service-name {
    font-size: 17px;
    font-weight: 600;
}

.why-choose__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
}

.why-choose__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* faq  */
.faq-wrap {
	padding: 60px 0;
	position: relative;
	scroll-margin-top: 100px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.faq-wrap .inner {
	display: grid;
    grid-template-columns: 40% auto;
    padding: 0 var(--container-gutter);
    margin: 0 auto;
    max-width: var(--container);
    width: 100%;
	gap: 60px;
}

.faq-wrap .left-section {
	display: flex;
	flex-direction: column;
}

.faq-wrap .faq-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-wrap .faq-item {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-wrap .faq-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 51, 51, 0.3);
}

.faq-wrap .faq-question {
	padding: 15px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
}

.faq-wrap .question-text {
	font-size: 16px;
	font-weight: 600;
	flex: 1;
}

.faq-wrap .toggle-icon {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #333;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.faq-wrap .faq-item.active .toggle-icon {
	transform: rotate(180deg);
}

.faq-wrap .faq-item.active .faq-question {
	color: #f31830;
}

.faq-wrap .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-wrap .faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 25px 20px;
}

.faq-wrap .answer-text {
	color: #666;
	font-size: 15px;
	line-height: 1.6;
}

.faq-wrap .right-section {
	
}

.faq-wrap .image-card {
	display: flex;
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40%;
}

.faq-wrap .image-card img {
	object-fit: cover;
}

/* review  */
.reviews {
	padding: 30px 0;
	scroll-margin-top: 100px;
}

.reviews .title-wrap {
	text-align: center;
}

.title-wrap {
	margin-bottom: 25px;
}

.title-wrap .title {
	font-size: 28px;
	text-transform: uppercase;
	position: relative;
}

.title-wrap .title::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	height: 3px;
    background: #f31830;
	width: 100px;
}

.reviews .title-wrap .title::before {
	left: 50%;
	transform: translateX(-50%);
}

.title-wrap .subtitle {
	font-size: 16px;
	line-height: 1.6;
	max-width: 950px;
	margin: 20px auto 0;
}

.review-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	margin: 10px 15px 25px;
	min-height: unset !important;
}

.icon-review-card {
	margin-bottom: 10px;
}

.icon-review-card img {
	height: 30px;
	transform: rotate(179deg);
}

.review-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.6;
	margin-bottom: 20px;
	color: #555;
	font-size: 16px;
	height: 102px;
}

.reviewer {
	display: flex;
	align-items: center;
	gap: 15px;
}

.reviewer-avatar img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.reviewer-info h4 {
	margin-bottom: 5px;
	font-size: 18px;
}

.stars {
	color: #FFD700;
	font-size: 19px;
}

.reviewer-info .stars ul {
	display: flex;
	gap: 0px 1px;
}

.reviewer-info .stars ul li {
	list-style: none;
}

.reviewer-info .stars ul li svg {
	width: 19px;
	height: 19px;
}

.reviews-grid .slick-list {
	margin: 0 -15px;
}

/* about us  */
.about-us {
	padding: 40px 0 60px;
	scroll-margin-top: 100px;
}

.about-us .inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-us .image-wrapper {
	position: relative;
}

/* .about-us .image-wrapper .decorative-lines {
	position: absolute;
	left: -30px;
	bottom: -30px;
	width: 240px;
	height: 240px;
	background-image: repeating-linear-gradient(45deg,
			#4A90E2,
			#4A90E2 2px,
			transparent 2px,
			transparent 8px);
	z-index: 2;
} */

.about-us .image-wrapper .image-frame {
	position: relative;
}

.about-us .image-wrapper .image-frame::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 15px;
	left: -15px;
	z-index: 1;
	background: linear-gradient(to bottom, #ffffff 0%, #bc0b1e 80%);
}

.about-us .image-wrapper .image-frame img {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 3;
}

.about-us .content .subtitle {
	color: #666;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 15px;
	position: relative;
	padding-left: 50px;
}

.about-us .content .subtitle::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 3px;
	background-color: #f31830;
}

.about-us .content .title {
	margin-bottom: 10px;
	font-size: 28px;
	background: linear-gradient(to bottom, #ed6170, #bc0b1e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us .content .description {
	color: #666;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 20px;
}

.about-us .content .features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 35px;
}

.about-us .content .features .feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.about-us .content .features .feature-item .icon {
	width: 60px;
	height: 60px;
	background-color: #f318301c;
	padding: 5px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.about-us .content .features .feature-item .icon svg {
	width: 30px;
	height: 30px;
	fill: #f31830;
}

.about-us .content .features .feature-item .text {
	font-size: 16px;
	font-weight: 600;
}

.about-us .content .checklist {
	margin-bottom: 35px;
}

.about-us .content .checklist .checklist-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.about-us .content .checklist .checklist-item .check-icon {
	width: 24px;
	height: 24px;
	background-color: #f31830;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.about-us .content .checklist .checklist-item .check-icon::after {
	content: '\2713';
	color: white;
	font-size: 14px;
	font-weight: bold;
}

.about-us .content .checklist .checklist-item .text {
	font-size: 16px;
	font-weight: 500;
}

.about-us .content .cta-button {
	display: inline-block;
	background: linear-gradient(to right, #ed6170 0%, #bc0b1e 100%);
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 18px 40px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.about-us .content .cta-button:hover {
	background: #000;
}

.gg-map {
	display: flex;
}

.gg-map iframe {
	width: 100%;
	height: 300px;
}

@media (max-width: 992px) {
	.faq-wrap .inner {
		gap: 20px;
	}

	.facts-section .facts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 60px 30px;
	}

	.banner-wrap .inner {
		gap: 30px;
	}

	.about-us .inner {
		gap: 35px;
	}

	.about-us .image-wrapper .image-frame::before {
		top: 5px;
    	left: -5px;
	}
}

@media (max-width: 768px) {
	.faq-wrap .inner,
	.why-choose .inner {
		grid-template-columns: 1fr;
	}

	.faq-wrap .image-card,
	.why-choose__image {
		position: unset;
		width: 100%;
	}

	.why-choose__content {
		padding: 30px 0;
	}

	.why-choose {
		padding-bottom: 30px;
	}

	.banner-wrap .inner {
		display: block;
	}

	.banner-right {
		width: 100%;
	}

	.banner-wrap .inner {
		padding: 30px 0;
	}

	.about-us .inner {
		grid-template-columns: 1fr;
	}

	.about-us {
		padding: 30px 0;
	}

	.reviews-grid .slick-list {
		margin: 0 -10px;
	}
}

@media (max-width: 576px) {
	.title-wrap .title {
		font-size: 20px;
	}

	.title-wrap .subtitle {
		font-size: 14px;
	}

	.title-wrap {
		margin-bottom: 15px;
	}

	.faq-wrap {
		padding: 30px 0;
	}

	.why-choose__title {
		font-size: 21px;
		line-height: 1.4;
		margin-bottom: 15px;
	}

	.why-choose__label {
		letter-spacing: 1px;
	}

	.why-choose__description p span {
		font-size: 14px !important;
	}

	.why-choose__services {
		grid-template-columns: 1fr;
    	gap: 15px;
	}

	.why-choose__service-name {
		font-size: 16px;
	}

	.facts-section .facts-grid {
		gap: 50px 10px;
	}

	.facts-section .icon-circle {
		width: 80px;
    	height: 80px;
	}

	.facts-section .fact-card {
		padding: 45px 8px 15px;
		border: 5px solid #f31830;
	}

	.facts-section .section-title {
		font-size: 21px;
	}

	.facts-section .section-label {
		letter-spacing: 1px;
		margin-bottom: 10px;
	}

	.facts-section {
		padding: 30px 0;
	}

	.facts-section .section-label::before {
		display: none;
	}

	.form-sidebar .text-subtitle {
		font-size: 19px;
	}

	.form-container {
		padding: 0 15px 20px;
	}

	.btn-submit {
		padding: 10px 30px;
    	font-size: 14px;
	}

	.banner-title {
		font-size: 21px;
		margin-bottom: 10px;
	}

	.banner-subtitle li span {
		font-size: 14px !important;
	}

	.btn-discover {
		padding: 8px 22px;
		font-size: 14px;
	}

	.banner-actions {
		gap: 10px;
	}

	.call-icon {
		width: 40px;
		height: 40px;
	}

	.call-icon svg {
		width: 22px;
    	height: 22px;
	}

	.call-info {
		font-size: 14px;
	}

	.call-box {
		gap: 8px;
	}

	.about-us .content .title {
		font-size: 22px;
	}

	.about-us .content .cta-button {
		padding: 14px 40px;
	}
}