﻿/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Nextmind - AI Agency & Technology HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. How It Work css
09. Our Projects css
10. Our Features css
11. What We Do css
12. Language Examples css
13. Our Pricing css
14. Our Testimonials css
15. Our FAQs css
16. Our Blog css
17. Footer css
18. About Us Page css
19. Services Page css
20. Service Single css
21. Blog Archive css
22. Blog Single css
23. Projects Page css
24. Projects Single css
25. Team Page css
26. Team Single css
27. Pricing Page css
28. Testimonials Page css
29. Image Gallery css
30. Video Gallery css
31. FAQs Page css
32. Contact Us Page css
33. 404 Error Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #1A1A1A;
	--secondary-color			: #F3F1EC;
	--bg-color					: #FFFFFF;
	--text-color				: #4A4A4A;
	--accent-color				: #E5B41A;
	--accent-secondary-color	: #6B6B6B;
	--white-color				: #FFFFFF;
	--divider-color				: #1111111A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Sora", sans-serif;
	--brand-gold				: #E5B41A;
	--brand-red					: #E5B41A;
	--brand-grey				: #6B6B6B;
	--brand-dark				: #1A1A1A;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1em;
	color: var(--text-color);
    background: var(--bg-color);
}

::-webkit-scrollbar-track{
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb{
	background: linear-gradient(180deg, var(--accent-secondary-color) 0.26%, var(--accent-color) 99.99%);

}

::selection{
	color: var(--primary-color);
	background-color: cyan;
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25em;
	text-transform: capitalize;
	background: linear-gradient(to right, #414345, #232526);
	background-size: 200% auto;
	color: var(--white-color);
	border-radius: 100px;
	padding: 15px 24px;
	
	border: none;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	background-position: right center;
}



.btn-default:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

.btn-default.btn-highlighted{
	border: 1px solid var(--dark-divider-color);
	background: transparent;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	padding: 14px 24px;
}

.btn-default.btn-highlighted::before{
	background: var(--white-color) url('../images/arrow-accent.svg') no-repeat;
	background-position: center center;
	background-size: 24px auto;
}

.btn-default.btn-highlighted::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, #ffffff9e 0%, #000000 100%);
	border-radius: 100px;
    transform: scaleX(0);
    transition: all 0.4s ease-in-out;
	opacity: 0;
    z-index: -1;
}

.btn-default.btn-highlighted:hover::after{
	transform: scaleX(1);
	opacity: 1;
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 28px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '';
    position: absolute;
    top: 1px;
    right: 0;
	background: url('../images/arrow-accent.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 20px;
	height: 20px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before{
	filter: brightness(0) invert(0);
	transform: rotate(45deg);
}

.box-bg-shape{
	position: relative;
}

.box-bg-shape::after{
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
    mask: url('../images/box-bg-shape.svg');
	-webkit-mask: url('../images/box-bg-shape.svg');
	background-color: var(--white-color);
	mask-repeat: no-repeat;
	mask-position: top right;
	mask-size: cover;
	width: 169px;
	height: 50px;
	z-index: 1;
}

.cb-cursor::before{
	background: linear-gradient(90.01deg, var(--accent-secondary-color) 0.26%, var(--accent-color) 99.99%);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background:#0A0A0A;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--brand-gold) transparent var(--brand-gold);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.bg-section{
	background: var(--secondary-color);
	max-width: 1800px;
	border-radius: 20px;
	margin: 0 auto;
}

.dark-section{
	background: var(--primary-color);
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title-content p{
    margin-bottom: 20px;
}

.section-title-content p:last-child{
    margin-bottom: 0;	
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	text-align: left;
	margin-top: 20px;
}

.section-title{
    margin-bottom: 40px;
}

.section-title.section-title-center{
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
	background-image: url('../images/icon-sparkle-accent.svg');
	background-repeat: no-repeat;
    background-position: left center;
    background-size: 18px auto;
	padding-left: 26px;
    margin-bottom: 30px;
}

.section-title h1{
	font-size: 68px;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
    font-size: 44px;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	background: linear-gradient(to right, #00f1ff 0%, #dcff00 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.section-title h1:hover span,
.section-title h2:hover span{
	background-position: right center;
}

.section-title p{
	margin-top: 35px;
	margin-bottom: 0;
}

.dark-section .section-title h3{
	background-image: url('../images/icon-sparkle-white.svg');
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p{
	color: var(--white-color);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: relative;
	margin: 20px auto;
	z-index: 100;
}

header.main-header .container-fluid{
	padding: 0;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	width: 100%;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
	border-top: none;
}

.navbar{
	padding: 15px 30px;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	padding: 13px 10px !important;
	color: var(--text-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}



.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul li a:focus-visible{
    box-shadow: none;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
    background: linear-gradient(110.01deg, var(--accent-secondary-color) 0.26%, var(--accent-color) 99.99%);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 6px 20px !important;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	position: relative;
	top: 0;
}

.slicknav_btn{
	background: linear-gradient(90deg, #000000 0%, #2a2929f2 50%, #000000 100%);
	background-size: 200% auto;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
	transition: all 0.4s ease-in-out;
}

.navbar-toggle a.slicknav_btn.slicknav_open{
	background-position: right center;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--white-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--white-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: linear-gradient(110deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,	
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 400;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 165px 0;
}

.hero::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: var(--primary-color);
	border-radius: 20px;
	opacity: 55%;
    width: 100%;
    height: 100%;
	z-index: 1;
}

.hero::after{
	content: '';	
	position: absolute;
	bottom: 0;
	right: -1px;
    mask: url('../images/hero-video-bg-shape.svg');
	-webkit-mask: url('../images/hero-video-bg-shape.svg');
	background-color: var(--white-color);
	mask-repeat: no-repeat;
	mask-position: right bottom;
	mask-size: cover;
	width: 240px;
	height: 88px;
	z-index: 1;
}

.hero.hero-video{
	border-radius: 20px;
	overflow: hidden;
}

.hero.hero-video::after{
	display: none;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
	padding: 165px 0;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
	opacity: 55%;
	border-radius: 20px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 30px;
	text-align: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content-box{
	max-width: 1130px;
	text-align: center;
	margin: 0 auto;
}

.hero-content-box .section-title,
.hero-btn{
	position: relative;
	z-index: 1;
}

.hero-content-box .section-title p{
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.hero-btn{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 25px;
	margin-top: 60px;
}

.hero-content-box .video-play-button{
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.video-play-button{
	display: flex;
	align-items: center;
	gap: 10px;
}

.video-play-button a{
	height: 50px;
	width: 50px;
	background: linear-gradient(110deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a{
	background-position: right center;
}

.video-play-button a i{
	font-size: 18px;
	color: var(--white-color);
	margin-left: 2px;
}

.video-play-button h3{
	font-size: 18px;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	padding: 160px 0;
}

.year-experience-circle{
	position: relative;
	display: inline-block;
	margin-top: 80px;
}

.year-experience-circle img{
	width: 100%;
	max-width: 160px;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
    }
    to{
		transform: rotate(360deg);
    }
}

.year-experience-circle h2{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 46px;
	color: var(--accent-color);
}

.about-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 80px;
}

.about-box-1{
	width: calc(42% - 20px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	overflow: hidden;
	padding: 50px;
}

.about-item-content h3{
	font-size: 20px;
}

.about-item-content p{
	margin: 20px 0 0;
}

.about-box-body{
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-top: 30px;
}

.about-body-content{
	width: calc(100% - 150px);
}

.about-body-content ul{
	list-style: disc;
    margin: 0;
    padding-left: 20px;
}

.about-body-content ul li{
	line-height: 1.5em;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-body-content ul li:last-child{
	margin-bottom: 0;
}

.about-body-content ul li::marker{
    color: var(--accent-color);
}

.about-body-content .btn-default{
	margin-top: 30px;
}

.about-body-image{
    margin-right: -60px;
    margin-bottom: -115px;
    transform: rotate(-5.441deg);
    align-content: end;
}

.about-body-image figure{
	display: block;
}

.about-body-image img{
	width: 100%;
	max-width: 190px;
}

.about-box-2,
.about-box-3{
	width: calc(29% - 20px);
}

.about-box-2{
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 21.71%, var(--primary-color) 80.71%), url('../images/bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    align-content: end;
    border-radius: 20px;
    padding: 40px;
}

.review-images{
	display: inline-flex;
	align-items: center;
}

.review-image{
	position: relative;
	display: inline-block;
	margin-left: -16px;
	z-index: 1;
}

.review-image:first-child{
	margin: 0;
}

.review-image figure{
	display: block;
	border: 1px solid var(--white-color);
	border-radius: 50%;
}

.review-image img{
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.review-image.add-more{
	width: 50px;
	height: 50px;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.review-image.add-more:hover{
	background-position: right center;
}

.review-image.add-more i,
.review-image.add-more h3{
	font-size: 16px;
	color: var(--white-color);
}

.about-box-2 .about-item-content{
	margin-top: 40px;
}

.about-box-2 .about-item-content h3{
	color: var(--white-color);
}

.about-box-3{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 50px 40px;	
}

.about-box-3.box-bg-shape::after{
	width: 202px;
	height: 60px;
}

.about-us-counter{
	margin-bottom: 90px;
}

.about-us-counter h2{
	font-size: 56px;
	color: var(--accent-color);
}

.about-us-flags{
	position: absolute;
	top: 0;
	right: 0;
	margin-left: 10px;
	z-index: 2;
}

.about-us-flags .review-image{
	margin-left: -10px;
}

.about-us-flags .review-image img{
	max-width: 32px;
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-services{
	padding: 160px 0;
}

.service-item{
	background: var(--white-color);
	border-radius: 20px 0 20px 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.service-item.box-bg-shape::after{
	background-color: var(--secondary-color);
}

.service-item::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(110deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover::before{
	border-radius: 0;
	height: 100%;
}

.service-item .icon-box,
.service-item .what-do-item-content{
	position: relative;
	z-index: 1;
}

.service-item .icon-box{
	position: relative;
	width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    margin-bottom: 70px;
    transition: all 0.3s ease-in-out;
}

.service-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box::before{
	transform: scale(1);
}

.service-item .icon-box img{
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.service-item-content,
.service-readmore-btn{
	position: relative;
	z-index: 1;
}

.service-item-content h3{
	font-size: 20px;
	line-height: 1.4em;
	transition: all 0.4s ease-in-out;
}

.service-item-content h3 a{
	color: inherit;
}

.service-item-content p{
	margin: 10px 0 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item-content h3,
.service-item:hover .service-item-content p{
	color: var(--white-color);
}

.service-readmore-btn{
	border-top: 1px solid var(--divider-color);
	margin-top: 20px;
	padding-top: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-readmore-btn{
	border-color: var(--dark-divider-color);
}

.service-item:hover .service-readmore-btn .readmore-btn{
	color: var(--white-color);
}

.service-item:hover .service-readmore-btn .readmore-btn::before{
	filter: brightness(0) invert(1);
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.how-work-video-content .section-footer-text{
    margin: 30px 30px 0 30px;
}

.section-footer-text p{
	margin-bottom: 0;
}

.dark-section .section-footer-text p{
	color: var(--white-color);
}

.section-footer-text span{
	font-size: 14px;
	font-weight: 500;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	color: var(--white-color);
	padding: 3px 10px;
	border-radius: 99px;
	margin-right: 10px;
	transition: all 0.4s ease-in-out;
}

.section-footer-text p:hover span{
	background-position: right center;
}

.section-footer-text p a{
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

.dark-section .section-footer-text p a:hover{
	color: var(--white-color);
}

/************************************/
/*** 	 07. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	padding: 160px 0;
}

.why-choose-image-box{
	display: flex;
	flex-wrap: wrap;
}

.why-choose-image-1{
	margin-right: 100px;
}

.why-choose-img figure{
	display: block;
	border-radius: 20px;
}

.why-choose-img img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image-1 .why-choose-img img{
	aspect-ratio: 1 / 1.238;
}

.why-choose-image-2{
	position: relative;
	width: 100%;
	display: flex;
	align-items: end;
	gap: 10px;
	margin-top: -155px;
	z-index: 1;
}

.why-choose-image-2 .why-choose-img{
	width: calc(100% - 180px);
}

.why-choose-image-2 .why-choose-img img{
	aspect-ratio: 1 / 1.06;
	border-radius: 30px;
	border: 10px solid var(--white-color);
}

.year-experience-box{
	max-width: 170px;
	background: linear-gradient(90deg, #000000 0%, #2a2929f2 50%, #000000 100%);
	background-size: 200% auto;
	border-radius: 20px;
	padding: 35px 20px;
	text-align: center;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.year-experience-box:hover{
	background-position: right center;
}

.year-experience-box h2{
	font-size: 36px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.year-experience-box p{
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
	margin: 0;
}

.why-choose-content{
	margin-left: 15px;
}

.why-choose-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px 40px;
}

.why-choose-body-item{
	position: relative;
	width: calc(50% - 40px);
}

.why-choose-body-item::before{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: -40px;
	background: var(--divider-color);
	width: 1px;
	height: 70%;
	transform: translateY(-50%);
}

.why-choose-body-item:nth-child(2n + 2)::before,
.why-choose-body-item:last-child::before{
	display: none;
}

.why-choose-body-item .icon-box{
	margin-bottom: 20px;
}

.why-choose-body-item .icon-box img{
	max-width: 40px;
}

.why-choose-body-content h2{
	font-size: 20px;
}

.why-choose-body-content p{
	margin: 15px 0 0;
}

.why-choose-list{
	margin-top: 40px;
}

.why-choose-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.why-choose-list ul li{
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 30px;
}

.why-choose-list ul li:before{
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}


.why-choose-list-cust ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.why-choose-list-cust ul li{
	position: relative;

	line-height: 1.5em;
	padding-left: 30px;
}

.why-choose-list-cust ul li:before{
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}


.why-choose-btn{
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

/************************************/
/*** 	  08. How It Work css	  ***/
/************************************/

.how-it-work{
	padding: 160px 0;
}

.work-step-item{
	background: var(--white-color);
	border-radius: 20px 0 20px 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.work-step-item.box-bg-shape::after{
	background-color: var(--secondary-color);
}

.work-step-item::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(110deg, #000000 0%, #4b4a4a 100%);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
}

.work-step-item:hover::before{
	border-radius: 0 30px 0 0;
	height: 100%;
}

.work-step-item .icon-box,
.work-step-content{
	position: relative;
	z-index: 1;
}

.work-step-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #000000 0%, #2a2929f2 50%, #000000 100%);
    border-radius: 50%;
    margin-bottom: 40px;
    transition: all 0.3s ease-in-out;
}

.work-step-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.work-step-item:hover .icon-box::before{
	transform: scale(1);
}

.work-step-item .icon-box img {
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    border-radius: 50px;
}

.work-step-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.work-step-content h3{
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.work-step-content p{
	margin: 15px 0 0;
	transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-content h3,
.work-step-item:hover .work-step-content p{
	color: var(--white-color);
}

.work-step-no{
	position: absolute;
	top: 4px;
	right: 20px;
	z-index: 2;
}

.work-step-no h3{
	font-size: 18px;
	text-transform: uppercase;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-no h3{
	background-position: right center;
}

/************************************/
/*** 	 09. Our Projects css	  ***/
/************************************/

.our-projects{
	padding: 160px 0;
}

.our-projects .container-fluid{
	max-width: 1500px;
	padding: 0;
}

.project-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-image{
	position: relative;
	margin-bottom: 30px;
}

.project-image figure{
	display: block;
	border-radius: 20px;
}

.project-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.765;
	border-radius: 20px;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image figure img{
	transform: scale(1.1);
}

.project-btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn{
	transform: translate(-50%, -50%) scale(1);
}

.project-btn a{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.project-btn a img{
	width: 100%;
	max-width: 26px;
	transition: all 0.3s ease-in-out;
}

.project-btn a:hover img{
	transform: rotate(45deg);
}

.project-content h3{
	position: relative;
	font-size: 14px;
	padding-left: 20px;
}

.project-content h3::before{
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	background: var(--accent-color);
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

.project-content h2{
	font-size: 20px;
	line-height: 1.4em;
	margin-top: 15px;
}

.project-content h2 a{
	color: inherit;
}

.section-footer-text ul{
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
}

.section-footer-text ul li{
	display: inline-block;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.5em;
	margin-right: 10px;
}

.dark-section .section-footer-text ul li{
	color: var(--white-color);
}

.section-footer-text ul li:last-child{
	margin: 0;
}

.section-footer-text ul li i{
	color: var(--accent-color);
}

/************************************/
/*** 	 10. Our Features css	  ***/
/************************************/

.our-features{
	padding: 160px 0;
}

.feature-item{
	background: var(--white-color);
	border-radius: 20px 0 20px 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.feature-item.box-bg-shape::after{
	background-color: var(--secondary-color);
}

.feature-item::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(110deg, #000000 0%, #4b4a4a 100%);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
}

.feature-item:hover::before{
	border-radius: 0 30px 0 0;
	height: 100%;
}

.feature-item .icon-box,
.features-item-content,
.features-btn{
	position: relative;
	z-index: 1;
}

.feature-item .icon-box{
	margin-bottom: 25px;
}

.feature-item .icon-box img{
	width: 100%;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.feature-item:hover .icon-box img{
	transform: rotateY(180deg);
	filter: brightness(0) invert(1);
}

.features-item-content h2{
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.features-item-content p{
	margin: 20px 0 0;
	transition: all 0.4s ease-in-out;
}

.features-item-content ul{
	list-style: disc;
    margin: 30px 0 0;
    padding-left: 20px;
}

.features-item-content ul li{
	line-height: 1.5em;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.features-item-content ul li:last-child{
	margin-bottom: 0;
}

.features-item-content ul li::marker{
    color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.feature-item:hover .features-item-content h2,
.feature-item:hover .features-item-content p,
.feature-item:hover .features-item-content ul li,
.feature-item:hover .features-item-content ul li::marker,
.feature-item:hover .features-btn .readmore-btn{
	color: var(--white-color);
}

.features-btn{
	border-top: 1px solid var(--divider-color);
	margin-top: 25px;
	padding-top: 25px;
	transition: all 0.3s ease-in-out;
}

.feature-item:hover .features-btn{
	border-color: var(--dark-divider-color);
}

.feature-item:hover .features-btn .readmore-btn::before{
	filter: brightness(0) invert(1);
}

.feature-list{
	margin-top: 30px;
}

.feature-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.feature-list ul li{
	background: var(--white-color) url('../images/icon-sparkle-accent.svg') no-repeat;
	background-position: left 16px center;
	background-size: 20px auto;
	line-height: 1em;
	border-radius: 100px;
	padding: 13px 16px 13px 46px;
}

/************************************/
/*** 	  11. What We Do css	  ***/
/************************************/

.what-we-do{
	padding: 160px 0;
}

.what-we-do-image-box{
	position: relative;
}

.what-we-do-img figure{
	display: block;
	border-radius: 20px;
}

.what-we-do-img figure img{
	width: 100%;
	aspect-ratio: 1 / 1.13;
	object-fit: cover;
	border-radius: 20px;
}

.review-rating-box{
	position: absolute;
	right: 40px;
	bottom: 40px;
	left: 40px;
	width: 100%;
	max-width: 200px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	padding: 20px;
	z-index: 1;
}

.review-rating-box .review-image{
	margin-left: -12px;
}

.review-rating-box .review-image:first-child{
	margin-left: 0;
}

.review-rating-box .review-image img{
	max-width: 40px;
}

.review-rating-box .review-image.add-more{
	width: 42px;
	height: 42px;
}

.review-rating-star{
	display: flex;
	align-items: baseline;
	margin-bottom: 10px;
}

.review-rating-star i{
	color: var(--white-color);
	margin-right: 3px;
}

.review-rating-star span{
	width: 30px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--white-color);
}

.review-rating-content p{
	color: var(--white-color);
	font-weight: 600;
	margin-bottom: 0;
}

.what-we-do-content{
	margin-left: 15px;
}

.what-we-do-nav{
	margin-bottom: 40px;
}

.what-we-do-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 10px 0;
    padding: 0;
    margin: 0;
	border: none;
}

.what-we-do-nav ul li{
	width: 33.33%;
	border-bottom: 6px solid var(--divider-color);
}

.what-we-do-nav ul li .nav-link{
	position: relative;
	width: 100%;
    background: transparent;
	border: none;
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
	color: var(--primary-color);
    text-transform: capitalize;
	padding: 0 20px 20px;
    transition: all 0.3s ease-in-out;
}

.what-we-do-nav ul li .nav-link.active,
.what-we-do-nav ul li .nav-link:hover{
    background: transparent;
	color: var(--accent-color);
}

.what-we-do-nav ul li .nav-link::before{
	content: '';
    display: block;
    position: absolute;
    bottom: -5px;
    left: auto;
    right: 0;
    background: var(--accent-color);
    width: 0;
    height: 6px;
    transition: all 0.4s ease-in-out;
}

.what-we-do-nav ul li .nav-link.active:before,
.what-we-do-nav ul li .nav-link:hover:before{
	width: 100%;
    left: 0;
    right: auto;
}

.what-we-do-tab-header{
	margin-bottom: 40px;
}

.what-we-do-tab-header p{
	margin-bottom: 0;
}

.what-we-do-tab-body{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: var(--secondary-color);
	border-radius: 20px;
	overflow: hidden;
}

.what-we-do-tab-body::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(90deg, #000000 0%, #2a2929f2 50%, #000000 100%);
	width: 35%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.what-we-do-tab-body:hover::before{
	width: 100%;
}

.what-we-do-body-info{
	position: relative;
	text-align: center;
	width: 35%;
	border-right: 1px solid var(--dark-divider-color);
	padding: 30px;
	z-index: 1;
}

.what-we-do-body-info .icon-box{
	width: 60px;
	height: 60px;
	background: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin: 0 auto 30px;
}

.what-we-do-body-info .icon-box img{
	width: 100%;
	max-width: 30px;
}

.what-we-do-body-title h3{
	font-size: 20px;
	color: var(--white-color);
	line-height: 1.4em;
}

.what-we-do-body-content{
	position: relative;
	width: 65%;
	padding: 30px;
	z-index: 1;
}

.what-we-do-body-content p{
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.what-we-do-body-content ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-do-body-content ul li{
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 30px;
	transition: all 0.4s ease-in-out;
}

.what-we-do-body-content ul li:last-child{
	margin-bottom: 0;
}

.what-we-do-body-content ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
	font-weight: 900;
    left: 0;
    top: 0;
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.what-we-do-tab-body:hover .what-we-do-body-content p,
.what-we-do-tab-body:hover .what-we-do-body-content ul li,
.what-we-do-tab-body:hover .what-we-do-body-content ul li::before{
	color: var(--white-color);
}

.what-we-do-btn{
	margin-top: 40px;
}

/************************************/
/***   12. Language Examples css  ***/
/************************************/

.language-examples{
	background-image: url('../images/world-map-image.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center center;
	padding: 160px 0;
}

.language-examples-box{
	text-align: center;
}

.language-example-list ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px 50px;
	list-style: none;
	margin: 0 25px;
	padding: 0;
}

.language-example-list ul li{
	color: var(--primary-color);
	font-weight: 600;
	line-height: 1.4em;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 10px 25px 10px 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.language-example-list ul li:first-child{
	margin-left: 10px;
}

.language-example-list ul li img{
	max-width: 46px;
	border-radius: 50%;
}

.language-examples-box .section-footer-text{
	margin-top: 60px;
}

/************************************/
/*** 	  13. Our Pricing css	  ***/
/************************************/

.our-pricing{
	position: relative;
	padding: 160px 0 80px;
}

.our-pricing-swich{
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
	padding: 0;
}

.our-pricing-swich .form-check-label{
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

.our-pricing-swich.form-switch .form-check-input{
	width: 75px;
    height: 40px;
    --bs-form-check-bg: var(--accent-color);
	--bs-form-switch-bg: url('../images/pricing-swich-circle.svg');
	background-size: 28px auto;
	background-position: left 5px center;
	border-radius: 100px;
	border: none;
	outline: none;
	box-shadow: none;
	cursor: pointer;
    margin: 0;
	transition: all 0.3s ease-in-out;
}

.form-switch .form-check-input:checked{
	background-color: var(--accent-secondary-color);
	background-position: right 5px center;
}

.pricing-item{
	background: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-header h3{
	display: inline-block;
	font-size: 14px;
	color: var(--white-color);
	background: linear-gradient(90deg, #000000 0%, #2a2929f2 50%, #000000 100%);
	background-size: 200% auto;
	padding: 10px 20px;
	border-radius: 100px;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.pricing-item:hover .pricing-header h3{
	background-position: right center;
}

.pricing-header h2{
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.pricing-header h2 sub{
	font-size: 16px;
	font-weight: 400;
	bottom: 0;
}

.pricing-item-content{
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.pricing-item-content p:last-child{
	margin-bottom: 0;
}

.pricing-body,
.pricing-btn{
	margin-top: 40px;
}

.pricing-body h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.pricing-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-body ul li{
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 30px;
}

.pricing-body ul li:last-child{
	margin-bottom: 0;
}

.pricing-body ul li::before{
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.pricing-btn .btn-default{
	width: 100%;
	padding: 15px;
	text-align: center;
	margin: 0;
}

.pricing-btn .btn-default::before{
	display: none;
}

.pricing-item.highlighted-box{
	background: linear-gradient(90deg, #000000 0%, #2a2929f2 50%, #000000 100%);
	background-size: 200% auto;
	transition: all 0.4s ease-in-out;
}

.pricing-item.highlighted-box::before{
	content: 'Most Popular';
	position: absolute;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--accent-color);
	top: 8px;
	right: 10px;
	z-index: 2;
}

.pricing-item.highlighted-box:hover{
	background-position: right center;
}

.pricing-item.highlighted-box .pricing-header h3,
.pricing-item.highlighted-box .pricing-btn .btn-default{
	color: var(--accent-color);
	background: var(--white-color);
}

.pricing-item.highlighted-box .pricing-btn .btn-default:hover{
	background: var(--dark-divider-color);
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-header h2,
.pricing-item.highlighted-box .pricing-item-content p,
.pricing-item.highlighted-box .pricing-body h3,
.pricing-item.highlighted-box .pricing-body ul li,
.pricing-item.highlighted-box .pricing-body ul li::before{
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-item-content{
	border-color: var(--dark-divider-color);
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px 60px;
}

.pricing-benefit-list ul li{
	display: flex;
	align-items: center;
	color: var(--primary-color);
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***   14. Our Testimonials css	  ***/
/************************************/

.our-testimonials{
	    padding: 160px 0;
}

.testimonial-slider{
	margin-right: -150px;
	margin-top: 80px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	position: relative;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 80px 40px 40px;
	overflow: hidden;
}

.testimonial-item::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(110deg, #000000 0%, #4b4a4a 100%);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
}

.testimonial-item:hover::before{
	border-radius: 0;
	height: 100%;
}

.testimonial-quote,
.testimonial-item-content,
.testimonial-author{
	position: relative;
	z-index: 1;
}

.testimonial-quote img{
	width: 100%;
	max-width: 42px;
	transition: all 0.4s ease-in-out;
}

.testimonial-item:hover .testimonial-quote img{
	filter: brightness(0) invert(1);
}

.testimonial-item-content{
	margin-top: 20px;
}

.testimonial-item-content p{
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.testimonial-author{
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
	transition: all 0.4s ease-in-out;
}

.testimonial-item:hover .testimonial-author{
	border-color: var(--dark-divider-color);
}

.author-content h3{
	font-size: 18px;
	transition: all 0.4s ease-in-out;
}

.author-content p{
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.testimonial-item:hover .testimonial-item-content p,
.testimonial-item:hover .author-content h3,
.testimonial-item:hover .author-content p{
	color: var(--white-color);
}

.testimonial-image{
	margin-left: 15px;
}

.testimonial-image figure{
	display: block;
	border-radius: 20px;
}

.testimonial-image img{
	width: 100%;
	aspect-ratio: 1 / 1.474;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 	15. Our FAQs css	  ***/
/************************************/

.our-faqs{
	padding: 160px 0;
}

.faqs-content{
	position: sticky;
	top: 40px;
	margin-right: 20px;
}

.faq-accordion .accordion-item{
	position: relative;
	border-bottom: 1px solid var(--divider-color);
	border-radius: 0;
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4em;
	background: transparent;
	color: var(--primary-color);
	padding: 8px 50px 8px 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed){
	margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\2b';
	font-family: "FontAwesome";
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
	font-size: 18px;
	font-weight: 400;
    line-height: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(110deg, #000000 0%, #4b4a4a 100%);
	border-radius: 50%;
    color: var(--white-color);
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	transform: rotate(0deg);
}

.faq-accordion .accordion-item .accordion-body{
	background: transparent;
	border-top: 1px solid var(--divider-color);
	padding: 15px 0 0;
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-body p{
	margin: 0;
}

.company-slider-box{
	margin-top: 80px;
}

.company-supports-content{
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	gap: 30px;
	margin-bottom: 60px;
}

.company-supports-content hr{
	height: 1px;
	width: 34%;
	color: var(--divider-color);
	opacity: 1;
}

.company-supports-content h3{
	font-size: 16px;
}

.company-supports-logo{
	text-align: center;
}

.company-supports-logo img{
	width: 100%;
	height: 40px;
}

/************************************/
/*** 	 	16. Our Blog css	  ***/
/************************************/

.our-blog{
	padding: 160px 0 130px;
}

.post-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image{
	margin-bottom: 25px;
}

.post-featured-image a{
    cursor: none;	
    display: block;
	border-radius: 20px;
    overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.745;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

/************************************/
/*** 	 	17. Footer css		  ***/
/************************************/

.main-footer{
	padding: 100px 0 0;
	margin-bottom: 20px;
}

.footer-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-header .section-title{
	width: 70%;
	margin: 0;
}

.contact-us-circle a{
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
}

.contact-us-circle a img{
	width: 100%;
	max-width: 140px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	}

	to{
		transform: rotate(360deg);
	}
}

.contact-us-circle a:hover img{
	animation-play-state: paused;
}

.footer-logo{
	margin-bottom: 25px;
}

.footer-logo img{
	width: 100%;
	max-width: 75px;
}

.about-footer-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-links{
	margin-left: 20px;
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links h3 a{
	text-transform: none;
	display: inline-block;
	background:#fff;
	font-size: 18px;
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.footer-links h3 a:hover{
	background-position: right center;
}

.footer-links p{
	color: var(--white-color);
	margin-bottom: 10px;
}

.footer-links h3:last-child,
.footer-links p:last-child{
	margin: 0;
}

.footer-contact-item{
	margin-bottom: 30px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-social-links{
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.footer-social-links ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links .footer-social-links ul li{
	display: inline-block;
	background: transparent;
	padding: 0;
	margin: 0 10px 0 0;
}

.footer-links .footer-social-links ul li:last-child{
	margin: 0;
}

.footer-social-links ul li a{
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover{
	background: #262424;
}

.footer-social-links ul li a i{
    font-size: 18px;
    background: #fff;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-newsletter-form form{
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group{
	width: 100%;
	display: flex;
	background: var(--dark-divider-color);
	border-radius: 10px;
	padding: 8px;
}

.footer-newsletter-form .form-group .form-control{
	width: calc(100% - 44px);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 8px 12px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn{
	width: 44px;
	height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #000000 0%, #2a2929f2 50%, #000000 100%);
	background-size: 200% auto;
    border-radius: 6px;
    border: none;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover{
	background-position: right center;
}

.footer-newsletter-form .form-group .newsletter-btn img{
	width: 100%;
	max-width: 22px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img{
	transform: rotate(45deg);
}

.footer-copyright{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 40px 0;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-menu ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu ul li{
	display: inline-block;
	margin-right: 20px;
}

.footer-menu ul li:last-child{
	margin: 0;
}

.footer-menu ul li a{
	line-height: 1.6em;
	text-transform: capitalize;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover{
	color: var(--accent-color);
}

/************************************/
/*** 	 18. About Us Page css	  ***/
/************************************/

.page-header{
	position: relative;
	background: url('../images/page-header-bg.jpg') no-repeat center center;
	background-size: cover;
	padding: 150px 0;
	overflow: hidden;
}

.page-header:after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
	opacity: 55%;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.page-header-box{
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 78px;
	letter-spacing: -0.02em;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box h1 span{
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.page-header-box h1:hover span{
	background-position: right center;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	color: var(--white-color);
	line-height: normal;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a{
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	color: var(--white-color);
}

.our-benefits{
	padding: 160px 0;
}

.our-benefit-image{
	position: relative;
	margin-right: 15px;
}

.benefit-img figure{
	display: block;
	border-radius: 20px;
}

.benefit-img img{
	width: 100%;
	aspect-ratio: 1 / 1.3;
	object-fit: cover;
	border-radius: 20px;
}

.benefit-cta-box{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 215px;
	background: var(--secondary-color);
	border: 20px solid var(--secondary-color);
    border-right: none;
    border-bottom: none;
	border-radius: 20px 0 0 0;
	z-index: 1;
}

.benefit-cta-box:before,
.benefit-cta-box:after{
	content: '';
	position: absolute;
	width: 20px;
    height: 20px;
	mask: url('../images/benefit-image-corner-shape.svg');
	-webkit-mask: url('../images/benefit-image-corner-shape.svg');
	background-color: var(--secondary-color);
	mask-repeat: no-repeat;
	mask-size: cover;
}

.benefit-cta-box:before{
	top: -40px;
    right: 0px;
}

.benefit-cta-box::after{
	bottom: 0px;
	left: -40px;
}

.benefit-cta-content {
    background: linear-gradient(90deg, #000000 0%, #2a2929f2 50%, #000000 100%);
    background-size: 200% auto;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.benefit-cta-content:hover{
	background-position: right center;
}

.benefit-cta-box h2{
	color: var(--white-color);
	font-size: 36px;
	margin-bottom: 10px;
}

.benefit-cta-box p{
	color: var(--white-color);
	font-weight: 600;
	line-height: 1.4em;
	margin: 0;
}

.benefit-body-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.benefit-body-item .icon-box{
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	margin-right: 60px;
	transition: all 0.3s ease-in-out;
}

.benefit-body-item:hover .icon-box{
	background-position: right center;
}

.benefit-body-item .icon-box img{
	width: 100%;
	max-width: 30px;
}

.benefit-body-content{
	width: calc(100% - 120px);
	display: flex;
	align-items: center;
	gap: 30px 60px;
}

.benefit-body-content h3{
	width: calc(35% - 30px);
	font-size: 20px;
	text-transform: capitalize;
}

.benefit-body-content p{
	width: calc(65% - 30px);
	margin: 0;
}

.our-approach{
	padding: 160px 0;
}

.approach-image{
	position: relative;
	margin-right: 15px;
}

.approach-img figure{
	display: block;
	border-radius: 20px;
}

.approach-img img{
	width: 100%;
	aspect-ratio: 1 / 1.92;
	object-fit: cover;
	border-radius: 20px;
}

.approach-image .review-rating-box{
	max-width: calc(100% - 60px);
	right: 30px;
	bottom: 30px;
	left: 30px;
	align-items: center;
}

.approach-image .review-rating-star span{
	font-size: 12px;
	width: auto;
	display: inline-block;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	color: var(--white-color);
	padding: 3px 8px;
	border-radius: 100px;
}

.approach-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
}

.mission-vision-item{
	position: relative;
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
}

.mission-vision-item::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(110deg, #000000 0%, #4b4a4a 100%);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover::before{
	border-radius: 0 30px 0 0;
	height: 100%;
}

.mission-vision-item .icon-box{
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}

.mission-vision-item .icon-box img{
	width: 100%;
	max-width: 40px;
	transition: all 0.3s ease-in-out;
}

.mission-vision-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.mission-vision-content{
	position: relative;
	margin-bottom: 25px;
	z-index: 1;
}

.mission-vision-content h2{
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.mission-vision-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.mission-vision-btn a::before,
.mission-vision-btn a{
	transition: all 0.3s ease-in-out;
}

.mission-vision-item:hover .mission-vision-btn a::before{
	filter: brightness(0) invert(1);
}

.mission-vision-item:hover .mission-vision-btn a,
.mission-vision-item:hover .mission-vision-content h2,
.mission-vision-item:hover .mission-vision-content p{
	color: var(--white-color);
}

.our-empact{
	padding: 160px 0;
}

.our-impact-image{
	position: relative;
}

.impact-image figure{
	display: block;
	border-radius: 20px;
}

.impact-image img{
	width: 100%;
	aspect-ratio: 1 / 1.38;
	object-fit: cover;
	border-radius: 20px;
}

.impact-image-list{
	position: absolute;
	right: 40px;
	bottom: 40px;
	left: 40px;
	z-index: 1;
}

.impact-image-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.impact-image-list ul li{
	color: var(--white-color);
	line-height: 1.5em;
	border: 1px solid var(--dark-divider-color);
	background-color: var(--dark-divider-color);
	border-radius: 5px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 7px 20px;
	transition: all 0.4s ease-in-out;
}

.impact-image-list ul li:hover{
	background-color: var(--white-color);
	color: var(--primary-color);
}

.impact-content{
	margin-left: 15px;
}

.impact-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.impact-body-item{
	position: relative;
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
}

.impact-body-item::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(110deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
}

.impact-body-item:hover::before{
	border-radius: 0 30px 0 0;
	height: 100%;
}

.impact-body-item h2,
.impact-body-item h3,
.impact-body-item p{
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.impact-body-item h2{
	color: var(--accent-color);
	font-size: 56px;
	font-weight: 600;
	margin-bottom: 65px;
}

.impact-body-item h3{
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.impact-body-item p{
	margin: 0;
}

.impact-body-item:hover h2,
.impact-body-item:hover h3,
.impact-body-item:hover p{
	color: var(--white-color);
}

.our-team{
	padding: 160px 0 130px;
}

.team-item{
    text-align: center;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-item.box-bg-shape::after{
	background-color: var(--secondary-color);
}

.team-image{
	background-color: var(--white-color);
	border-radius: 20px;
	text-align: center;
	padding: 40px 40px 0;
	margin-bottom: 20px;
}

.team-image a{
    display: block;
    cursor: none;
}

.team-image figure{
    display: block;
}

.team-image img{
    width: 100%;
	max-width: 222px;
}

.team-content h3{
    font-size: 20px;
    line-height: 1.4em;
	margin-bottom: 2px;
}

.team-content h3 a{
    color: inherit;
}

.team-content p{
	margin: 0;
}

.team-social-icon{
	position: absolute;
	top: 4px;
	right: 15px;
	z-index: 2;
}

.team-social-icon ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-social-icon ul li{
	display: inline-block;
	margin-right: 12px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a i{
	font-size: 18px;
    line-height: normal;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover i{
	background-position: right center;
}

.our-testimonials.about-our-testimonials{
	padding: 160px 0;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services{
	padding: 160px 0 130px;
}

.page-services .service-item{
	background-color: var(--secondary-color);
}

.page-services .service-item.box-bg-shape::after{
	background-color: var(--white-color);
}

/************************************/
/*** 	20. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 160px 0;
}

.page-single-sidebar{
    position: sticky;
    top: 40px;
	margin-right: 20px;
}

.page-category-list{
	background: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
	padding: 30px;
}

.page-category-list h3{
    font-size: 20px;
    text-transform: capitalize;
	margin-bottom: 30px;
}

.page-category-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.page-category-list ul li{
    margin-bottom: 20px;
}

.page-category-list ul li:last-child{
    margin: 0;
}

.page-category-list ul li a{
	position: relative;
    display: block;
	font-weight: 500;
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 18px 50px 18px 20px;
	overflow: hidden;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-category-list ul li:hover a{
    color: var(--white-color);
}

.page-category-list ul li a::before{
    content: '';
    position: absolute;
    background: url('../images/arrow-text.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
	transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li:hover a::before{
	transform: translateY(-50%) rotate(45deg);
	filter: brightness(0) invert(1);
}

.page-category-list ul li a::after{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-category-list ul li:hover a::after{
	top: 0;
	height: 100%;
}

.sidebar-cta-box{
	position: relative;
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.sidebar-cta-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 50%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sidebar-cta-box .satisfy-client-box,
.sidebar-cta-contact{
	position: relative;
	z-index: 1;
}

.satisfy-client-box{
	margin: 0 0 30px;
}

.satisfy-client-box .review-images{
	margin-bottom: 20px;
}

.satisfy-client-box .review-image img{
	width: 40px;
    height: 40px;
}

.sidebar-cta-box .satisfy-client-box .satisfy-client-content p{
	margin: 0;
	color: var(--white-color);
}

.sidebar-cta-contact{
	background-color: var(--divider-color);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 10px;
	overflow: hidden;
}

.sidebar-cta-contact h3{
	font-size: 20px;
	color: var(--white-color);
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	padding: 20px;
}

.sidebar-cta-contact ul{
	list-style: none;
	margin: 0;
	padding: 20px;
}

.sidebar-cta-contact ul li{
	display: flex;
	align-items: center;
	line-height: 1.5em;
	margin-bottom: 20px;
}

.sidebar-cta-contact ul li:last-child{
	margin-bottom: 0;
}

.sidebar-cta-contact ul li img{
	width: 100%;
	max-width: 20px;
	margin-right: 20px;
}

.sidebar-cta-contact ul li a{
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact ul li a:hover{
	color: var(--accent-color);
}

.page-single-image{
    margin-bottom: 40px;
}

.page-single-image figure{
    display: block;
    border-radius: 20px;
}

.page-single-image img{
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
    border-radius: 20px;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry h2{
    font-size: 46px;
	letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.service-entry h2 span{
    font-weight: 600;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.service-entry h2:hover span{
	background-position: right center;
}

.service-entry ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-entry ul li{
	display: inline-block;
    line-height: 1.25em;
    border: 1px solid var(--divider-color);
    background: url('../images/icon-sparkle-accent.svg') no-repeat;
    background-position: left 16px center;
    background-size: 20px auto;
    border-radius: 100px;
    padding: 10px 16px 10px 45px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-solution-box,
.service-result-box,
.service-tools-box{
	margin-top: 60px;
}

.service-solution-list{
	margin-top: 40px;
}

.service-solution-item{
	display: flex;
	margin-bottom: 40px;
}

.service-solution-item:last-child{
	margin-bottom: 0;
}

.service-solution-item .icon-box{
	width: 60px;
	height: 60px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 30px;
	transition: all 0.4s ease-in-out;
}

.service-solution-item:hover .icon-box{
	background-position: right center;
}

.service-solution-item .icon-box img{
	width: 100%;
	max-width: 30px;
}

.service-solution-item-content{
	width: calc(100% - 90px);
}

.service-solution-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.service-solution-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.solution-counter-box{
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
}

.solution-counter-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 30px;
}

.solution-counter-no h2{
	margin-bottom: 0;
}

.solution-counter-no h2 span{
	-webkit-text-fill-color: var(--primary-color);
}

.solution-counter-header .icon-box{
	width: 80px;
	height: 80px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.solution-counter-box:hover .solution-counter-header .icon-box{
	background-position: right center;
}

.solution-counter-header .icon-box img{
	width: 100%;
	max-width: 40px;
}

.service-result-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.service-result-image,
.service-result-content{
	width: calc(50% - 15px);
}

.service-result-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.service-result-image img{
	width: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	border-radius: 20px;
}

.service-result-item{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-top: 40px;
	padding: 30px;
}

.service-result-item .icon-box{
	width: 60px;
	height: 60px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.service-result-item:hover .icon-box{
	background-position: right center;
}

.service-result-item .icon-box img{
	width: 100%;
	max-width: 30px;
}

.service-result-item-content{
	width: calc(100% - 80px);
}

.service-result-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.service-tool-content-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-tool-content{
	width: calc(62% - 15px);
}

.service-tool-counter-info{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 70px;
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.service-tool-counter{
	position: relative;
	width: calc(37% - 35px);
	text-align: center;
}

.service-tool-counter::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -35px;
	width: 1px;
	height: 80%;
	transform: translateY(-50%);
	background: var(--divider-color);
}

.service-tool-counter h2{
	font-size: 92px;
	margin-bottom: 10px;
}

.service-tool-info{
	width: calc(63% - 35px);
}

.service-tool-image{
	width: calc(38% - 15px);
}

.service-tool-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.service-tool-image img{
	width: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 160px 0;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/*** 	 22. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 160px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 20px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 600;
	line-height: 1.2em;
	margin: 0 0 0.44em;
}

.post-entry h1{
	font-size: 78px;
	letter-spacing: -0.02em;
}

.post-entry h2{
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
    border: 1px solid var(--dark-divider-color);
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    color: var(--white-color);
	border-radius: 100px;
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background-position: right center;
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    color: var(--white-color);
	border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
    background-position: right center;
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	 23. Projects Page css	  ***/
/************************************/

.page-projects{
	padding: 160px 0 130px;
}

/************************************/
/*** 	24. Projects Single css	  ***/
/************************************/

.page-project-single{
	padding: 160px 0;
}

.project-category-list{
    background: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
}

.project-category-list h3{
	font-size: 20px;
	border-bottom: 1px solid var(--divider-color);
	padding: 30px;
}

.project-category-list ul{
	list-style: none;
	margin: 0;
	padding: 30px;
}

.project-category-list ul li{
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-weight: 600;
	line-height: 1.5em;
    color: var(--text-color);
    text-transform: capitalize;
    background-color: var(--white-color);
    border-radius: 10px;
	margin-bottom: 20px;
    padding: 18px 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-category-list ul li:last-child{
	margin-bottom: 0;
}

.project-category-list ul li:hover{
	color: var(--white-color);
}

.project-category-list ul li::before{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.project-category-list ul li:hover::before{
	top: 0;
	height: 100%;
}

.project-category-list ul li span{
	font-weight: 400;
	width: 54%;
}

.project-entry{
    margin-bottom: 60px;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0;
}

.project-entry h2{
    font-size: 46px;
	letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.project-entry h2 span{
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.project-entry h2:hover span{
	background-position: right center;
}

.project-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.project-entry ul li{
	position: relative;
	line-height: 1.5em;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child{
	margin-bottom: 0;
}

.project-entry ul li::before{
	content: '\f058';
    font-family: 'FontAwesome';
	position: absolute;
    font-size: 18px;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.project-solution-box,
.project-performance-box,
.project-experience-box{
	margin-top: 60px;
}

.project-solution-image-content{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.project-solution-image,
.project-solution-content{
	width: calc(50% - 15px);
}

.project-solution-image figure{
	display: block;
	border-radius: 20px;
	height: 100%;
}

.project-solution-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 20px;
}

.project-solution-content{
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.project-solution-content ul{
	margin-top: 30px;
}

.performance-step-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
	margin-top: 40px;
}

.performance-step-item{
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
}

.performance-step-no,
.performance-step-content{
	margin-bottom: 40px;
}

.performance-step-no h3{
	font-size: 16px;
	color: var(--white-color);
	display: inline-block;
	line-height: 1.25em;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	padding: 8px 20px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.performance-step-item:hover .performance-step-no h3{
	background-position: right center;
}

.performance-step-content h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.performance-step-item .icon-box img{
	width: 100%;
	max-width: 60px;
}

.performance-step-item.highlighted-box{
	width: 100%;
	border-color: var(--dark-divider-color);
	background: var(--secondary-color);
}

.project-experience-list{
	margin: 40px 0;
}

.project-experience-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.project-experience-list ul li{
	width: calc(50% - 15px);
	margin-bottom: 0;
}

/************************************/
/*** 	  25. Team Page css 	  ***/
/************************************/

.page-team{
	padding: 160px 0 130px;
}

.page-team .team-item.box-bg-shape::after{
	background-color: var(--white-color);
}

.page-team .team-image{
	background-color: var(--secondary-color);
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single{
	padding: 160px 0;
}

.team-single-image{
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
    text-align: center;
    padding: 30px 30px 0;
	margin-bottom: 60px;
}

.team-single-image figure{
    display: block;
}

.team-single-image img{
    width: 100%;
    max-width: 280px;
}

.team-member-info,
.team-member-skills,
.team-member-experience{
	margin-bottom: 60px;
}

.team-member-info-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-member-info-list ul li{
	display: flex;
	align-items: center;
	line-height: 1.5em;
	margin-bottom: 25px;
}

.team-member-info-list ul li:last-child{
	margin-bottom: 0;
}

.team-member-info-list ul li img{
	width: 100%;
	max-width: 30px;
	margin-right: 20px;
}

.team-member-info-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.member-info-counter-item{
	width: calc(25% - 45px);
}

.member-info-counter-item h2{
	font-size: 46px;
	margin-bottom: 10px;
}

.member-info-counter-item p{
	margin-bottom: 0;
}

.member-skills-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.skills-progress-bar{
    width: calc(50% - 15px);
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 14px;
	background: var(--secondary-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 100px;
}

.member-experience-item{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.member-experience-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.member-experience-year{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.member-experience-year .icon-box{
	margin-right: 20px;
}

.member-experience-year .icon-box i{
	font-size: 20px;
}

.member-experience-no p{
	margin-bottom: 0;
}

.member-experience-content h3{
	font-size: 18px;
	text-transform: capitalize;
	font-weight: 600;
}

.member-experience-btn a{
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.member-experience-btn a:hover{
	background-position: right center;
}

.member-experience-btn a img{
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.member-experience-btn a:hover img{
	transform: rotate(45deg);
}

/************************************/
/***   	 27. Pricing Page css     ***/
/************************************/

.page-pricing{
	padding: 160px 0;
}

/************************************/
/***   28. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	padding: 160px 0 130px;
}

.page-testimonials .testimonial-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/*** 	 29. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 160px 0 130px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 30. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 160px 0 130px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: linear-gradient(136.83deg, var(--accent-color) 2.01%, var(--accent-secondary-color) 97.82%);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  31. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 160px 0;
}

.page-faqs .page-faq-accordion{
    margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child{
	margin-bottom: 0;
}

/************************************/
/*** 	32. Contact Us Page css	  ***/
/************************************/

.page-contact-us{
	padding: 160px 0;
}

.contact-us-form label{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.contact-us-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--secondary-color);
	border: none;
	border-radius: 16px;
	padding: 18px 20px;
	box-shadow: none;
	outline: none;
}

.contact-us-form .form-control::placeholder{
	color: var(--text-color);
	opacity: 20%;
}

.contact-info-box{
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    padding: 40px;
	margin-left: 15px;
}

.contact-info-title{
	margin-bottom: 40px;
}

.contact-info-title h3{
	font-size: 20px;
    color: var(--white-color);
	line-height: 1.4em;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.contact-info-title p{
	color: var(--white-color);
	margin: 0;
}

.contact-info-item{
	position: relative;
	display: flex;
	align-items: center;
	background: var(--dark-divider-color);
	border-radius: 20px;
	padding: 25px 30px;
	margin-bottom: 30px;
	overflow: hidden;
}

.contact-info-item:last-child{
	margin-bottom: 0;
}

.contact-info-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white-color);
	border-radius: 50%;
	margin-right: 25px;
	transition: all 0.3s ease-in-out;
}

.contact-info-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box:before{
	transform: scale(1);
}

.contact-info-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.contact-info-content{
	width: calc(100% - 75px);
}

.contact-info-content h3{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 5px;
}

.contact-info-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.contact-info-content p a{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-info-content p a:hover{
    color: var(--primary-color);
}

.contact-social-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px 10px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.contact-social-list h3{
	font-size: 20px;
	color: var(--white-color);
}

.contact-social-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-social-list ul li{
	display: inline-block;
	margin-right: 10px;
}

.contact-social-list ul li:last-child{
	margin-right: 0;
}

.contact-social-list ul li a{
	border: 1px solid var(--white-color);
	color: var(--white-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.contact-social-list ul li a:hover{
	background: var(--white-color);
	color: var(--accent-color);
}

.contact-social-list ul li a i{
	font-size: 18px;
	color: inherit
}

.google-map-iframe{
	margin-top: 160px;
}

.google-map-iframe,
.google-map-iframe iframe{
	width: 100%;
	height: 600px;
	border-radius: 20px;
}

.google-map-iframe iframe{
	filter: grayscale(100%);
	transition: all 0.3s ease-in-out;
}

.google-map-iframe:hover iframe{
	filter: grayscale(0%);
}

/************************************/
/*** 	 33. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 160px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 45%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1800px){

	.bg-section{
		width: calc(100% - 30px);
		margin: 0 15px;
	}

	.main-footer{
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 1500px){
	.our-projects .container-fluid{
		padding: 0 15px;
	}
}

@media only screen and (max-width: 1024px){
		
	.navbar{
		padding: 20px 15px;
	}

	.main-menu .nav-menu-wrapper{
		margin: 0 10px;
	}

	.main-menu ul li{
		margin: 0;
	}

	.why-choose-image-2{
		margin-top: -35px;
	}
}

@media only screen and (max-width: 991px){

	header.main-header{
		position: initial;
		width: 100%;
		border-radius: 0;
		margin: 0px;
	}

    header.main-header .container-fluid{
        padding: 0 15px;
    }

	.navbar{
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.bg-section{
		width: 100%;
		border-radius: 0px;
		margin: 0;
	}

	.btn-default{
		padding: 12px 20px;
		margin-right: 34px;
	}

	.btn-default::before{
		width: 44px;
		height: 44px;
		right: -34px;
	}

	.btn-default.btn-highlighted{
		padding: 11px 20px;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title.section-title-center{
		max-width: 100%;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 15px;
	}

	.section-title h1{
		font-size: 54px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-content-btn .section-btn{
		margin-top: 15px;
	}

	.hero{
        border-radius: 20px;
		max-width: calc(100% - 30px);
		margin: 20px 15px 0 15px;
		padding: 100px 0;
	}

	.hero::after{
		width: 230px;
    	height: 84px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 100px 0;
	}

	.hero-btn{
		margin-top: 0;
	}

	.about-us{
	    padding: 80px 0;
	}

	.about-us-info .section-title{
		margin-bottom: 0;
	}

	.year-experience-circle{
		display: none;
	}

	.about-item-list{
		margin-top: 30px;
	}

	.about-box-1{
		width: 100%;
	    padding: 30px;
	}

	.about-item-content p{
	    margin: 15px 0 0;
	}

	.about-box-body,
	.about-body-content .btn-default{
	    margin-top: 20px;
	}

	.about-body-image{
	    margin-right: -35px;
	    margin-bottom: -90px;
	}

	.about-body-image img{
	    max-width: 150px;
	}

	.about-box-2,
	.about-box-3{
		width: calc(50% - 15px);
		padding: 30px;
	}

	.about-box-2 .about-item-content{
	    margin-top: 30px;
	}

	.about-box-3.box-bg-shape::after{
		width: 169px;
    	height: 50px;
	}

	.about-us-flags .review-image img{
		max-width: 28px;
	}

	.about-us-counter{
	    margin-bottom: 40px;
	}

	.about-us-counter h2{
	    font-size: 42px;
	}

	.our-services{
		padding: 80px 0;
	}

	.service-item{
		padding: 25px;
	}

	.service-item .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 40px;
	}

	.service-item .icon-box img{
		max-width: 26px;
	}

	.service-item-content p{
		margin-top: 10px;
	}

	.service-readmore-btn{
		margin-top: 15px;
		padding-top: 15px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.why-choose-us{
		padding: 80px 0;
	}

	.why-choose-image-box{
		max-width: 65%;
		margin: 0 auto 30px;
	}

	.why-choose-image-1 .why-choose-img img{
	    aspect-ratio: 1 / 1.05;
	}

	.why-choose-image-2{
	    margin-top: -185px;
	}

	.year-experience-box{
	    max-width: 140px;
	    padding: 25px 15px;
	}

	.year-experience-box h2{
	    font-size: 30px;
	    margin-bottom: 5px;
	}
	
	.why-choose-image-2 .why-choose-img{
	    width: calc(100% - 150px);
	}

	.why-choose-content{
		margin: 0;
	}

	.why-choose-body{
	    padding: 30px;
	}

	.why-choose-body-content p{
		margin-top: 10px;
	}

	.why-choose-list{
		margin-top: 30px;
	}

	.why-choose-list ul li{
		padding-left: 25px;
	}

	.why-choose-list ul li::before{
		font-size: 16px;
	}

	.how-it-work{
	    padding: 80px 0;
	}

	.work-step-item .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 50px;
	}

	.work-step-item .icon-box img{
		max-width: 26px;
	}

	.work-step-content p{
		margin-top: 10px;
	}

	.our-projects{
		padding: 80px 0;
	}

	.project-btn a{
		width: 50px;
    	height: 50px;
	}

	.project-image{
		margin-bottom: 20px;
	}

	.project-btn a img{
		max-width: 22px;
	}

	.project-content h2{
		margin-top: 10px;
	}

	.section-footer-text ul{
		margin-top: 10px;
	}

	.our-features{
		padding: 80px 0;
	}

	.feature-item .icon-box{
		margin-bottom: 20px;
	}

	.features-item-content p{
		margin-top: 15px;
	}

	.features-item-content ul{
		margin-top: 30px;
	}

	.features-btn{
		margin-top: 20px;
		padding-top: 20px;
	}

	.feature-list{
		margin-top: 10px;
	}

	.feature-list ul{
		gap: 20px;
	}

	.feature-list ul li{
		font-size: 14px;
		background-position: left 12px center;
		background-size: 16px auto;
		padding: 10px 12px 10px 36px;
	}

	.our-features .section-footer-text{
		margin-top: 20px;
	}

	.what-we-do{
		padding: 80px 0;
	}

	.what-we-do-image-box{
		margin-bottom: 30px;
	}

	.what-we-do-img figure img{
		aspect-ratio: 1 / 0.65;
	}

	.review-rating-box{
		right: 30px;
		bottom: 30px;
		left: 30px;
	}

	.what-we-do-content{
		margin: 0;
	}

	.what-we-do-nav{
		margin-bottom: 30px;
	}

	.what-we-do-nav ul li .nav-link{
		padding: 0 10px 15px;
	}

	.what-we-do-tab-header{
		margin-bottom: 30px;
	}

	.what-we-do-tab-body::before{
		width: 30%;
	}

	.what-we-do-body-info{
		width: 30%;
		padding: 20px;
	}

	.what-we-do-body-info .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 20px;
	}

	.what-we-do-body-info .icon-box img{
		max-width: 26px;
	}

	.what-we-do-body-content{
		width: 70%;
		padding: 20px;
	}

	.what-we-do-body-content p{
		margin-bottom: 20px;
	}

	.what-we-do-body-content ul li{
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.what-we-do-body-content ul li::before{
		font-size: 16px;
	}

	.what-we-do-btn{
		margin-top: 30px;
	}

	.language-examples{
		padding: 80px 0;
	}

	.language-example-list ul{
		gap: 20px 6px;
		margin: 0;
	}

	.language-example-list ul li{
        font-size: 14px;
		gap: 5px;
        padding: 6px 12px 6px 6px;
    }

	.language-example-list ul li:first-child{
	    margin-left: 2px;
	}

	.language-example-list ul li img{
		max-width: 34px;
	}

	.language-examples-box .section-footer-text{
		margin-top: 40px;
	}

	.our-pricing{
		padding: 80px 0 40px;
	}

	.our-pricing-swich{
		margin-bottom: 30px;
		gap: 20px;
	}

	.our-pricing-swich.form-switch .form-check-input{
		width: 60px;
		height: 32px;
		background-size: 22px auto;
	}

	.pricing-item{
		padding: 30px;
	}

	.pricing-header h3{
		padding: 8px 16px;
		margin-bottom: 20px;
	}

	.pricing-header h2{
		font-size: 30px;
	}

	.pricing-item-content{
		margin-top: 20px;
		padding-top: 20px;
	}

	.pricing-body,
	.pricing-btn{
		margin-top: 30px;
	}

	.pricing-body h3{
		margin-bottom: 15px;
	}

	.pricing-body ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.pricing-body ul li::before{
		font-size: 16px;
	}

	.pricing-btn .btn-default{
		padding: 12px;
	}

	.pricing-benefit-list{
        margin-top: 5px;
    }

	.pricing-benefit-list ul{
		gap: 15px 30px;
	}

	.pricing-benefit-list ul li img{
		max-width: 18px;
		margin-right: 10px;
	}

	.our-testimonials{
		padding: 40px 0 80px;
	}

	.testimonials-content{
		margin-bottom: 30px;
	}

	.testimonial-slider{
		margin-right: 0;
		margin-top: 30px;
	}

	.testimonial-item{
		padding: 50px 30px 30px;
	}
	
	.testimonial-item-content{
		margin-top: 15px;
	}

	.testimonial-item-content p{
		font-size: 18px;
	}

	.testimonial-author{
		margin-top: 30px;
		padding-top: 30px;
	}

	.testimonial-image{
		margin-left: 0;
	}

	.testimonial-image img{
		aspect-ratio: 1 / 0.6;
	}

	.our-faqs{
		padding: 80px 0;
	}

	.faqs-content{
		position: initial;
		margin: 0 0 30px;
	}

	.faq-accordion .accordion-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 3px 40px 3px 0;
	}

	.faq-accordion .accordion-item .accordion-button:not(.collapsed){
		margin-bottom: 10px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		width: 30px;
    	height: 30px;
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding-top: 10px;
	}

	.company-slider-box{
		margin-top: 40px;
	}

	.company-supports-content{
		margin-bottom: 30px;	
	}

	.company-supports-content hr{
		width: 22%;
	}

	.our-blog{
		padding: 80px 0 50px;
	}

	.post-featured-image{
		margin-bottom: 15px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.footer-header{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-header .section-title{
		width: calc(100% - 130px);
	}

	.contact-us-circle a img{
        max-width: 110px;
    }

	.about-footer,
	.footer-links{
		margin: 0 0 40px;
	}

	.footer-logo{
		margin-bottom: 15px;
	}

	.footer-links h3,
	.footer-contact-item{
		margin-bottom: 20px;
	}

	.footer-links p{
		margin-bottom: 5px;
	}

	.footer-social-links{
		margin-top: 20px;
		padding-top: 20px;
	}

	.footer-newsletter-form form{
		margin-bottom: 20px;
	}

	.footer-newsletter-form .form-group{
		padding: 6px;
	}
	
	.footer-newsletter-form .form-group .form-control{
		width: calc(100% - 40px);
	}

	.footer-newsletter-form .form-group .newsletter-btn{
		width: 40px;
		height: 40px;
	}

	.footer-copyright{
		margin-top: 0px;
		padding: 30px 0;
	}

	.footer-copyright-text p,
	.footer-menu ul li a{
		font-size: 14px;
	}

	.footer-menu ul li{
		margin-right: 20px;
	}

	.page-header{
		padding: 80px 0;
		border-radius: 0;
	}

	.page-header-box h1{
		font-size: 54px;
	}

	.our-benefits{
		padding: 80px 0;
	}

	.our-benefit-image{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.benefit-img img{
		aspect-ratio: 1 / 0.8;
	}

	.benefit-cta-box{
		max-width: 190px;
	}

	.benefit-cta-content{
		padding: 20px;
	}

	.benefit-cta-content h2{
		font-size: 30px;
	}

	.benefit-body-item{
		margin-top: 30px;
		padding-top: 30px;
	}

	.benefit-body-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.benefit-body-item .icon-box img{
		max-width: 26px;
	}

	.benefit-body-content{
		width: calc(100% - 65px);
		gap: 30px;
	}

	.benefit-body-content h3{
		font-size: 18px;
		width: calc(35% - 15px);
	}

	.benefit-body-content p{
		width: calc(65% - 15px);
	}

	.our-approach{
		padding: 80px 0;
	}

	.approach-image{
		margin: 0 0 30px;
	}

	.approach-img img{
		aspect-ratio: 1 / 0.7;
	}

	.approach-image .review-rating-box{
		max-width: calc(100% - 40px);
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.approach-body{
		margin-top: 30px;
	}

	.mission-vision-item{
		padding: 30px;
	}

	.mission-vision-item .icon-box{
		margin-bottom: 30px;
	}

	.mission-vision-content{
		margin-bottom: 15px;
	}

	.mission-vision-content h2{
		margin-bottom: 10px;
	}

	.our-empact{
		padding: 80px 0;
	}

	.our-impact-image{
		margin-bottom: 30px;
	}

	.impact-image img{
		aspect-ratio: 1 / 0.7;
	}

	.impact-image-list{
		right: 30px;
		bottom: 30px;
		left: 30px;
	}

	.impact-image-list ul{
		gap: 15px;
	}

	.impact-content{
		margin-left: 0px;
	}

	.impact-body{
		margin-bottom: 30px;
	}

	.impact-body-item{
		padding: 30px;
	}

	.impact-body-item h2{
		font-size: 46px;
		margin-bottom: 45px;
	}

	.impact-body-item h3{
		margin-bottom: 10px;
	}

	.our-team{
		padding: 80px 0 50px;
	}

	.team-image{
		padding: 30px 30px 0;
		margin-bottom: 15px;
	}

	.our-testimonials.about-our-testimonials{
		padding: 80px 0;
	}

	.page-services{
		padding: 80px 0 50px;
	}

	.page-service-single{
		padding: 80px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin: 0 0 30px;
	}

	.page-category-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.page-category-list h3{
		margin-bottom: 20px;
	}

	.page-category-list ul li a{
		padding: 10px 35px 10px 15px;
	}

	.page-category-list ul li a::before{
		right: 15px;
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-box{
		padding: 20px;
	}

	.satisfy-client-box{
		margin: 0 0 20px;
	}

	.sidebar-cta-contact h3,
	.sidebar-cta-contact ul{
		padding: 15px;
	}

	.page-single-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul li{
		background-position: left 12px center;
		background-size: 18px auto;
		padding: 8px 12px 8px 36px;
		margin-bottom: 10px;
	}

	.service-solution-box,
	.service-result-box,
	.service-tools-box{
		margin-top: 40px;
	}

	.service-solution-list{
		margin-top: 30px;
	}

	.service-solution-item{
		margin-bottom: 30px;
	}

	.service-solution-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.service-solution-item .icon-box img{
		max-width: 24px;
	}

	.service-solution-item-content{
		width: calc(100% - 65px);
	}

	.service-solution-counters{
		margin-top: 30px;
	}

	.solution-counter-box{
		padding: 20px;
	}

	.solution-counter-no h2{
		margin-bottom: 0;
	}

	.solution-counter-header .icon-box{
		width: 60px;
		height: 60px;
	}

	.solution-counter-header .icon-box img{
		max-width: 30px;
	}

	.service-tool-counter h2{
		font-size: 62px;
	}

	.service-result-item{
		padding: 20px;
		margin-top: 30px;
	}

	.service-result-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.service-result-item .icon-box img{
		max-width: 24px;
	}

	.service-result-item-content{
		width: calc(100% - 65px);
	}

	.service-tool-content-box{
		margin-top: 30px;
	}

	.service-tool-counter-info{
		gap: 30px;
		margin-top: 20px;
		padding-top: 20px;
	}

	.service-tool-counter{
		width: calc(33% - 15px);
	}

	.service-tool-counter::before{
		right: -15px;
	}

	.service-tool-info{
		width: calc(67% - 15px);
	}

	.page-blog{
		padding: 80px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 80px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.42em;
    }
    
    .post-entry h2{
        font-size: 36px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-projects{
		padding: 80px 0 50px;
	}

	.page-project-single{
		padding: 80px 0;
	}

	.project-category-list{
		margin-bottom: 30px;
	}

	.project-category-list h3,
	.project-category-list ul{
		padding: 20px;
	}

	.project-category-list ul li{
		padding: 12px 15px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.project-entry ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.project-entry ul li::before{
		font-size: 16px;
	}

	.project-entry{
		margin-bottom: 40px;
	}

	.project-solution-box,
	.project-performance-box,
	.project-experience-box{
		margin-top: 40px;
	}

	.project-solution-image-content{
		margin-top: 30px;
	}

	.project-solution-content{
		padding: 20px;
	}

	.project-solution-content ul{
		margin-top: 20px;
	}

	.performance-step-list{
		gap: 30px;
		margin-top: 30px;
	}

	.performance-step-item{
		padding: 20px;
	}

	.performance-step-no,
	.performance-step-content{
		margin-bottom: 30px;
	}

	.performance-step-no h3{
		padding: 6px 15px;
	}

	.performance-step-content h3{
		margin-bottom: 15px;
	}

	.performance-step-item .icon-box img{
		max-width: 50px;
	}

	.project-experience-list{
		margin: 30px 0;
	}

	.project-experience-list ul{
		gap: 10px 20px;
	}

	.project-experience-list ul li{
		width: calc(50% - 10px);
		margin-bottom: 0;
	}

	.page-team{
		padding: 80px 0 50px;
	}

	.page-team-single{
		padding: 80px 0;
	}

	.team-single-image{
		margin-bottom: 30px;
	}

	.team-member-info,
	.team-member-skills,
	.team-member-experience{
		margin-bottom: 40px;
	}

	.team-member-info-list ul li{
		margin-bottom: 15px;
	}

	.team-member-info-list ul li img{
		max-width: 24px;
		margin-right: 15px;
	}

	.team-member-info-counters{
		gap: 20px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.member-info-counter-item{
		width: calc(25% - 15px);
	}

	.member-info-counter-item h2{
		font-size: 36px;
	}

	.member-experience-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.member-experience-year{
		margin-bottom: 10px;
	}

	.member-experience-btn a{
		height: 50px;
		width: 50px;
	}

	.member-experience-btn a img{
		max-width: 24px;
	}

	.page-pricing{
		padding: 80px 0;
	}

	.page-testimonials{
		padding: 80px 0 50px;
	}

	.page-gallery{
		padding: 80px 0 50px;
	}

	.page-video-gallery{
		padding: 80px 0 50px;
	}

	.page-faqs{
		padding: 80px 0;
	}

	.page-faqs .page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 80px 0;
	}

	.contact-us-content{
		margin-bottom: 30px;
	}

	.contact-us-form label{
		margin-bottom: 10px;
	}

	.contact-us-form .form-control{
		padding: 14px 15px;
		border-radius: 12px;
	}

	.contact-info-box{
		margin-left: 0;
		padding: 30px;
	}

	.contact-info-title{
		margin-bottom: 30px;
	}

	.contact-info-title h3{
		margin-bottom: 10px;
	}

	.contact-info-item{
		padding: 20px 25px;
		margin-bottom: 20px;
	}

	.contact-info-item .icon-box{
		margin-right: 15px;
	}

	.contact-info-content{
		width: calc(100% - 65px);
	}

	.contact-social-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.google-map-iframe{
		margin-top: 80px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 500px;
	}

	.error-page{
		padding: 80px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.section-title p{
        margin-top: 10px;
    }

	.section-title-content{
        margin-top: 10px;
	}

	.hero::after{
	    width: 190px;
	    height: 68px;
	}

	.hero-btn{
		gap: 15px;
	}

	.video-play-button{
		gap: 5px;
	}

	.video-play-button a{
	    height: 45px;
	    width: 45px;
	}

	.video-play-button a i,
	.video-play-button h3{
	    font-size: 16px;
	}

	.about-item-list{
		gap: 20px;
	}

	.about-box-1{
		padding: 20px;
	}

	.about-item-content h3{
		font-size: 18px;
	}

	.about-item-content p{
		margin-top: 10px;
	}

	.about-body-content ul li{
		font-size: 14px;
	}

	.about-box-body{
		gap: 10px;
	}

	.about-body-content{
	    width: calc(100% - 70px);
	}

	.about-body-image{
        margin-bottom: -40px;
    }
	
	.about-body-image img{
        max-width: 110px;
    }

    .about-box-2,
    .about-box-3{
    	width: 100%;  	
    }

    .about-box-2{
    	padding: 80px 20px 20px;
    }

	.about-box-2 .about-item-content{
        margin-top: 20px;
    }

    .about-box-3{
    	padding: 20px;
    }

    .about-us-counter h2{
        font-size: 28px;
    }
	
	.service-item .icon-box{
		margin-bottom: 30px;
	}

	.service-item-content h3{
		font-size: 18px;
	}

	.why-choose-image-box{
		max-width: 100%;
	}

	.why-choose-image-2{
        margin-top: -75px;
    }

	.year-experience-box{
		padding: 15px;
	}

	.year-experience-box h2{
        font-size: 24px;
    }

	.why-choose-image-2 .why-choose-img img{
		border-width: 5px;
	}

    .why-choose-body{
        padding: 20px;
    }

    .why-choose-body-item{
    	width: 100%;
    }

    .why-choose-body-item::before{
	    top: auto;
	    bottom: -15px;
	    right: auto;
	    width: 100%;
	    height: 1px;
	    transform: translateY(0);
	}

	.why-choose-body-item:nth-child(2n + 2)::before{
		display: block;
	}

	.why-choose-body-item:last-child::before{
		display: none;
	}

	.why-choose-body-content h2{
		font-size: 18px;
	}

	.why-choose-list ul{
		gap: 10px;
	}

	.why-choose-list ul li{
		width: 100%;
	}

	.why-choose-btn{
        margin-top: 20px;
        padding-top: 20px;
    }

    .work-step-item{
        padding: 20px;
    }

    .work-step-content h3{
    	font-size: 18px;
    }

	.project-content h2{
		font-size: 18px;
	}

	.feature-item{
        padding: 20px;
    }

	.features-item-content h2{
		font-size: 18px;
	}

	.features-item-content p{
		margin-top: 10px;
	}

	.features-item-content ul{
        margin-top: 20px;
    }

	.features-btn{
        margin-top: 15px;
        padding-top: 15px;
    }

	.feature-list ul{
        gap: 10px;
    }

	.what-we-do-img figure img{
        aspect-ratio: 1 / 0.98;
    }

	.review-rating-box{
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

	.review-rating-box{
		gap: 15px;
	}

	.review-rating-star{
		margin-bottom: 5px;
	}

	.what-we-do-nav{
        margin-bottom: 20px;
    }

	.what-we-do-nav ul li .nav-link{
        font-size: 16px;
    }

	.what-we-do-tab-header{
        margin-bottom: 20px;
    }

	.what-we-do-tab-body::before{
		width: 100%;
		height: 43%;
		top: 0;
	}

	.what-we-do-tab-body:hover::before{
		width: auto;
		height: 100%;
	}

	.what-we-do-body-info,
	.what-we-do-body-content{
		width: 100%;
		padding: 15px;
	}

	.what-we-do-body-info{
		border-bottom: 1px solid var(--dark-divider-color);
		border-right: none;
	}

	.what-we-do-body-info .icon-box{
		margin-bottom: 10px;
	}

	.what-we-do-body-title h3{
		font-size: 18px;
	}

	.what-we-do-body-content p{
        margin-bottom: 15px;
    }

	.language-example-list ul{
		gap: 10px;
	}

	.language-example-list ul li img{
        max-width: 28px;
    }

	.pricing-item{
		padding: 20px;
	}

	.pricing-header h3{
		margin-bottom: 15px;
	}

	.pricing-header h2{
        font-size: 24px;
    }

	.pricing-header h2 sub{
		font-size: 14px;
	}

	.pricing-item-content{
        margin-top: 15px;
        padding-top: 15px;
    }

	.pricing-body h3{
		font-size: 18px;
	}

	.pricing-body{
		margin-top: 20px;
	}

	.pricing-benefit-list ul{
		gap: 10px 30px;
	}

	.pricing-benefit-list ul li{
		font-size: 12px;
	}

	.pricing-benefit-list ul li img{
		max-width: 16px;
		margin-right: 5px;
	}

	.pricing-item.highlighted-box::before{
		font-size: 16px;
	}

	.testimonial-item{
		padding: 30px 20px 20px;
	}
	
	.testimonial-item-content p{
		font-size: 16px;
	}

	.testimonial-author{
		margin-top: 20px;
		padding-top: 20px;
	}

	.testimonial-image img{
		aspect-ratio: 1 / 0.9;
	}
	
	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
		padding: 1px 30px 1px 0;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		width: 24px;
		height: 24px;
		font-size: 14px;
	}

	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}

	.company-supports-content{
		justify-content: center;
		margin-bottom: 20px;
	}

	.company-supports-content hr{
		display: none;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer-header .section-title{
		width: 100%;
	}

	.about-footer,
	.footer-links{
        margin: 0 0 30px;
    }

	.footer-links h3,
	.footer-contact-item{
        margin-bottom: 15px;
    }

	.footer-links h3{
		font-size: 18px;
	}

	.footer-social-links{
        margin-top: 15px;
        padding-top: 15px;
    }

	.footer-copyright{
		display: block;
		text-align: center;
        padding: 15px 0;
    }

	.footer-copyright-text{
		margin-bottom: 15px;
	}

	.footer-menu ul li{
        margin-right: 10px;
    }

	.page-header-box h1{
		font-size: 30px;
	}

	.benefit-img img{
        aspect-ratio: 1 / 1.1;
    }	

	.benefit-cta-box{
		max-width: 170px;
		border-width: 15px;
	}

	.benefit-cta-box:before{
		top: -35px;
	}

	.benefit-cta-box::after{
		left: -35px;
	}

	.benefit-cta-box h2{
        font-size: 24px;
    }

	.benefit-body-item,
	.benefit-body-content{
		display: block;
	}

	.benefit-body-item{
        margin-top: 20px;
        padding-top: 20px;
    }

	.benefit-body-item .icon-box{
		margin: 0 0 20px 0;
	}

	.benefit-body-content{
		width: 100%;
	}

	.benefit-body-content h3,
	.benefit-body-content p{
		width: 100%;
	}

	.benefit-body-content h3{
		margin-bottom: 10px;
	}

	.approach-img img{
        aspect-ratio: 1 / 0.98;
    }

	.mission-vision-item{
		width: 100%;
		padding: 20px;
	}

	.mission-vision-item .icon-box{
        margin-bottom: 20px;
    }

	.mission-vision-content h2{
		font-size: 18px;
	}

	.impact-image img{
		aspect-ratio: 1 / 0.99;
	}

	.impact-image-list{
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.impact-image-list ul li{
		font-size: 14px;
		padding: 5px 10px;
	}

	.impact-body-item{
		width: 100%;
		padding: 20px;
	}

	.impact-body-item h2{
        font-size: 36px;
        margin-bottom: 25px;
    }

	.impact-body-item h3{
		font-size: 18px;
	}

	.team-content h3{
		font-size: 18px;
	}

	.page-category-list h3,
	.sidebar-cta-contact h3{
		font-size: 18px;
	}

	.sidebar-cta-contact ul li{
		margin-bottom: 15px;
	}

	.page-single-image{
        margin-bottom: 20px;
    }

	.service-entry h2{
		font-size: 26px;
	}

	.service-entry ul li{
        background-position: left 10px center;
        background-size: 16px auto;
        padding: 6px 10px 6px 30px;
    }

	.service-solution-item-content h3{
		font-size: 18px;
	}

	.service-solution-counters{
		gap: 20px;
	}

	.solution-counter-box{
		width: 100%;
	}

	.solution-counter-header{
		margin-bottom: 20px;
	}

	.service-tool-counter h2{
		font-size: 32px;
	}

	.service-result-image,
	.service-result-content{
		width: 100%;
	}

	.service-result-image figure{
		height: auto;
	}

	.service-result-item-content h3{
		font-size: 18px;
	}

	.service-tool-counter-info{
        margin-top: 15px;
        padding-top: 15px;
    }

	.service-tool-content,
	.service-tool-image,
	.service-tool-counter,
	.service-tool-info{
		width: 100%;
	}

	.service-tool-counter::before{
        width: 100%;
        height: 1px;
        right: 0;
        bottom: -15px;
        top: auto;
        transform: translateY(0);
    }

	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }

	.tag-links{
        font-size: 18px;
    }

	.project-category-list h3{
		font-size: 18px;
	}

	.project-category-list ul li{
		gap: 5px;
	}

	.project-entry h2{
		font-size: 26px;
	}

	.project-solution-image,
	.project-solution-content{
		width: 100%;
	}

	.project-solution-content{
		padding: 20px 15px;
	}

	.performance-step-list{
		gap: 20px;
	}

	.performance-step-item{
		width: 100%;
	}

	.performance-step-no,
	.performance-step-content{
		margin-bottom: 20px;
	}

	.performance-step-no h3{
		font-size: 14px;
	}

	.performance-step-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.project-experience-list{
		margin: 20px 0;
	}

	.project-experience-list ul li{
		width: 100%;
	}

	.team-single-image img{
		max-width: 240px;
	}

	.team-member-info-counters{
        margin-top: 20px;
        padding-top: 20px;
    }

	.member-info-counter-item{
        width: calc(50% - 10px);
    }

	.member-info-counter-item h2{
        font-size: 26px;
    }

	.member-skills-list{
		gap: 20px;
	}

	.skills-progress-bar{
		width: 100%;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 15px;
	}

	.member-experience-year .icon-box{
		margin-right: 10px;
	}

	.member-experience-year .icon-box i{
		font-size: 18px;
	}

	.member-experience-content h3{
		font-size: 16px;
	}

	.member-experience-btn a{
        height: 40px;
        width: 40px;
    }

	.member-experience-btn a img{
        max-width: 20px;
    }
	
	.contact-us-form label{
		font-size: 16px;
	}

	.contact-info-box{
		padding: 20px;
	}

	.contact-info-item{
		padding: 15px;
	}

	.contact-social-list{
        margin-top: 20px;
        padding-top: 20px;
    }

	.contact-info-content h3{
		font-size: 18px;
	}

	.contact-social-list h3{
		font-size: 18px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 350px;
	}
}

.cust-bg {
    background-image: url(../images/maarketing/coming-soon.png);
    background-size: cover;
    background-position: center;
}

/* ========== Maarketing Brand Overrides ========== */

.navbar-brand .brand-logo,
.brand-logo {
	height: 52px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

#loading-icon img {
	max-width: 72px;
	width: 100%;
	height: auto;
}

.hero.hero-video .hero-video-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 30%, rgba(229, 180, 26, 0.18) 0%, transparent 50%),
		linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.78) 100%);
	pointer-events: none;
	z-index: 1;
}

.hero.hero-video .container-fluid {
	position: relative;
	z-index: 2;
}

.hero-content-box .brand-hero-title {
	margin-bottom: 0.35em;
}

.hero-brand-logo {
	display: block;
	max-width: min(520px, 88vw);
	width: 100%;
	height: auto;
	margin: 0 auto 0.4em;
	filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
	animation: brandPulse 4.5s ease-in-out infinite;
}

.hero-tagline {
	font-size: clamp(1.35rem, 2.4vw, 2.15rem) !important;
	font-weight: 600 !important;
	color: var(--white-color) !important;
	letter-spacing: -0.02em;
	max-width: 18ch;
	margin-left: auto;
	margin-right: auto;
}

.hero-content-box {
	text-align: center;
}

.hero-content-box .section-title p {
	max-width: 36em;
	margin-left: auto;
	margin-right: auto;
}

@keyframes brandPulse {
	0%, 100% { transform: scale(1); filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45)); }
	50% { transform: scale(1.02); filter: drop-shadow(0 16px 48px rgba(229, 180, 26, 0.25)); }
}

/* Tools & Browsers Trust Section */
.tools-trust-section {
	position: relative;
	padding: 90px 0 100px;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 80% 0%, rgba(229, 180, 26, 0.12) 0%, transparent 45%),
		radial-gradient(ellipse at 10% 100%, rgba(229, 180, 26, 0.08) 0%, transparent 40%),
		linear-gradient(180deg, #0A0A0A 0%, #141414 50%, #0A0A0A 100%);
	color: var(--white-color);
}

.tools-trust-section .section-title h2,
.tools-trust-section .section-title h3,
.tools-trust-section .section-title p {
	color: var(--white-color);
}

.tools-trust-section .section-title h3 {
	color: var(--brand-gold);
}

.tools-trust-section .section-title h2 span {
	background: linear-gradient(90deg, var(--brand-gold), #fff3c4);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.tools-trust-section .section-title p {
	opacity: 0.78;
	max-width: 40em;
	margin-left: auto;
	margin-right: auto;
}

.tools-marquee-wrap {
	margin-top: 48px;
}

.tools-marquee-label {
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brand-gold);
	margin-bottom: 18px;
	opacity: 0.9;
}

.tools-marquee {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tools-marquee-track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: marqueeScroll 42s linear infinite;
	padding: 8px 0;
}

.tools-marquee-track.reverse {
	animation-name: marqueeScrollReverse;
	animation-duration: 48s;
}

.tools-marquee-wrap:hover .tools-marquee-track {
	animation-play-state: paused;
}

@keyframes marqueeScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

.tool-chip {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(8px);
	border-radius: 999px;
	white-space: nowrap;
	transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.tool-chip:hover {
	border-color: rgba(229, 180, 26, 0.55);
	background: rgba(229, 180, 26, 0.1);
	transform: translateY(-2px);
}

.tool-chip i {
	font-size: 1.35rem;
	color: var(--brand-gold);
}

.tool-chip span {
	font-size: 0.95rem;
	font-weight: 500;
	color: #f5f5f5;
}

.tools-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 64px;
}

.tools-grid-item {
	padding: 8px 4px;
	text-align: left;
}

.tools-grid-item.mk-feature-card {
	padding: 24px 22px;
	text-align: left;
}

.tools-grid-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(229, 180, 26, 0.2), rgba(229, 180, 26, 0.15));
	margin-bottom: 18px;
	animation: iconFloat 3.5s ease-in-out infinite;
}

.tools-grid-item:nth-child(2) .tools-grid-icon { animation-delay: 0.4s; }
.tools-grid-item:nth-child(3) .tools-grid-icon { animation-delay: 0.8s; }
.tools-grid-item:nth-child(4) .tools-grid-icon { animation-delay: 1.2s; }

@keyframes iconFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.tools-grid-icon i {
	font-size: 1.4rem;
	color: var(--brand-gold);
}

.tools-grid-item h3 {
	font-size: 1.15rem;
	color: var(--white-color);
	margin-bottom: 10px;
}

.tools-grid-item p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.68);
	margin-bottom: 0;
	line-height: 1.55;
}

.maarketing-cta {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(229, 180, 26, 0.25);
	background:
		radial-gradient(ellipse at 90% 20%, rgba(229, 180, 26, 0.2) 0%, transparent 50%),
		linear-gradient(135deg, #0A0A0A 0%, #1a1208 100%) !important;
}

.cta-brand-logo {
	max-width: 220px;
	width: 100%;
	height: auto;
}

.footer-logo img {
	max-height: 80px;
	width: auto;
}

@media (max-width: 991px) {
	.tools-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.navbar-brand .brand-logo {
		height: 48px;
	}

	.hero-brand-logo {
		max-width: min(360px, 82vw);
	}
}

@media (max-width: 575px) {
	.tools-trust-section {
		padding: 70px 0 80px;
	}

	.tools-grid {
		grid-template-columns: 1fr;
	}

	.tool-chip {
		padding: 12px 16px;
	}

	.tool-chip span {
		font-size: 0.85rem;
	}

	.cta-brand-logo {
		max-width: 160px;
		margin-top: 12px;
	}
}

/* ========== Modern Header + Topbar ========== */

header.mk-header {
	margin: 0;
	position: relative;
	z-index: 100;
	overflow: visible;
}

header.mk-header .container-fluid {
	overflow: visible;
}

.mk-topbar {
	background: #0A0A0A;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	border-bottom: 1px solid rgba(229, 180, 26, 0.18);
}

.mk-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 28px;
	min-height: 40px;
}

.mk-topbar-left {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.mk-topbar-left a,
.mk-topbar-right a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition: color 0.25s ease;
}

.mk-topbar-left a:hover,
.mk-topbar-right a:hover {
	color: var(--brand-gold);
}

.mk-topbar-left i {
	color: var(--brand-red);
	margin-right: 6px;
}

.mk-topbar-center {
	font-weight: 500;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap;
}

.mk-topbar-left a:hover,
.mk-topbar-right a:hover {
	color: var(--brand-red);
}

.mk-topbar-right {
	display: flex;
	align-items: center;
	gap: 14px;
}

.mk-nav-bar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	column-gap: 40px;
	padding: 14px 36px;
	min-height: 84px;
	position: relative;
	overflow: visible;
}

.mk-navbar {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(10, 10, 10, 0.06);
	overflow: visible;
}

.mk-nav-left {
	display: flex;
	flex: unset;
	justify-content: flex-end;
	align-items: center;
	min-width: 0;
	padding: 0;
	gap: 6px;
}

.mk-nav-end {
	display: flex;
	flex: unset;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	min-width: 0;
	padding: 0;
}

.mk-logo-center {
	position: relative;
	left: auto;
	top: auto;
	transform: none;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	padding: 4px 8px;
	line-height: 0;
	overflow: visible;
	justify-self: center;
	flex-shrink: 0;
}

.mk-logo-center .brand-logo {
	height: 52px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
	object-position: center;
	display: block;
}

header.mk-header .header-sticky {
	overflow: visible;
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.mk-header .header-sticky.active {
	background: rgba(255, 255, 255, 0.99);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
	padding: 0;
	border-bottom: none;
}

header.mk-header .header-sticky.active .mk-navbar {
	background: transparent;
	border-bottom: none;
}

header.mk-header .header-sticky.active .mk-nav-bar {
	min-height: 76px;
	padding-top: 10px;
	padding-bottom: 10px;
}

header.mk-header .header-sticky.active .mk-logo-center .brand-logo {
	height: 46px;
	max-width: 165px;
}

.mk-nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mk-nav-right {
	flex-wrap: nowrap;
	gap: 8px;
	justify-content: flex-start;
}

.mk-nav-links a {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	height: 38px;
	color: var(--brand-dark);
	text-decoration: none;
	position: relative;
	transition: color 0.25s ease;
	white-space: nowrap;
	letter-spacing: 0.02em;
}

.mk-nav-links a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 2px;
	background: var(--brand-red);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}

.mk-nav-links a:hover {
	color: var(--brand-red);
}

.mk-nav-links a:hover::after {
	transform: scaleX(1);
}

.mk-header-cta {
	white-space: nowrap;
	padding: 11px 20px !important;
	margin-left: auto;
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	height: 44px;
}

.mk-mobile-menu-source {
	display: none !important;
}

header.mk-header .responsive-menu {
	display: none;
}

header.mk-header .header-sticky,
header.mk-header .header-sticky.active {
	overflow: visible;
}

/* ========== Hero polish ========== */

.hero.mk-hero {
	padding: 0;
	min-height: 78vh;
	position: relative;
	overflow: hidden;
	border-radius: 0 0 28px 28px;
	margin: 28px 12px 0;
	max-width: calc(100% - 24px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero.mk-hero::before {
	border-radius: 0 0 28px 28px;
	opacity: 0.45;
	background: linear-gradient(180deg, rgba(26, 26, 26, 0.55), rgba(26, 26, 26, 0.72));
}

.hero.mk-hero::after {
	display: none !important;
}

.hero.mk-hero .hero-video-overlay {
	background:
		radial-gradient(ellipse at 15% 40%, rgba(229, 180, 26, 0.2) 0%, transparent 45%),
		radial-gradient(ellipse at 85% 60%, rgba(107, 107, 107, 0.25) 0%, transparent 40%),
		linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.65) 100%);
}

.mk-hero-carousel {
	position: relative;
	z-index: 3;
	width: min(920px, 92%);
	margin: 0 auto;
	padding: 90px 60px;
	text-align: center;
}

.mk-hero-slides {
	position: relative;
	min-height: 260px;
}

.mk-hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateX(48px);
	pointer-events: none;
	transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.mk-hero-slide.is-active {
	position: relative;
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.mk-hero-slide.is-exit {
	opacity: 0;
	transform: translateX(-48px);
}

.mk-hero-slide h1 {
	font-size: clamp(1.9rem, 4vw, 3.1rem);
	line-height: 1.15;
	color: #fff !important;
	font-weight: 700;
	max-width: 16ch;
	margin: 0 auto 16px;
}

.mk-hero-slide p {
	font-size: 1.02rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	max-width: 38em;
	margin: 0 auto 28px;
}

.mk-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px 14px 26px;
	border-radius: 999px;
	background: var(--brand-dark);
	color: #fff !important;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
	transition: background 0.25s ease, transform 0.25s ease;
}

.mk-hero-cta span {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-red);
	color: #fff;
	font-size: 0.8rem;
}

.mk-hero-cta:hover {
	background: #000;
	color: #fff !important;
	transform: translateY(-2px);
}

.mk-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.92);
	color: var(--brand-dark);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	z-index: 4;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mk-hero-arrow:hover {
	background: var(--brand-red);
	color: #fff;
	transform: translateY(-50%) scale(1.05);
}

.mk-hero-prev { left: 0; }
.mk-hero-next { right: 0; }

.mk-hero-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 28px;
}

.mk-hero-dots button {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: none;
	padding: 0;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: width 0.3s ease, background 0.3s ease;
}

.mk-hero-dots button.is-active {
	width: 24px;
	background: var(--brand-red);
}

.mk-hero-trust span:nth-child(2) { animation-delay: 0.3s; }
.mk-hero-trust span:nth-child(3) { animation-delay: 0.6s; }
.mk-hero-trust span:nth-child(4) { animation-delay: 0.9s; }
.mk-hero-trust span:nth-child(5) { animation-delay: 1.2s; }

.mk-hero-trust i {
	color: var(--brand-gold);
}

@keyframes trustFade {
	0%, 100% { border-color: rgba(255, 255, 255, 0.16); }
	50% { border-color: rgba(229, 180, 26, 0.55); }
}

/* ========== Browser Lab ========== */

.browser-lab-section {
	padding: 90px 0;
	background: #fff;
}

.browser-lab-section .section-title h3 {
	color: var(--brand-red);
}

.browser-lab-shell {
	margin-top: 20px;
}

.browser-picker {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 22px;
}

.browser-pick {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(10, 10, 10, 0.1);
	background: #fff;
	color: #2a2a2a;
	padding: 10px 16px;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
}

.browser-pick i {
	font-size: 1.1rem;
}

.browser-pick[data-browser="chrome"] i { color: #4285F4; }
.browser-pick[data-browser="edge"] i { color: #0078D7; }
.browser-pick[data-browser="firefox"] i { color: #FF7139; }
.browser-pick[data-browser="safari"] i { color: #00A9E0; }
.browser-pick[data-browser="opera"] i { color: #FF1B2D; }

.browser-pick:hover,
.browser-pick.active {
	background: #0A0A0A;
	color: #fff;
	border-color: #0A0A0A;
	transform: translateY(-2px);
}

.browser-pick.active i,
.browser-pick:hover i {
	color: var(--brand-gold) !important;
}

.browser-window {
	background: #111;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-chrome-bar {
	display: grid;
	grid-template-columns: auto 1fr 1.4fr;
	gap: 12px;
	align-items: center;
	padding: 12px 16px;
	background: #1c1c1c;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
	display: flex;
	gap: 6px;
}

.browser-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #444;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-tabs {
	display: flex;
}

.browser-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #2a2a2a;
	color: #eee;
	padding: 8px 14px;
	border-radius: 10px 10px 0 0;
	font-size: 0.85rem;
	font-weight: 500;
	animation: tabIn 0.35s ease;
}

.browser-tab i {
	color: var(--brand-gold);
}

@keyframes tabIn {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

.browser-address {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #0f0f0f;
	color: rgba(255, 255, 255, 0.7);
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 0.82rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.browser-address i {
	color: #28c840;
	font-size: 0.75rem;
}

.browser-panels {
	display: grid;
	grid-template-columns: 1.35fr 0.9fr;
	gap: 0;
	min-height: 480px;
	background: #f8f9fb;
}

.browser-panel-main {
	padding: 22px 24px 28px;
	border-right: 1px solid rgba(0, 0, 0, 0.06);
	background: #fff;
}

.serp-search {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border: 1px solid #e4e4e4;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	margin-bottom: 14px;
}

.serp-search > i {
	color: #4285F4;
	font-size: 1.2rem;
}

.serp-query {
	display: flex;
	align-items: center;
	font-weight: 500;
	color: #202124;
	font-size: 0.98rem;
}

.serp-typed {
	transition: opacity 0.25s ease;
}

.serp-cursor {
	width: 2px;
	height: 1.1em;
	background: #202124;
	margin-left: 2px;
	animation: blink 1s step-end infinite;
}

@keyframes blink {
	50% { opacity: 0; }
}

.serp-meta {
	font-size: 0.8rem;
	color: #70757a;
	margin-bottom: 16px;
}

.serp-results {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.serp-row {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	gap: 12px;
	align-items: start;
	padding: 12px;
	border-radius: 12px;
	transition: background 0.3s ease, transform 0.4s ease;
	animation: serpRise 0.6s ease both;
}

.serp-row:nth-child(1) { animation-delay: 0.1s; }
.serp-row:nth-child(2) { animation-delay: 0.25s; }
.serp-row:nth-child(3) { animation-delay: 0.4s; }

@keyframes serpRise {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

.serp-row.rank-up {
	background: linear-gradient(90deg, rgba(229, 180, 26, 0.12), rgba(229, 180, 26, 0.02));
	border: 1px solid rgba(229, 180, 26, 0.35);
	animation: rankPulse 2.4s ease-in-out infinite, serpRise 0.6s ease both;
}

@keyframes rankPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(229, 180, 26, 0); }
	50% { box-shadow: 0 0 0 6px rgba(229, 180, 26, 0.12); }
}

.serp-rank span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #0A0A0A;
	color: var(--brand-gold);
	font-weight: 700;
	font-size: 0.85rem;
}

.serp-row.rank-up .serp-rank span {
	animation: rankBounce 1.8s ease-in-out infinite;
}

@keyframes rankBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

.serp-url {
	font-size: 0.78rem;
	color: #202124;
	margin-bottom: 2px !important;
}

.serp-body h4 {
	font-size: 1.05rem;
	color: #1a0dab;
	margin-bottom: 4px;
	font-weight: 500;
	line-height: 1.3;
}

.serp-desc {
	font-size: 0.88rem;
	color: #4d5156;
	margin: 0 !important;
	line-height: 1.45;
}

.serp-badge {
	align-self: center;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #0A0A0A;
	background: var(--brand-gold);
	padding: 6px 10px;
	border-radius: 999px;
	white-space: nowrap;
	animation: badgeFlash 1.6s ease-in-out infinite;
}

@keyframes badgeFlash {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

.browser-panel-side {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: #f3f5f8;
}

.console-card,
.vitals-card {
	background: #fff;
	border-radius: 14px;
	padding: 16px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.console-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.console-head > i {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(229, 180, 26, 0.15);
	color: #0A0A0A;
}

.console-head strong {
	display: block;
	font-size: 0.95rem;
	color: #0A0A0A;
}

.console-head span {
	display: block;
	font-size: 0.75rem;
	color: #70757a;
}

.console-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.console-stat {
	padding: 10px;
	border-radius: 10px;
	background: #f8f9fb;
}

.console-label {
	display: block;
	font-size: 0.72rem;
	color: #70757a;
	margin-bottom: 4px;
}

.console-stat strong {
	display: block;
	font-size: 1.15rem;
	color: #0A0A0A;
	line-height: 1.2;
}

.console-stat em {
	font-style: normal;
	font-size: 0.72rem;
	font-weight: 600;
	color: #137333;
}

.console-chart {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 72px;
	margin-top: 14px;
	padding-top: 8px;
}

.console-chart span {
	flex: 1;
	height: var(--h);
	border-radius: 4px 4px 0 0;
	background: linear-gradient(180deg, var(--brand-gold), rgba(229, 180, 26, 0.35));
	animation: barGrow 1.2s ease both;
}

.console-chart span:nth-child(odd) { animation-delay: 0.1s; }
.console-chart span:nth-child(even) { animation-delay: 0.2s; }

@keyframes barGrow {
	from { transform: scaleY(0); transform-origin: bottom; }
	to { transform: scaleY(1); transform-origin: bottom; }
}

.vitals-rows {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vital-row {
	display: grid;
	grid-template-columns: 100px 1fr 32px;
	gap: 8px;
	align-items: center;
	font-size: 0.8rem;
}

.vital-row span {
	color: #5f6368;
}

.vital-bar {
	height: 8px;
	background: #e8eaed;
	border-radius: 999px;
	overflow: hidden;
}

.vital-bar i {
	display: block;
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: linear-gradient(90deg, #34a853, var(--brand-gold));
	animation: vitalFill 1.4s ease forwards;
	animation-delay: 0.3s;
}

.vital-row:nth-child(1) .vital-bar i { --target: 96%; }
.vital-row:nth-child(2) .vital-bar i { --target: 100%; }
.vital-row:nth-child(3) .vital-bar i { --target: 94%; }
.vital-row:nth-child(4) .vital-bar i { --target: 98%; }

@keyframes vitalFill {
	to { width: var(--w); }
}

.vital-row b {
	text-align: right;
	color: #137333;
	font-size: 0.85rem;
}

.browser-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.browser-step {
	padding: 24px 22px;
	text-align: left;
}

.browser-step.mk-feature-card {
	height: 100%;
}

.browser-step .tools-grid-icon {
	margin-bottom: 16px;
}

.browser-step h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
	color: #0A0A0A;
}

.browser-step p {
	font-size: 0.92rem;
	color: #555;
	margin: 0;
	line-height: 1.55;
}

/* Shared feature cards */
.mk-feature-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.browser-lab-section .mk-feature-card,
.console-section .mk-feature-card,
.top-sites-section .mk-feature-card,
.webdev-section .mk-feature-card {
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.08);
	box-shadow: 0 10px 32px rgba(10, 10, 10, 0.06);
}

.mk-feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(229, 180, 26, 0.45);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.browser-lab-section .mk-feature-card:hover,
.console-section .mk-feature-card:hover,
.top-sites-section .mk-feature-card:hover,
.webdev-section .mk-feature-card:hover {
	box-shadow: 0 16px 40px rgba(10, 10, 10, 0.1);
}

/* Console lite â€” lightweight modern */
.console-section.console-lite {
	padding: 90px 0;
	background: #fff;
}

.console-lite-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin: 10px 0 28px;
	padding: 8px 0 28px;
	border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.console-lite-stat {
	text-align: center;
	padding: 8px;
}

.console-lite-stat span {
	display: block;
	font-size: 0.78rem;
	color: #888;
	margin-bottom: 6px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.console-lite-stat strong {
	display: block;
	font-size: 1.75rem;
	color: #0A0A0A;
	line-height: 1.1;
}

.console-lite-stat em {
	display: inline-block;
	margin-top: 6px;
	font-style: normal;
	font-size: 0.8rem;
	font-weight: 600;
	color: #137333;
}

.console-lite-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.console-lite-card {
	padding: 24px 20px;
	border-radius: 16px;
	border: 1px solid rgba(10, 10, 10, 0.07);
	background: #fafaf8;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.console-lite-card:hover {
	transform: translateY(-3px);
	border-color: rgba(229, 180, 26, 0.4);
	box-shadow: 0 14px 36px rgba(10, 10, 10, 0.06);
	background: #fff;
}

.console-lite-card .tools-grid-icon {
	background: linear-gradient(135deg, rgba(229, 180, 26, 0.18), rgba(229, 180, 26, 0.08));
	animation: none;
}

.console-lite-card h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
	color: #0A0A0A;
}

.console-lite-card p {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

/* Uniform section rhythm */
.mk-section {
	padding: 90px 0;
}

.mk-section .section-title h3,
.browser-lab-section .section-title h3,
.console-lite .section-title h3,
.client-scroll-section .section-title h3,
.logo-dev-section .section-title h3,
.top-sites-section .section-title h3 {
	color: var(--brand-red);
}

.mk-section .section-title h2 span,
.browser-lab-section .section-title h2 span,
.console-lite .section-title h2 span,
.client-scroll-section .section-title h2 span,
.logo-dev-section .section-title h2 span,
.top-sites-section .section-title h2 span {
	background: linear-gradient(90deg, var(--brand-gold), #b8860b);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Portfolio modern */
.portfolio-section {
	background: #f7f5f0;
}

.portfolio-modern-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 18px;
}

.portfolio-modern-card {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(10, 10, 10, 0.08);
	background: #fff;
	box-shadow: 0 12px 36px rgba(10, 10, 10, 0.06);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-modern-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(10, 10, 10, 0.1);
}

.portfolio-modern-media {
	position: relative;
	aspect-ratio: 16 / 11;
	overflow: hidden;
}

.portfolio-modern-wide .portfolio-modern-media {
	aspect-ratio: 16 / 9;
}

.portfolio-modern-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.portfolio-modern-card:hover .portfolio-modern-media img {
	transform: scale(1.06);
}

.portfolio-modern-overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 22px 20px;
	background: linear-gradient(transparent, rgba(10, 10, 10, 0.88));
	color: #fff;
}

.portfolio-modern-overlay span {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-gold);
	margin-bottom: 6px;
}

.portfolio-modern-overlay h3 {
	color: #fff;
	font-size: 1.2rem;
	margin: 0 0 4px;
}

.portfolio-modern-overlay p {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.45;
}

/* Website aesthetic animation */
.web-aesthetic-section {
	background: #fff;
}

.web-aesthetic-stage {
	position: relative;
	max-width: 820px;
	margin: 10px auto 40px;
	padding: 40px 20px 20px;
}

.web-mockup {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(10, 10, 10, 0.08);
	box-shadow: 0 24px 60px rgba(10, 10, 10, 0.12);
	background: #0A0A0A;
	animation: mockFloat 5s ease-in-out infinite;
}

@keyframes mockFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.web-mockup-top {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px 16px;
	background: #171717;
}

.web-mockup-top span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
}

.web-mockup-top span:nth-child(1) { background: #ff5f57; }
.web-mockup-top span:nth-child(2) { background: #febc2e; }
.web-mockup-top span:nth-child(3) { background: #28c840; }

.web-mockup-top em {
	margin-left: 10px;
	font-style: normal;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.45);
}

.web-mockup-body {
	padding: 22px;
	background:
		linear-gradient(180deg, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.72)),
		url("../images/maarketing/coming-soon.png") center / cover no-repeat;
	min-height: 280px;
	position: relative;
	overflow: hidden;
}

.web-mock-nav {
	height: 10px;
	width: 55%;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	margin-bottom: 28px;
}

.web-mock-hero {
	margin-bottom: 28px;
}

.web-mock-line {
	height: 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	margin-bottom: 10px;
	animation: linePulse 2.4s ease-in-out infinite;
}

.web-mock-line.lg { width: 70%; }
.web-mock-line.md { width: 48%; animation-delay: 0.2s; }

.web-mock-cta {
	width: 120px;
	height: 28px;
	border-radius: 999px;
	margin-top: 16px;
	background: linear-gradient(90deg, var(--brand-gold), #c9a014);
	animation: linePulse 2.4s ease-in-out infinite 0.4s;
}

@keyframes linePulse {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}

.web-mock-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.web-mock-tile {
	height: 72px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	animation: tileGlow 3s ease-in-out infinite;
}

.web-mock-tile:nth-child(2) { animation-delay: 0.4s; }
.web-mock-tile:nth-child(3) { animation-delay: 0.8s; }

@keyframes tileGlow {
	0%, 100% { background: rgba(255, 255, 255, 0.06); }
	50% { background: rgba(229, 180, 26, 0.14); }
}

.web-float-card {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.08);
	box-shadow: 0 12px 30px rgba(10, 10, 10, 0.1);
	font-size: 0.85rem;
	font-weight: 600;
	color: #0A0A0A;
	animation: floatCard 4s ease-in-out infinite;
}

.web-float-card i {
	color: var(--brand-gold);
}

.web-float-1 { top: 18%; left: 0; animation-delay: 0s; }
.web-float-2 { top: 42%; right: 0; animation-delay: 0.8s; }
.web-float-3 { bottom: 12%; left: 6%; animation-delay: 1.4s; }

@keyframes floatCard {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

.web-aesthetic-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

/* Soften tools section to match system */
.tools-trust-section {
	padding: 90px 0;
}

.client-scroll-section {
	padding: 90px 0;
	background: #fff;
}

.logo-dev-section {
	padding: 90px 0;
	background: #f7f5f0;
}

.top-sites-section {
	padding: 90px 0;
	background: #fff;
}

.console-section.console-lite {
	padding: 90px 0;
	background: #f7f5f0;
}

/* Client scroll */
.client-scroll-section {
	padding: 80px 0 90px;
	background: #f7f5f0;
	overflow: hidden;
}

.client-marquee {
	margin-top: 28px;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-marquee-track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: marqueeScroll 40s linear infinite;
	padding: 8px 0;
}

.client-marquee-track.reverse {
	animation-name: marqueeScrollReverse;
	animation-duration: 46s;
}

.client-marquee:hover .client-marquee-track {
	animation-play-state: paused;
}

.client-logo-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	min-width: 160px;
	justify-content: center;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.07);
	box-shadow: 0 8px 24px rgba(10, 10, 10, 0.04);
}

.client-logo-item i {
	font-size: 1.4rem;
	color: #0A0A0A;
}

.client-logo-item span {
	font-size: 0.92rem;
	font-weight: 600;
	color: #333;
}

/* Logo development */
.logo-dev-section {
	padding: 100px 0;
	background: #fff;
}

.logo-dev-points {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 28px;
}

.logo-dev-point {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 18px;
	border-radius: 16px;
	border: 1px solid rgba(10, 10, 10, 0.07);
	background: #fafaf8;
}

.logo-dev-point .tools-grid-icon {
	flex-shrink: 0;
	animation: none;
	margin-bottom: 0;
}

.logo-dev-point h3 {
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.logo-dev-point p {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

.logo-dev-stage {
	position: relative;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.logo-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.4;
	animation: logoOrbFloat 8s ease-in-out infinite;
}

@keyframes logoOrbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(16px, -18px) scale(1.06); }
}

.logo-orb-1 {
	width: 180px;
	height: 180px;
	background: var(--brand-gold);
	top: 20%;
	left: 15%;
}

.logo-orb-2 {
	width: 140px;
	height: 140px;
	background: var(--brand-red);
	bottom: 18%;
	right: 18%;
	animation-delay: 1.5s;
}

.logo-showcase {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 36px 40px;
	border-radius: 28px;
	background: #0A0A0A;
	border: 1px solid rgba(229, 180, 26, 0.25);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.logo-showcase img {
	max-width: 260px;
	width: 100%;
	height: auto;
	margin-bottom: 14px;
}

.logo-showcase p {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
}

.logo-mini-row {
	display: flex;
	gap: 12px;
	margin-top: 22px;
	position: relative;
	z-index: 1;
}

.logo-mini {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f1ec;
	border: 1px solid rgba(10, 10, 10, 0.08);
	color: #0A0A0A;
	font-size: 1.1rem;
}

/* Top sites */
.top-sites-section {
	padding: 100px 0;
}

.top-sites-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 20px;
}

.top-site-card {
	overflow: hidden;
	padding: 0;
}

.top-site-preview {
	background: #111;
	padding: 14px 14px 0;
}

.top-site-bar {
	display: flex;
	gap: 6px;
	margin-bottom: 12px;
}

.top-site-bar span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #444;
}

.top-site-bar span:nth-child(1) { background: #ff5f57; }
.top-site-bar span:nth-child(2) { background: #febc2e; }
.top-site-bar span:nth-child(3) { background: #28c840; }

.top-site-screen {
	min-height: 150px;
	border-radius: 12px 12px 0 0;
	padding: 28px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 4px;
	color: #fff;
}

.top-site-screen strong {
	font-size: 1.25rem;
}

.top-site-screen span {
	font-size: 0.85rem;
	opacity: 0.8;
}

.screen-a,
.screen-b,
.screen-c {
	background:
		linear-gradient(180deg, rgba(10, 10, 10, 0.15), rgba(10, 10, 10, 0.45)),
		url("../images/maarketing/coming-soon.png") center / cover no-repeat;
}

.top-site-meta {
	padding: 20px 20px 22px;
}

.top-site-meta h3 {
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.top-site-meta p {
	font-size: 0.92rem;
	color: #555;
	margin-bottom: 12px;
	line-height: 1.5;
}

.top-site-meta ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.top-site-meta li {
	font-size: 0.78rem;
	font-weight: 600;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(229, 180, 26, 0.12);
	color: #0A0A0A;
}

/* Website development */
.webdev-section {
	padding: 100px 0;
	background: linear-gradient(180deg, #f7f5f0 0%, #fff 100%);
}

.webdev-points {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 24px;
}

.webdev-point {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 18px;
}

.webdev-point > i {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(229, 180, 26, 0.15);
	color: #0A0A0A;
	flex-shrink: 0;
}

.webdev-point h3 {
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.webdev-point p {
	font-size: 0.9rem;
	color: #555;
	margin: 0;
	line-height: 1.5;
}

.webdev-visual {
	padding-left: 20px;
}

.webdev-window {
	overflow: hidden;
	padding: 0;
}

.webdev-window-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px 16px;
	background: #111;
}

.webdev-window-bar span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
}

.webdev-window-bar span:nth-child(1) { background: #ff5f57; }
.webdev-window-bar span:nth-child(2) { background: #febc2e; }
.webdev-window-bar span:nth-child(3) { background: #28c840; }

.webdev-window-bar em {
	margin-left: 10px;
	font-style: normal;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.55);
}

.webdev-window-body {
	padding: 28px 24px;
	background: #fff;
}

.webdev-score {
	display: flex;
	gap: 14px;
	margin-bottom: 22px;
}

.score-ring {
	flex: 1;
	text-align: center;
	padding: 16px 8px;
	border-radius: 14px;
	border: 1px solid rgba(10, 10, 10, 0.08);
	background: #faf9f6;
}

.score-ring b {
	display: block;
	font-size: 1.6rem;
	color: #137333;
	line-height: 1;
}

.score-ring small {
	font-size: 0.75rem;
	color: #666;
}

.webdev-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
}

.webdev-checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 0.95rem;
	color: #333;
	border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.webdev-checklist li:last-child {
	border-bottom: none;
}

.webdev-checklist i {
	color: #137333;
}

@media (max-width: 1199px) {
	.mk-nav-links a {
		padding: 8px 10px;
		font-size: 13px;
	}

	.mk-nav-bar {
		min-height: 78px;
		padding: 12px 20px;
		column-gap: 24px;
	}

	.mk-logo-center {
		padding: 4px 6px;
	}

	.mk-logo-center .brand-logo {
		height: 46px;
		max-width: 160px;
	}

	header.mk-header .header-sticky.active .mk-nav-bar {
		min-height: 72px;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	header.mk-header .header-sticky.active .mk-logo-center .brand-logo {
		height: 42px;
	}

	.mk-nav-left,
	.mk-nav-end {
		padding: 0;
		gap: 4px;
	}

	.mk-nav-links,
	.mk-nav-right {
		gap: 4px;
	}

	.mk-header-cta {
		padding: 10px 16px !important;
		font-size: 13px;
	}
}

.mk-nav-bar .navbar-toggle {
	display: none;
	justify-self: end;
}

@media (max-width: 991px) {
	.mk-topbar-center {
		display: none;
	}

	.mk-nav-bar {
		display: flex;
		min-height: 72px;
		padding: 10px 16px;
		overflow: visible;
	}

	.mk-nav-left,
	.mk-nav-end {
		display: none;
	}

	.mk-logo-center {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		overflow: visible;
		padding: 8px;
	}

	.mk-nav-bar .navbar-toggle {
		display: block;
		margin-left: auto;
		position: relative;
		z-index: 3;
	}

	header.mk-header .responsive-menu {
		display: block;
	}

	.mk-logo-center .brand-logo,
	header.mk-header .header-sticky.active .mk-logo-center .brand-logo {
		height: 44px;
		max-width: 150px;
	}

	.hero.mk-hero {
		padding: 70px 0 56px;
	}

	.browser-panels {
		grid-template-columns: 1fr;
	}

	.browser-panel-main {
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	.browser-chrome-bar {
		grid-template-columns: auto 1fr;
	}

	.browser-address {
		grid-column: 1 / -1;
	}

	.browser-process,
	.console-lite-stats,
	.console-lite-grid,
	.top-sites-grid,
	.portfolio-modern-grid,
	.web-aesthetic-features,
	.tools-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.web-float-1,
	.web-float-2,
	.web-float-3 {
		display: none;
	}

	.hero.mk-hero {
		padding: 80px 0 70px;
		border-radius: 0 0 24px 24px;
		margin: 0 10px;
		max-width: calc(100% - 20px);
	}
}

@media (max-width: 575px) {
	.mk-topbar-inner {
		padding: 8px 14px;
		justify-content: center;
	}

	.mk-topbar-right {
		display: none;
	}

	.mk-topbar-left {
		justify-content: center;
		font-size: 12px;
	}

	.browser-process,
	.console-lite-stats,
	.console-lite-grid,
	.top-sites-grid,
	.portfolio-modern-grid,
	.web-aesthetic-features,
	.tools-grid {
		grid-template-columns: 1fr;
	}

	.serp-row {
		grid-template-columns: 40px 1fr;
	}

	.serp-badge {
		grid-column: 2;
		justify-self: start;
	}

	.vital-row {
		grid-template-columns: 80px 1fr 28px;
	}

	.hero.mk-hero {
		margin: 0;
		max-width: 100%;
		border-radius: 0 0 20px 20px;
		min-height: 70vh;
	}

	.mk-hero-carousel {
		padding: 70px 48px;
	}

	.mk-hero-arrow {
		width: 40px;
		height: 40px;
	}

	.mk-hero-prev { left: 4px; }
	.mk-hero-next { right: 4px; }
}

/* Advanced web aesthetic motion */
.web-aesthetic-stage {
	overflow: visible;
}

.web-orbit {
	position: absolute;
	border-radius: 50%;
	border: 1px dashed rgba(229, 180, 26, 0.35);
	pointer-events: none;
	animation: orbitSpin 18s linear infinite;
}

.web-orbit-1 {
	width: 420px;
	height: 420px;
	top: 50%;
	left: 50%;
	margin: -210px 0 0 -210px;
}

.web-orbit-2 {
	width: 560px;
	height: 560px;
	top: 50%;
	left: 50%;
	margin: -280px 0 0 -280px;
	border-color: rgba(107, 107, 107, 0.25);
	animation-duration: 28s;
	animation-direction: reverse;
}

@keyframes orbitSpin {
	to { transform: rotate(360deg); }
}

.web-sparkles {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.web-sparkles i {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--brand-red);
	opacity: 0.55;
	animation: sparkle 3.2s ease-in-out infinite;
}

.web-sparkles i:nth-child(1) { top: 12%; left: 18%; animation-delay: 0s; }
.web-sparkles i:nth-child(2) { top: 22%; right: 16%; background: var(--brand-grey); animation-delay: 0.4s; }
.web-sparkles i:nth-child(3) { bottom: 28%; left: 12%; animation-delay: 0.8s; }
.web-sparkles i:nth-child(4) { bottom: 18%; right: 20%; background: var(--brand-grey); animation-delay: 1.2s; }
.web-sparkles i:nth-child(5) { top: 48%; left: 8%; animation-delay: 1.6s; }
.web-sparkles i:nth-child(6) { top: 58%; right: 10%; animation-delay: 2s; }

@keyframes sparkle {
	0%, 100% { transform: scale(0.6); opacity: 0.25; }
	50% { transform: scale(1.4); opacity: 0.9; }
}

.web-mockup-advanced {
	position: relative;
	z-index: 1;
}

.web-mock-live {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.72rem;
	font-style: normal;
	color: #81c995;
	font-weight: 600;
}

.web-mock-live i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #34a853;
	animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.5); }
	50% { box-shadow: 0 0 0 6px rgba(52, 168, 83, 0); }
}

.web-mock-nav {
	display: flex;
	gap: 8px;
	height: auto;
	width: auto;
	background: transparent;
	margin-bottom: 24px;
}

.web-mock-nav b {
	display: block;
	height: 8px;
	width: 48px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	animation: navShimmer 2.8s ease-in-out infinite;
}

.web-mock-nav b:nth-child(2) { animation-delay: 0.2s; width: 36px; }
.web-mock-nav b:nth-child(3) { animation-delay: 0.4s; width: 42px; }
.web-mock-nav b:nth-child(4) { animation-delay: 0.6s; width: 28px; }

@keyframes navShimmer {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 1; }
}

.web-mock-cta {
	background: linear-gradient(90deg, var(--brand-gold), #c9a014) !important;
}

.web-mock-tile em {
	display: block;
	width: 40%;
	height: 8px;
	margin: 18px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
}

.web-mock-scan {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--brand-red), transparent);
	animation: scanMove 3.5s linear infinite;
	opacity: 0.7;
	pointer-events: none;
}

@keyframes scanMove {
	0% { top: 18%; }
	100% { top: 88%; }
}

.web-float-card i {
	color: var(--brand-red);
}

.web-float-4 {
	top: 8%;
	right: 12%;
	animation-delay: 1.8s;
}

@keyframes tileGlow {
	0%, 100% { background: rgba(255, 255, 255, 0.06); }
	50% { background: rgba(229, 180, 26, 0.16); }
}

/* Contact form */
.contact-form-section {
	background: #f7f5f0;
}

.contact-info-panel {
	height: 100%;
	padding: 36px 32px;
	border-radius: 20px;
	background: var(--brand-dark);
	color: #fff;
	border: 1px solid rgba(229, 180, 26, 0.25);
}

.contact-info-panel h3 {
	color: var(--brand-red);
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.contact-info-panel h2 {
	color: #fff;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	margin-bottom: 12px;
	line-height: 1.25;
}

.contact-info-panel h2 span {
	color: var(--brand-red);
}

.contact-info-panel > p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 28px;
	line-height: 1.6;
}

.contact-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.contact-info-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.contact-info-list i {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(229, 180, 26, 0.18);
	color: var(--brand-red);
	flex-shrink: 0;
}

.contact-info-list span {
	display: block;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 2px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.contact-info-list a,
.contact-info-list strong {
	color: #fff;
	font-size: 0.98rem;
	text-decoration: none;
	font-weight: 600;
}

.mk-contact-form {
	height: 100%;
	padding: 32px 28px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.08);
	box-shadow: 0 16px 40px rgba(10, 10, 10, 0.06);
}

.mk-contact-form label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--brand-grey);
	margin-bottom: 6px;
}

.mk-contact-form input,
.mk-contact-form select,
.mk-contact-form textarea {
	width: 100%;
	border: 1px solid rgba(10, 10, 10, 0.12);
	border-radius: 12px;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--brand-dark);
	background: #fafaf8;
	outline: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.mk-contact-form input:focus,
.mk-contact-form select:focus,
.mk-contact-form textarea:focus {
	border-color: var(--brand-red);
	box-shadow: 0 0 0 3px rgba(229, 180, 26, 0.12);
	background: #fff;
}

.mk-contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.mk-contact-form .mk-hero-cta {
	margin-top: 8px;
	border: none;
	cursor: pointer;
}

.mk-form-note {
	margin: 12px 0 0;
	font-size: 0.9rem;
	color: #137333;
	font-weight: 600;
}

.tools-grid-icon {
	background: linear-gradient(135deg, rgba(229, 180, 26, 0.2), rgba(107, 107, 107, 0.12)) !important;
}

.tools-grid-icon i {
	color: var(--brand-gold) !important;
}

.mk-section .section-title h3,
.browser-lab-section .section-title h3,
.console-lite .section-title h3,
.client-scroll-section .section-title h3,
.top-sites-section .section-title h3 {
	color: var(--brand-red) !important;
}

.mk-section .section-title h2 span,
.browser-lab-section .section-title h2 span,
.console-lite .section-title h2 span,
.client-scroll-section .section-title h2 span,
.top-sites-section .section-title h2 span {
	background: none !important;
	color: var(--brand-red) !important;
	-webkit-text-fill-color: var(--brand-red);
}

@media (max-width: 991px) {
	.web-orbit,
	.web-sparkles,
	.web-float-4 {
		display: none;
	}

	.mk-hero-slide h1 {
		max-width: 18ch;
	}
}

@media (max-width: 575px) {
	.mk-hero-carousel {
		padding: 60px 40px;
	}

	.contact-info-panel,
	.mk-contact-form {
		padding: 24px 18px;
	}
}

/* Uniform headings sitewide */
.section-title h3 {
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.16em !important;
	text-transform: uppercase !important;
	margin-bottom: 16px !important;
	color: var(--brand-red) !important;
	background-image: none !important;
	padding-left: 0 !important;
}

.section-title h2 {
	font-size: clamp(1.7rem, 3.2vw, 2.45rem) !important;
	font-weight: 700 !important;
	letter-spacing: -0.025em !important;
	line-height: 1.2 !important;
	color: var(--brand-dark) !important;
	margin-bottom: 14px !important;
}

.section-title h2 span {
	background: none !important;
	-webkit-text-fill-color: var(--brand-red) !important;
	color: var(--brand-red) !important;
}

.section-title p {
	font-size: 1rem !important;
	line-height: 1.65 !important;
	color: var(--brand-grey) !important;
	max-width: 38em;
	margin-left: auto;
	margin-right: auto;
}

.section-title-center {
	text-align: center;
}

.dark-section .section-title h2,
.tools-trust-section .section-title h2 {
	color: #fff !important;
}

.tools-trust-section .section-title h3 {
	color: var(--brand-red) !important;
}

.tools-trust-section .section-title p {
	color: rgba(255, 255, 255, 0.7) !important;
}

/* 3D Portfolio cards */
.portfolio-3d-section {
	background:
		radial-gradient(ellipse at 15% 10%, rgba(229, 180, 26, 0.12), transparent 42%),
		radial-gradient(ellipse at 85% 90%, rgba(107, 107, 107, 0.12), transparent 40%),
		linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
	perspective: 1400px;
	overflow: hidden;
}

.portfolio-3d-section .section-title h2,
.portfolio-3d-section .section-title p {
	color: #fff !important;
}

.portfolio-3d-section .section-title h3,
.portfolio-3d-section .section-title h2 span {
	color: var(--brand-gold) !important;
	-webkit-text-fill-color: var(--brand-gold) !important;
}

.portfolio-3d-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 20px;
	perspective: 1600px;
	transform-style: preserve-3d;
}

.card-3d {
	perspective: 1200px;
	opacity: 0;
	transform: translateY(72px) rotateX(28deg) scale(0.88);
	transform-origin: center bottom;
	transition:
		opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
	filter: blur(6px);
}

.card-3d.is-inview {
	opacity: 1;
	transform: translateY(0) rotateX(0deg) scale(1);
	filter: blur(0);
}

.card-3d:nth-child(1).is-inview { transition-delay: 0.05s; }
.card-3d:nth-child(2).is-inview { transition-delay: 0.14s; }
.card-3d:nth-child(3).is-inview { transition-delay: 0.23s; }
.card-3d:nth-child(4).is-inview { transition-delay: 0.12s; }
.card-3d:nth-child(5).is-inview { transition-delay: 0.21s; }
.card-3d:nth-child(6).is-inview { transition-delay: 0.3s; }

.card-3d-inner {
	position: relative;
	height: 100%;
	border-radius: 22px;
	background: #fff;
	border: 1px solid rgba(26, 26, 26, 0.08);
	box-shadow:
		0 22px 48px rgba(0, 0, 0, 0.35),
		0 2px 0 rgba(255, 255, 255, 0.8) inset;
	overflow: hidden;
	transform-style: preserve-3d;
	transition: transform 0.18s ease-out, box-shadow 0.35s ease;
	will-change: transform;
	animation: cardFloat3d 6s ease-in-out infinite;
	animation-play-state: paused;
}

.card-3d.is-inview .card-3d-inner {
	animation-play-state: running;
}

.card-3d:nth-child(2) .card-3d-inner { animation-delay: -1.2s; }
.card-3d:nth-child(3) .card-3d-inner { animation-delay: -2.4s; }
.card-3d:nth-child(4) .card-3d-inner { animation-delay: -0.8s; }
.card-3d:nth-child(5) .card-3d-inner { animation-delay: -2s; }
.card-3d:nth-child(6) .card-3d-inner { animation-delay: -3.2s; }

@keyframes cardFloat3d {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.card-3d-inner:hover {
	box-shadow:
		0 36px 70px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(229, 180, 26, 0.28);
	animation-play-state: paused;
}

.card-3d-glow {
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(229, 180, 26, 0.22);
	filter: blur(40px);
	top: -40px;
	right: -30px;
	pointer-events: none;
	transform: translateZ(20px);
}

.card-3d-glow.red { background: rgba(229, 180, 26, 0.22); }
.card-3d-glow.grey { background: rgba(107, 107, 107, 0.2); }

.card-3d-media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	transform: translateZ(30px);
}

.card-3d-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.card-3d-inner:hover .card-3d-media img {
	transform: scale(1.08);
}

.card-3d-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(26, 26, 26, 0.82);
	backdrop-filter: blur(6px);
	transform: translateZ(40px);
}

.card-3d-badge.seo { background: var(--brand-red); }
.card-3d-badge.ads { background: #1A1A1A; }
.card-3d-badge.store { background: var(--brand-grey); }
.card-3d-badge.brand { background: linear-gradient(90deg, var(--brand-gold), #b8860b); }

.card-3d-body {
	padding: 18px 18px 20px;
	position: relative;
	transform: translateZ(35px);
}

.card-3d-brand {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	overflow: hidden;
	margin-top: -36px;
	margin-bottom: 12px;
	border: 2px solid #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	background: #0A0A0A;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-3d-brand img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-3d-brand.logo-mark {
	background: #111;
	color: var(--brand-gold);
	font-size: 1.1rem;
}

.card-3d-brand.logo-mark.alt {
	background: #2a2a2a;
	color: #fff;
}

.card-3d-brand.logo-mark.red {
	background: var(--brand-red);
	color: #fff;
}

.card-3d-tag {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-red);
	margin-bottom: 6px;
}

.card-3d-body h3 {
	font-size: 1.15rem;
	color: var(--brand-dark);
	margin-bottom: 8px;
	line-height: 1.25;
}

.card-3d-body p {
	font-size: 0.9rem;
	color: var(--brand-grey);
	line-height: 1.5;
	margin-bottom: 14px;
}

.card-3d-metrics {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.card-3d-metrics li {
	padding: 7px 10px;
	border-radius: 10px;
	background: #f3f1ec;
	font-size: 0.75rem;
	color: var(--brand-grey);
	font-weight: 500;
}

.card-3d-metrics strong {
	display: block;
	color: var(--brand-dark);
	font-size: 0.92rem;
	line-height: 1.2;
}

@media (max-width: 991px) {
	.portfolio-3d-grid {
		grid-template-columns: 1fr 1fr;
	}

	.hero.mk-hero {
		margin-top: 16px;
	}
}

@media (max-width: 575px) {
	.portfolio-3d-grid {
		grid-template-columns: 1fr;
	}

	.hero.mk-hero {
		margin: 12px 0 0;
		max-width: 100%;
	}
}

/* SEO Tools + Backlinks + Trending */
.seo-growth-section {
	background:
		radial-gradient(ellipse at 50% 0%, rgba(229, 180, 26, 0.08), transparent 48%),
		linear-gradient(180deg, #f7f6f2 0%, #fff 38%, #fff 100%);
	overflow: hidden;
}

.seo-search-stage {
	max-width: 720px;
	margin: 8px auto 36px;
	opacity: 0;
	transform: translateY(28px) scale(0.96);
	transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-search-stage.is-inview {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.seo-search-window {
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.08);
	box-shadow:
		0 24px 60px rgba(10, 10, 10, 0.1),
		0 0 0 1px rgba(229, 180, 26, 0.08);
	overflow: hidden;
	transform-style: preserve-3d;
	animation: seoSearchFloat 5.5s ease-in-out infinite;
}

@keyframes seoSearchFloat {
	0%, 100% { transform: translateY(0) rotateX(0deg); }
	50% { transform: translateY(-8px) rotateX(1.5deg); }
}

.seo-search-chrome {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #f3f1ec;
	border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.seo-search-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d0cdc4;
}

.seo-search-dot:nth-child(1) { background: #ff5f57; }
.seo-search-dot:nth-child(2) { background: #febc2e; }
.seo-search-dot:nth-child(3) { background: #28c840; }

.seo-search-url {
	flex: 1;
	margin-left: 8px;
	padding: 6px 12px;
	border-radius: 8px;
	background: #fff;
	font-size: 0.78rem;
	color: var(--brand-grey);
	font-weight: 500;
}

.seo-search-body {
	padding: 28px 24px 22px;
	text-align: center;
}

.seo-search-logo {
	font-size: 1.65rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--brand-dark);
	margin-bottom: 18px;
}

.seo-search-logo span {
	color: var(--brand-gold);
}

.seo-search-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 520px;
	margin: 0 auto;
	padding: 14px 18px;
	border-radius: 999px;
	border: 1px solid rgba(10, 10, 10, 0.12);
	background: #fff;
	box-shadow: 0 8px 24px rgba(10, 10, 10, 0.06);
	text-align: left;
}

.seo-search-bar i {
	color: var(--brand-gold);
	font-size: 1rem;
}

.seo-search-typed {
	flex: 1;
	font-size: 0.98rem;
	color: var(--brand-dark);
	font-weight: 500;
	min-height: 1.4em;
}

.seo-search-typed::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 1.05em;
	margin-left: 2px;
	background: var(--brand-gold);
	vertical-align: text-bottom;
	animation: seoCaret 0.85s steps(1) infinite;
}

@keyframes seoCaret {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

.seo-search-hints {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.seo-search-hints span {
	padding: 6px 12px;
	border-radius: 999px;
	background: #f3f1ec;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--brand-grey);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s ease, color 0.25s ease;
}

.seo-search-hints span.is-shown {
	opacity: 1;
	transform: translateY(0);
}

.seo-search-hints span.is-active {
	background: rgba(229, 180, 26, 0.18);
	color: var(--brand-dark);
}

.seo-tools-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 36px;
}

.seo-tool-card {
	padding: 24px 20px;
	border-radius: 16px;
	border: 1px solid rgba(10, 10, 10, 0.08);
	background: #fafaf8;
	opacity: 0;
	transform: translateY(36px) rotateX(12deg);
	transform-origin: center top;
	transition:
		opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		background 0.3s ease;
}

.seo-tool-card.is-inview {
	opacity: 1;
	transform: translateY(0) rotateX(0);
}

.seo-tool-card:nth-child(1).is-inview { transition-delay: 0.05s; }
.seo-tool-card:nth-child(2).is-inview { transition-delay: 0.12s; }
.seo-tool-card:nth-child(3).is-inview { transition-delay: 0.19s; }
.seo-tool-card:nth-child(4).is-inview { transition-delay: 0.1s; }
.seo-tool-card:nth-child(5).is-inview { transition-delay: 0.17s; }
.seo-tool-card:nth-child(6).is-inview { transition-delay: 0.24s; }

.seo-tool-card:hover {
	transform: translateY(-6px) scale(1.02);
	border-color: rgba(229, 180, 26, 0.45);
	box-shadow: 0 18px 44px rgba(10, 10, 10, 0.1);
	background: #fff;
}

.seo-tool-card h3 {
	font-size: 1.08rem;
	color: var(--brand-dark);
	margin-bottom: 8px;
}

.seo-tool-card p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--brand-grey);
	line-height: 1.5;
}

.backlink-panel {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: center;
	padding: 32px;
	border-radius: 22px;
	background: #0A0A0A;
	border: 1px solid rgba(229, 180, 26, 0.2);
	margin-bottom: 36px;
}

.backlink-panel-copy h3 {
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brand-gold);
	margin-bottom: 10px;
}

.backlink-panel-copy h2 {
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.25;
}

.backlink-panel-copy > p {
	color: rgba(255, 255, 255, 0.68);
	margin-bottom: 18px;
	line-height: 1.6;
}

.backlink-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
}

.backlink-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.9rem;
}

.backlink-list i {
	color: var(--brand-gold);
}

.backlink-visual {
	position: relative;
	min-height: 260px;
}

.backlink-lines {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.backlink-lines line {
	stroke: rgba(229, 180, 26, 0.45);
	stroke-width: 1.5;
	stroke-dasharray: 4 4;
	animation: dashMove 8s linear infinite;
}

@keyframes dashMove {
	to { stroke-dashoffset: -40; }
}

.backlink-node {
	position: absolute;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	animation: floatCard 4s ease-in-out infinite;
}

.backlink-node i {
	color: var(--brand-gold);
	font-size: 1rem;
}

.backlink-node.hub {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(229, 180, 26, 0.15);
	border-color: rgba(229, 180, 26, 0.4);
	animation: none;
}

.backlink-node.n1 { left: 8%; top: 8%; }
.backlink-node.n2 { right: 8%; top: 10%; animation-delay: 0.5s; }
.backlink-node.n3 { left: 6%; bottom: 10%; animation-delay: 1s; }
.backlink-node.n4 { right: 6%; bottom: 12%; animation-delay: 1.4s; }

.trend-marketing {
	padding-top: 8px;
}

.trend-head {
	text-align: center;
	margin-bottom: 24px;
}

.trend-head h3 {
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brand-gold);
	margin-bottom: 8px;
}

.trend-head h2 {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	color: var(--brand-dark);
}

.trend-head h2 span {
	color: var(--brand-gold);
}

.trend-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.trend-card {
	position: relative;
	padding: 22px 18px;
	border-radius: 16px;
	border: 1px solid rgba(10, 10, 10, 0.08);
	background: #fafaf8;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.trend-card:hover {
	transform: translateY(-4px);
	border-color: rgba(229, 180, 26, 0.45);
	background: #fff;
}

.trend-hot {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-dark);
	background: var(--brand-gold);
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 12px;
}

.trend-card h3 {
	font-size: 1.05rem;
	color: var(--brand-dark);
	margin-bottom: 8px;
}

.trend-card p {
	margin: 0;
	font-size: 0.88rem;
	color: var(--brand-grey);
	line-height: 1.5;
}

@media (max-width: 991px) {
	.seo-tools-grid {
		grid-template-columns: 1fr 1fr;
	}

	.seo-search-body {
		padding: 22px 16px 18px;
	}

	.seo-search-logo {
		font-size: 1.35rem;
	}

	.backlink-panel {
		grid-template-columns: 1fr;
	}

	.trend-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 575px) {
	.seo-tools-grid,
	.trend-grid,
	.backlink-list {
		grid-template-columns: 1fr;
	}

	.seo-search-hints span {
		font-size: 0.7rem;
	}

	.backlink-panel {
		padding: 22px 18px;
	}
}

/* ========== Ads Lab (animated console) ========== */

.ads-lab-section {
	background:
		radial-gradient(ellipse at 20% 0%, rgba(229, 180, 26, 0.14), transparent 42%),
		radial-gradient(ellipse at 90% 80%, rgba(107, 107, 107, 0.14), transparent 40%),
		linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
	overflow: hidden;
}

.ads-lab-section .section-title h2,
.ads-lab-section .section-title p {
	color: #fff !important;
}

.ads-lab-section .section-title h3,
.ads-lab-section .section-title h2 span {
	color: var(--brand-gold) !important;
	-webkit-text-fill-color: var(--brand-gold) !important;
}

.ads-console-stage {
	max-width: 820px;
	margin: 8px auto 36px;
	opacity: 0;
	transform: translateY(32px) scale(0.96);
	transition: opacity 0.7s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
	perspective: 1200px;
}

.ads-console-stage.is-inview {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.ads-console-window {
	border-radius: 18px;
	background: #111;
	border: 1px solid rgba(229, 180, 26, 0.32);
	box-shadow:
		0 28px 70px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(255, 255, 255, 0.04) inset;
	overflow: hidden;
	animation: adsConsoleFloat 5.5s ease-in-out infinite;
}

@keyframes adsConsoleFloat {
	0%, 100% { transform: translateY(0) rotateX(0deg); }
	50% { transform: translateY(-8px) rotateX(1.2deg); }
}

.ads-console-chrome {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #1a1a1a;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ads-console-chrome .seo-search-url {
	background: #0f0f0f;
	color: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.ads-live-pill {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #0a0a0a;
	background: var(--brand-gold);
}

.ads-live-pill i {
	font-size: 0.45rem;
	animation: adsPulse 1.2s ease-in-out infinite;
}

@keyframes adsPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

.ads-console-body {
	padding: 22px 20px 20px;
}

.ads-console-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.ads-campaign-typed .ads-label {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 4px;
}

.ads-campaign-typed strong {
	font-size: 1.15rem;
	color: #fff;
	font-weight: 600;
	min-height: 1.4em;
	display: inline-block;
}

.ads-campaign-typed strong::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 1.05em;
	margin-left: 3px;
	background: var(--brand-gold);
	vertical-align: text-bottom;
	animation: seoCaret 0.85s steps(1) infinite;
}

.ads-status-chip {
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	background: rgba(40, 200, 64, 0.15);
	color: #28c840;
	border: 1px solid rgba(40, 200, 64, 0.35);
}

.ads-metrics-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 18px;
}

.ads-metric {
	padding: 14px 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.ads-metric.is-shown {
	opacity: 1;
	transform: translateY(0);
}

.ads-metric span {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 6px;
}

.ads-metric strong {
	font-size: 1.35rem;
	color: var(--brand-gold);
	font-weight: 700;
}

.ads-keyword-stream {
	display: grid;
	gap: 8px;
}

.ads-kw {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	opacity: 0;
	transform: translateX(-18px);
	transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.25s ease;
}

.ads-kw.is-shown {
	opacity: 1;
	transform: translateX(0);
}

.ads-kw.is-hot {
	border-color: rgba(229, 180, 26, 0.45);
	background: rgba(229, 180, 26, 0.08);
}

.ads-kw i {
	color: var(--brand-gold);
	font-size: 0.8rem;
}

.ads-kw em {
	margin-left: auto;
	font-style: normal;
	font-weight: 700;
	color: #fff;
	font-size: 0.85rem;
}

.ads-tactics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.ads-tactic-card {
	padding: 24px 20px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	opacity: 0;
	transform: translateY(36px) rotateX(10deg);
	transform-origin: center top;
	transition:
		opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		background 0.3s ease;
}

.ads-tactic-card.is-inview {
	opacity: 1;
	transform: translateY(0) rotateX(0);
}

.ads-tactic-card:nth-child(1).is-inview { transition-delay: 0.05s; }
.ads-tactic-card:nth-child(2).is-inview { transition-delay: 0.12s; }
.ads-tactic-card:nth-child(3).is-inview { transition-delay: 0.19s; }
.ads-tactic-card:nth-child(4).is-inview { transition-delay: 0.1s; }
.ads-tactic-card:nth-child(5).is-inview { transition-delay: 0.17s; }
.ads-tactic-card:nth-child(6).is-inview { transition-delay: 0.24s; }

.ads-tactic-card:hover {
	transform: translateY(-6px);
	border-color: rgba(229, 180, 26, 0.45);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
	background: rgba(255, 255, 255, 0.07);
}

.ads-tactic-card .tools-grid-icon {
	color: var(--brand-gold);
}

.ads-tactic-card h3 {
	font-size: 1.08rem;
	color: #fff;
	margin-bottom: 8px;
}

.ads-tactic-card p {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.5;
}

@media (max-width: 991px) {
	.ads-metrics-row {
		grid-template-columns: 1fr 1fr;
	}

	.ads-tactics-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 575px) {
	.ads-tactics-grid,
	.ads-metrics-row {
		grid-template-columns: 1fr;
	}

	.ads-console-toolbar {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ========== Production polish ========== */

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.ads-console-window,
	.seo-search-window,
	.card-3d-inner,
	.ads-live-pill i,
	.seo-search-typed::after,
	.ads-campaign-typed strong::after {
		animation: none !important;
	}

	.card-3d,
	.seo-tool-card,
	.ads-tactic-card,
	.seo-search-stage,
	.ads-console-stage {
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}
}

img {
	max-width: 100%;
	height: auto;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--brand-gold);
	outline-offset: 3px;
}

.mk-section {
	scroll-margin-top: 88px;
}

#home,
#browser-lab,
#console,
#portfolio,
#seo-tools,
#ads-lab,
#clients,
#webdev,
#about,
#contact,
#faq {
	scroll-margin-top: 88px;
}

/* ========== With You / Reassure CTA ========== */

.mk-reassure-section {
	position: relative;
	padding: 100px 0 110px;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(229, 180, 26, 0.16), transparent 48%),
		linear-gradient(180deg, #070707 0%, #121212 55%, #0a0a0a 100%);
	color: #fff;
}

.mk-reassure-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.mk-reassure-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(50px);
	opacity: 0.55;
	animation: mkOrbDrift 12s ease-in-out infinite;
}

.mk-reassure-orb.o1 {
	width: 280px;
	height: 280px;
	background: rgba(229, 180, 26, 0.35);
	top: -60px;
	left: 8%;
}

.mk-reassure-orb.o2 {
	width: 320px;
	height: 320px;
	background: rgba(107, 107, 107, 0.35);
	bottom: -80px;
	right: 5%;
	animation-delay: -4s;
}

.mk-reassure-orb.o3 {
	width: 180px;
	height: 180px;
	background: rgba(229, 180, 26, 0.2);
	top: 40%;
	left: 55%;
	animation-delay: -7s;
}

@keyframes mkOrbDrift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(24px, -18px) scale(1.08); }
}

.mk-reassure-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}

.mk-reassure-inner {
	position: relative;
	z-index: 2;
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
}

.mk-reassure-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid rgba(229, 180, 26, 0.35);
	background: rgba(229, 180, 26, 0.1);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand-gold);
	margin-bottom: 22px;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.mk-reassure-section.is-live .mk-reassure-eyebrow {
	opacity: 1;
	transform: none;
}

.mk-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #28c840;
	box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.55);
	animation: mkLivePulse 1.6s ease-out infinite;
	display: inline-block;
}

@keyframes mkLivePulse {
	0% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.55); }
	70% { box-shadow: 0 0 0 10px rgba(40, 200, 64, 0); }
	100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0); }
}

.mk-reassure-title {
	font-size: clamp(2rem, 4.6vw, 3.4rem);
	line-height: 1.15;
	font-weight: 700;
	color: #fff;
	margin-bottom: 18px;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.mk-reassure-section.is-live .mk-reassure-title {
	opacity: 1;
	transform: none;
}

.mk-reassure-title span {
	color: var(--brand-gold);
	display: inline-block;
	animation: mkGoldGlow 2.8s ease-in-out infinite;
}

@keyframes mkGoldGlow {
	0%, 100% { text-shadow: 0 0 0 rgba(229, 180, 26, 0); }
	50% { text-shadow: 0 0 28px rgba(229, 180, 26, 0.45); }
}

.mk-reassure-sub {
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.68);
	max-width: 680px;
	margin: 0 auto 28px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s ease 0.16s, transform 0.7s ease 0.16s;
}

.mk-reassure-section.is-live .mk-reassure-sub {
	opacity: 1;
	transform: none;
}

.mk-pain-rail {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 34px;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s ease 0.22s, transform 0.7s ease 0.22s;
}

.mk-reassure-section.is-live .mk-pain-rail {
	opacity: 1;
	transform: none;
}

.mk-pain-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.88rem;
	font-weight: 500;
	cursor: default;
	transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.mk-pain-chip i {
	color: rgba(255, 255, 255, 0.45);
}

.mk-pain-chip.is-active {
	border-color: rgba(229, 180, 26, 0.55);
	background: rgba(229, 180, 26, 0.14);
	color: #fff;
	transform: translateY(-2px) scale(1.03);
}

.mk-pain-chip.is-active i {
	color: var(--brand-gold);
}

.mk-reassure-stage {
	display: grid;
	grid-template-columns: 1.35fr 0.85fr;
	gap: 20px;
	align-items: stretch;
	text-align: left;
	margin-bottom: 36px;
	opacity: 0;
	transform: translateY(28px) scale(0.98);
	transition: opacity 0.8s ease 0.28s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
}

.mk-reassure-section.is-live .mk-reassure-stage {
	opacity: 1;
	transform: none;
}

.mk-chat-window {
	border-radius: 20px;
	border: 1px solid rgba(229, 180, 26, 0.28);
	background: rgba(18, 18, 18, 0.92);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	min-height: 280px;
	display: flex;
	flex-direction: column;
}

.mk-chat-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.03);
}

.mk-chat-head img {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	object-fit: cover;
	background: #000;
}

.mk-chat-head strong {
	display: block;
	font-size: 0.95rem;
	color: #fff;
}

.mk-chat-head em {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-style: normal;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.55);
}

.mk-chat-body {
	flex: 1;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 150px;
}

.mk-chat-msg {
	max-width: 88%;
	padding: 11px 14px;
	border-radius: 14px;
	font-size: 0.92rem;
	line-height: 1.45;
	opacity: 0;
	transform: translateY(10px);
	animation: mkChatIn 0.45s ease forwards;
}

.mk-chat-msg.them {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.9);
	border-bottom-left-radius: 4px;
}

.mk-chat-msg.you {
	align-self: flex-end;
	background: rgba(229, 180, 26, 0.2);
	border: 1px solid rgba(229, 180, 26, 0.35);
	color: #fff;
	border-bottom-right-radius: 4px;
}

@keyframes mkChatIn {
	to { opacity: 1; transform: none; }
}

.mk-chat-reply {
	padding: 14px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--brand-gold);
	background: rgba(229, 180, 26, 0.08);
	min-height: 52px;
}

.mk-reassure-stats {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mk-reassure-stat {
	flex: 1;
	padding: 20px 18px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.mk-reassure-stat:hover {
	border-color: rgba(229, 180, 26, 0.4);
	transform: translateY(-3px);
}

.mk-reassure-stat strong {
	font-size: 2rem;
	line-height: 1;
	color: var(--brand-gold);
	margin-bottom: 8px;
}

.mk-reassure-stat span {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
}

.mk-reassure-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.mk-reassure-section.is-live .mk-reassure-cta {
	opacity: 1;
	transform: none;
}

.mk-reassure-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mk-reassure-btn.primary {
	background: var(--brand-gold);
	color: #0a0a0a;
	box-shadow: 0 12px 30px rgba(229, 180, 26, 0.35);
	animation: mkCtaPulse 2.4s ease-in-out infinite;
}

.mk-reassure-btn.primary:hover {
	transform: translateY(-3px) scale(1.02);
	color: #0a0a0a;
}

@keyframes mkCtaPulse {
	0%, 100% { box-shadow: 0 12px 30px rgba(229, 180, 26, 0.3); }
	50% { box-shadow: 0 16px 40px rgba(229, 180, 26, 0.55); }
}

.mk-reassure-btn.ghost {
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	background: rgba(255, 255, 255, 0.04);
}

.mk-reassure-btn.ghost:hover {
	border-color: rgba(229, 180, 26, 0.5);
	color: #fff;
	transform: translateY(-2px);
}

.mk-reassure-btn.whatsapp {
	background: #1f6b3a;
	color: #fff;
}

.mk-reassure-btn.whatsapp:hover {
	background: #258a49;
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.mk-reassure-stage {
		grid-template-columns: 1fr;
	}

	.mk-reassure-stats {
		flex-direction: row;
	}

	.mk-reassure-stat {
		flex: 1;
	}
}

@media (max-width: 575px) {
	.mk-reassure-section {
		padding: 72px 0 80px;
	}

	.mk-reassure-stats {
		flex-direction: column;
	}

	.mk-reassure-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mk-reassure-orb,
	.mk-live-dot,
	.mk-reassure-title span,
	.mk-reassure-btn.primary {
		animation: none !important;
	}
}

/* ========== Chrome Trust Browser ========== */

.chrome-trust-section {
	background:
		radial-gradient(ellipse at 20% 0%, rgba(66, 133, 244, 0.08), transparent 48%),
		radial-gradient(ellipse at 85% 100%, rgba(229, 180, 26, 0.08), transparent 42%),
		linear-gradient(180deg, #f7f8fa 0%, #ffffff 45%, #f3f4f6 100%);
	overflow: hidden;
}

.chrome-trust-section .section-title h2,
.chrome-trust-section .section-title p {
	color: var(--brand-dark) !important;
}

.chrome-trust-section .section-title h3,
.chrome-trust-section .section-title h2 span {
	color: var(--brand-gold) !important;
	-webkit-text-fill-color: var(--brand-gold) !important;
}

.chrome-trust-frame {
	max-width: 1080px;
	margin: 12px auto 0;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(32, 33, 36, 0.1);
	box-shadow:
		0 28px 64px rgba(32, 33, 36, 0.12),
		0 2px 0 rgba(255, 255, 255, 0.8) inset;
	background: #dee1e6;
	opacity: 0;
	transform: translateY(40px) scale(0.97);
	transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.chrome-trust-frame.is-live {
	opacity: 1;
	transform: none;
}

.chrome-os-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	background: #dee1e6;
	border-bottom: 1px solid rgba(32, 33, 36, 0.06);
}

.chrome-os-dots {
	display: flex;
	gap: 6px;
}

.chrome-os-dots span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #9aa0a6;
}

.chrome-os-dots span:nth-child(1) { background: #ff5f57; }
.chrome-os-dots span:nth-child(2) { background: #febc2e; }
.chrome-os-dots span:nth-child(3) { background: #28c840; }

.chrome-os-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	color: #5f6368;
	font-weight: 500;
}

.chrome-os-title i { color: #1a73e8; }

.chrome-os-actions {
	display: flex;
	gap: 14px;
	color: #80868b;
	font-size: 0.85rem;
}

.chrome-tab-strip {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	padding: 8px 10px 0;
	background: #dee1e6;
}

.chrome-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 10px 10px 0 0;
	background: transparent;
	color: #5f6368;
	font-size: 0.8rem;
	max-width: 200px;
}

.chrome-tab.is-active {
	background: #fff;
	color: #202124;
}

.chrome-tab .tab-x {
	font-size: 0.65rem;
	opacity: 0.5;
	margin-left: 4px;
}

.chrome-new-tab {
	border: none;
	background: transparent;
	color: #5f6368;
	padding: 8px 10px;
	cursor: default;
}

.chrome-toolbar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	background: #fff;
	border-bottom: 1px solid #e8eaed;
}

.chrome-nav-btns {
	display: flex;
	gap: 4px;
}

.chrome-nav-btns button {
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #5f6368;
}

.chrome-omnibox {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #f1f3f4;
	border: 1px solid #e8eaed;
	min-width: 0;
}

.chrome-https {
	color: #188038;
	font-size: 0.85rem;
}

.chrome-url {
	flex: 1;
	font-size: 0.88rem;
	color: #202124;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.chrome-trust-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(52, 168, 83, 0.12);
	color: #188038;
	font-size: 0.72rem;
	font-weight: 600;
	white-space: nowrap;
}

.chrome-star {
	color: #9aa0a6;
}

.chrome-ext {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #5f6368;
	padding-right: 4px;
}

.chrome-viewport {
	display: grid;
	grid-template-columns: 1.5fr 0.9fr;
	gap: 0;
	min-height: 420px;
	background: #fff;
}

.chrome-site {
	padding: 28px 28px 24px;
	background:
		linear-gradient(180deg, #f8f9fa 0%, #fff 40%);
}

.chrome-site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.chrome-site-nav strong {
	font-size: 1.25rem;
	color: #202124;
}

.chrome-site-nav strong span {
	color: var(--brand-gold);
}

.chrome-site-links {
	display: flex;
	gap: 16px;
	font-size: 0.85rem;
	color: #5f6368;
	font-weight: 500;
}

.chrome-site-kicker {
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #1a73e8;
	font-weight: 700;
	margin-bottom: 8px;
}

.chrome-site-hero h3 {
	font-size: clamp(1.4rem, 2.4vw, 1.85rem);
	color: #202124;
	margin-bottom: 10px;
	line-height: 1.25;
}

.chrome-site-hero p {
	color: #5f6368;
	line-height: 1.55;
	margin-bottom: 22px;
	max-width: 420px;
}

.chrome-trust-checks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.chrome-check {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 11px 12px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e8eaed;
	font-size: 0.82rem;
	font-weight: 600;
	color: #80868b;
	opacity: 0.45;
	transform: translateY(8px);
	transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s ease, color 0.3s ease;
}

.chrome-check i {
	color: #dadce0;
}

.chrome-check.is-on {
	opacity: 1;
	transform: none;
	border-color: rgba(52, 168, 83, 0.35);
	color: #202124;
}

.chrome-check.is-on i {
	color: #34a853;
}

.chrome-side-panel {
	padding: 20px;
	background: #f1f3f4;
	border-left: 1px solid #e8eaed;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.chrome-side-card {
	padding: 18px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #e8eaed;
	box-shadow: 0 8px 24px rgba(32, 33, 36, 0.06);
}

.chrome-side-card.soft {
	background: #202124;
	border-color: #202124;
	color: #fff;
}

.chrome-side-card h4 {
	font-size: 0.92rem;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #202124;
}

.chrome-side-card.soft h4 {
	color: #fff;
}

.chrome-side-card h4 i {
	color: #8ab4f8;
}

.chrome-score-ring {
	width: 120px;
	height: 120px;
	margin: 0 auto 12px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at center, #fff 58%, transparent 59%),
		conic-gradient(#34a853 0 98%, #e8eaed 0);
	font-weight: 700;
}

.chrome-score-ring strong {
	font-size: 2rem;
	color: #202124;
	line-height: 1;
}

.chrome-score-ring span {
	font-size: 0.75rem;
	color: #5f6368;
}

.chrome-side-card > p {
	text-align: center;
	font-size: 0.82rem;
	color: #5f6368;
	margin: 0;
}

.chrome-side-card.soft ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.chrome-side-card.soft li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.85);
}

.chrome-side-card.soft li i {
	color: var(--brand-gold);
}

@media (max-width: 991px) {
	.chrome-viewport {
		grid-template-columns: 1fr;
	}

	.chrome-side-panel {
		border-left: none;
		border-top: 1px solid #e8eaed;
	}

	.chrome-trust-pill {
		display: none;
	}

	.chrome-trust-checks {
		grid-template-columns: 1fr;
	}
}

/* ========== AI Chatbot ========== */

.mk-chatbot {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(28px) scale(0.92);
	pointer-events: none;
	transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
}

.mk-chatbot.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
	pointer-events: auto;
}

.mk-chatbot-launcher {
	position: relative;
	width: 60px;
	height: 60px;
	border: none;
	border-radius: 50%;
	background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
	color: var(--brand-gold);
	font-size: 1.35rem;
	box-shadow:
		0 12px 32px rgba(0, 0, 0, 0.35),
		0 0 0 1px rgba(229, 180, 26, 0.35);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mk-chatbot-launcher:hover {
	transform: scale(1.06);
	box-shadow:
		0 16px 40px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(229, 180, 26, 0.55);
}

.mk-chatbot-launcher-glow {
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: rgba(229, 180, 26, 0.25);
	filter: blur(10px);
	z-index: -1;
	animation: mkChatGlow 2.4s ease-in-out infinite;
}

@keyframes mkChatGlow {
	0%, 100% { opacity: 0.45; transform: scale(1); }
	50% { opacity: 0.9; transform: scale(1.08); }
}

.mk-chatbot-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	padding: 2px 6px;
	border-radius: 999px;
	background: var(--brand-gold);
	color: #0a0a0a;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.mk-chatbot-panel {
	width: min(360px, calc(100vw - 28px));
	border-radius: 22px;
	overflow: hidden;
	background: rgba(14, 14, 14, 0.96);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(229, 180, 26, 0.28);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
	display: flex;
	flex-direction: column;
	max-height: min(520px, 70vh);
	transform-origin: bottom right;
	animation: mkChatPanelIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mkChatPanelIn {
	from { opacity: 0; transform: translateY(16px) scale(0.96); }
	to { opacity: 1; transform: none; }
}

.mk-chatbot-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: linear-gradient(90deg, rgba(229, 180, 26, 0.12), transparent);
}

.mk-chatbot-avatar {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #111;
	border: 1px solid rgba(229, 180, 26, 0.35);
	color: var(--brand-gold);
}

.mk-chatbot-meta {
	flex: 1;
	min-width: 0;
}

.mk-chatbot-meta strong {
	display: block;
	color: #fff;
	font-size: 0.95rem;
}

.mk-chatbot-meta em {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-style: normal;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.55);
}

.mk-chatbot-close {
	border: none;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.7);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
}

.mk-chatbot-messages {
	flex: 1;
	overflow-y: auto;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 180px;
}

.mk-bot-msg,
.mk-user-msg {
	max-width: 88%;
	padding: 11px 13px;
	border-radius: 14px;
	font-size: 0.88rem;
	line-height: 1.45;
	animation: mkChatMsgIn 0.35s ease;
}

@keyframes mkChatMsgIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: none; }
}

.mk-bot-msg {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.92);
	border-bottom-left-radius: 4px;
}

.mk-user-msg {
	align-self: flex-end;
	background: rgba(229, 180, 26, 0.2);
	border: 1px solid rgba(229, 180, 26, 0.35);
	color: #fff;
	border-bottom-right-radius: 4px;
}

.mk-bot-typing {
	display: inline-flex;
	gap: 4px;
	align-items: center;
	padding: 12px 14px;
}

.mk-bot-typing span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	animation: mkTyping 1s ease-in-out infinite;
}

.mk-bot-typing span:nth-child(2) { animation-delay: 0.15s; }
.mk-bot-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes mkTyping {
	0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
	40% { transform: translateY(-4px); opacity: 1; }
}

.mk-chatbot-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 14px 10px;
}

.mk-chatbot-quick button {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.72rem;
	font-weight: 600;
	padding: 7px 10px;
	border-radius: 999px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.mk-chatbot-quick button:hover {
	border-color: rgba(229, 180, 26, 0.45);
	background: rgba(229, 180, 26, 0.1);
}

.mk-chatbot-form {
	display: flex;
	gap: 8px;
	padding: 12px 14px 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-chatbot-form input {
	flex: 1;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	border-radius: 999px;
	padding: 11px 14px;
	color: #fff;
	font-size: 0.88rem;
	outline: none;
}

.mk-chatbot-form input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.mk-chatbot-form input:focus {
	border-color: rgba(229, 180, 26, 0.45);
}

.mk-chatbot-form button {
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: var(--brand-gold);
	color: #0a0a0a;
	cursor: pointer;
}

.mk-chatbot.is-open .mk-chatbot-launcher i {
	transform: scale(0.9);
}

@media (max-width: 575px) {
	.mk-chatbot {
		right: 14px;
		bottom: 14px;
	}
}

#chrome-trust {
	scroll-margin-top: 88px;
}
