/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: GeneratePress Child Theme
Author: Your Name
Template: generatepress
Version: 1.0.0
*/

/* Your custom CSS below */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

:root {
  --primary-color: #030303;
  --secondary-color: #D9B65F;
  --white-color: #fff;
  --text-color: #C9C9D2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Fraunces", serif !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background:var(--primary-color);
  color:var(--white-color) !important;
}

body:not(.wp-admin) {
    background: #000;
}

.editor-styles-wrapper {
	background: #fff !important;
	color: #111 !important;
}

.editor-styles-wrapper .wp-block {
	color: #111;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a {
  margin: 0;
}

p, a, ul,li {
	font-family: "Space Grotesk", sans-serif !important;
}

section {
  scroll-margin-top: 70px;
}

.site-content {
  display: block;
}

.site-content .content-area {
  width: 100%;
  max-width: 100%;
}

.site-main {
  margin: 0 !important;
}

.container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 15px;
}

.container.grid-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.entry-header {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-template-default .entry-header {
  display:none !important;
}

#right-sidebar {
  display: none;
}

p {
	font-size:18px;
	line-height:1.6;
	font-weight:400;
	color:var(--text-color);
}

h2 {
	font-size: 48px;
	font-weight: 600;
	line-height: 1.1;
	color:var(--white-color);
}

h2 span {
	background: linear-gradient(90deg, #F0D98C 0%, #fff 50%, #C9A227 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h1 {
	font-size:60px;
	font-weight:700;
	line-height:1.2;
	color:var(--white-color);
}

h1 span {
    background: linear-gradient(90deg,#F0D98C 0%,#fff 50%,#C9A227 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h3 {
	color: var(--white-color);
	font-size: 24px;
	line-height: 1.2;
}

.main-navigation .main-nav ul li a {
	line-height:40px !important;
}

.main-navigation ul ul {
	display: block;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
	float: left;
	position: absolute;
	left: -99999px;
	opacity: 0;
	z-index: 99999;
	width: 240px !important;
	text-align: left;
	top: auto;
	transition: opacity 80ms linear;
	transition-delay: 0s;
	pointer-events: none;
	height: 0;
	overflow: hidden;
	background-color: #fffffff0 !important;
	color: var(--primary-color);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	padding:10px;
}

header #menu-item-65-sub-menu li a {
	line-height:20px !important;
	padding:7px 10px !important;
}

.main-navigation ul ul li a:hover {
	color: var(--primary-color) !important;
}

/* banner css start */

.banner-cstm-wrap {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 30px 0;
	background:
		radial-gradient(
			ellipse 65% 55% at 50% 35%,
			rgba(217, 182, 95, 0.16) 0%,
			rgba(217, 182, 95, 0.08) 32%,
			rgba(217, 182, 95, 0.03) 55%,
			transparent 75%
		),
		var(--primary-color);
}

.banner-cstm-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(
			rgba(255,255,255,0.025) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255,255,255,0.025) 1px,
			transparent 1px
		);
	background-size: 80px 80px;
	-webkit-mask-image: radial-gradient(
		ellipse at center,
		black 0%,
		transparent 75%
	);
	mask-image: radial-gradient(
		ellipse at center,
		black 0%,
		transparent 75%
	);
}

.banner-cstm-wrap::after {
	content: "";
	position: absolute;
	width: 700px;
	height: 500px;
	left: 50%;
	top: 35%;
	transform: translate(-50%, -50%);
	background: radial-gradient(
		ellipse,
		rgba(217, 182, 95, 0.14) 0%,
		rgba(217, 182, 95, 0.06) 35%,
		transparent 72%
	);
	filter: blur(25px);
	pointer-events: none;
	z-index: 0;
}

.banner-cstm-wrap .banner-dots {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.banner-cstm-wrap .banner-dots span {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--secondary-color);
	box-shadow: 0 0 6px rgba(217, 182, 95, 0.6);
	opacity: .35;
	animation: bannerDotFloat 6s ease-in-out infinite;
}

@keyframes bannerDotFloat {
	0%, 100% { transform: translateY(0) scale(1); opacity: .3; }
	50%      { transform: translateY(-14px) scale(1.25); opacity: .85; }
}

.banner-cstm-wrap .banner-tagline {
    position: relative;
    z-index: 1;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--text-color);
    width: max-content;
    margin: 0 auto;
    border-radius: 20px;
}

.banner-cstm-wrap .banner-cstm-content {
	position: relative;
	z-index: 1;
	display:flex;
	flex-direction:column;
	gap:20px;
	text-align:center;
	justify-content:center;
	max-width:950px;
	margin:0 auto;
	padding: 0 20px;
}

.banner-cstm-wrap .banner-button-group {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:15px;
}

.banner-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.banner-tagline .dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 var(--secondary-color);
}

.agency-trust-bar {
	width: 100%;
	overflow: hidden;
	background: #050505;
	border-top: 1px solid rgba(255,255,255,0.04);
	border-bottom: 1px solid rgba(255,255,255,0.04);
	padding: 12px 0;
	position: relative;
	z-index: 1;
}

.agency-trust-track {
	display: flex;
	width: max-content;
	align-items: center;
	animation: agencyTrustScroll 28s linear infinite;
}

.agency-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-right: 55px;
	white-space: nowrap;

	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.2px;
	color: #777;
}

.trust-check {
	color: #f4c542;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

@keyframes agencyTrustScroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.agency-trust-bar:hover .agency-trust-track {
	animation-play-state: paused;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--secondary-color);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 6px transparent;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent;
    }
}

.btn-cstm {
	padding:15px 30px;
	font-size:16px;
	font-weight:500;
	color:var(--text-color);
	border-radius:100px;
	transition:0.4s all ease-in-out;
	margin-top:10px;
}

.primary-cstm {
    background: linear-gradient(90deg, #D8B84C 0%, #E8D27D 50%, #B28A16 100%);
    border: 1px solid #C9A227;
    color: var(--primary-color);
}

.primary-cstm:hover {
/* 	background-color:transparent;
	border:1px solid #373535; */
	transform:translateY(-4px);
	color: var(--primary-color);
}

.secondary-cstm{
	background-color:transparent;
	border:1px solid #373535;
}

.secondary-cstm:hover {
/* 	background-color:var(--secondary-color);
	border:1px solid var(--secondary-color);
	color:var(--primary-color); */
	transform:translateY(-4px);
}

#menu-main-menu > li:last-child {
	margin-left: 10px;
}

#menu-main-menu > li:last-child > a {
	background: linear-gradient(90deg, #D8B84C 0%, #E8D27D 50%, #B28A16 100%);
	border: 1px solid #C9A227;
	color: var(--primary-color) !important;
	padding: 12px 28px !important;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 500;
	line-height: normal !important;
	transition: 0.4s all ease-in-out;
}

#menu-main-menu > li:last-child > a:hover {
	transform: translateY(-4px);
	color: var(--primary-color) !important;
}

.about-company-wrap {
	width: 100%;
	background: #050505;
	padding: 50px 0;
}

.about-company-grid {
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 50px;
}

.about-company-image {
	width: 100%;
	max-width:100%;
	overflow: hidden;
	border-radius: 8px;
}

.about-company-image img {
	width: 100%;
	height: 620px;
	display: block;
	object-fit: cover;
}

.about-company-content {
	max-width: 600px;
}

.about-company-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	color: #f4c542;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.about-company-dot {
	font-size: 20px;
	line-height: 1;
}

.about-company-content h2 {
	margin: 0 0 25px;
}

.about-company-content p {
	margin: 0 0 18px;
	color: #999;
	font-size: 17px;
	line-height: 1.8;
}

.about-company-name {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 32px;
	padding-top: 25px;
	border-top: 1px solid rgba(255,255,255,0.12);
}

.about-company-name strong {
	color: #f5f5f5;
	font-size: 18px;
	font-weight: 600;
}

.about-company-name span {
	color: #f4c542;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.services-offer-wrap {
	position: relative;
	overflow: hidden;
	padding: 11px 0;
	background: #050505;
	color: #fff;
}

.services-head {
	max-width: 760px;
	margin: 0 auto 70px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.services-kicker {
	display: inline-block;
	margin-bottom: 18px;
	color: #f4c542;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.services-head h2 {
	margin: 0 0 24px;
}

.services-head h2 span {
	display: block;
}

.services-head p {
	max-width: 650px;
	margin: 0 auto;
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.8;
}

.services-glow {
	position: absolute;
	pointer-events: none;
}

.services-glow-one {
	width: 460px;
	height: 120px;
	right: -6%;
	top: 10%;
	transform: rotate(14deg);
}

.services-glow-two {
	width: 300px;
	height: 80px;
	left: -3%;
	bottom: 8%;
	transform: rotate(-12deg);
}

.services-glow div {
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(240,217,140,.07),
		transparent
	);
}

.services-orbit {
	position: relative;
	width: 620px;
	height: 620px;
	margin: 0 auto;
}

.services-ring {
	position: absolute;
	left: 50%;
	top: 50%;
	border: 1px solid rgba(244,197,66,.12);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.services-ring-one {
	width: 250px;
	height: 250px;
	animation: servicesSpin 20s linear infinite;
}

.services-ring-two {
	width: 410px;
	height: 410px;
	animation: servicesSpin 30s linear infinite reverse;
}

.services-ring-three {
	width: 570px;
	height: 570px;
	animation: servicesSpin 40s linear infinite;
}

.services-hub {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 145px;
	height: 145px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(244,197,66,.45);
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(244,197,66,.12),
		#080808 70%
	);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 50px rgba(244,197,66,.08);
	z-index: 4;
}

.services-hub-title {
	color: var(--white-color);
	font-size: 17px;
	font-weight: 600;
}

.services-hub-sub {
	margin-top: 3px;
	color: var(--text-color);
	font-size: 11px;
	letter-spacing: .5px;
}

.services-node {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 130px;
	height: 130px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 50%;
	background: rgba(8,8,8,.96);
	cursor: pointer;
	transition:
		border-color .3s ease,
		box-shadow .3s ease;
	z-index: 5;
}

.services-node:hover {
	border-color: rgba(244,197,66,.7);
	box-shadow: 0 0 30px rgba(244,197,66,.12);
}

.services-node.active {
	border-color: #f4c542;
	box-shadow: 0 0 35px rgba(244,197,66,.2);
}

.services-orbit-spin {
	position: absolute;
	inset: 0;
	animation: servicesOrbitSpin 40s linear infinite;
}

.services-orbit-spin:hover {
	/* continuous rehna hai, isliye hover pe pause NAHI hoga */
}

@keyframes servicesOrbitSpin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

.services-node-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	height: 100%;
	animation: servicesOrbitSpinReverse 40s linear infinite;
}

@keyframes servicesOrbitSpinReverse {
	from { transform: rotate(0deg); }
	to   { transform: rotate(-360deg); }
}

.services-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(244,197,66,.1);
	color: #f4c542;
	font-size: 12px;
	font-weight: 700;
}

.services-icon img {
	max-width:24px;
}

.services-name {
	color: #aaa;
	font-size: 11px;
	text-align: center;
	white-space: nowrap;
}

.services-card {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 330px;
	padding: 25px;
	border: 1px solid rgba(244,197,66,.2);
	border-radius: 18px;
	background: rgba(8,8,8,.96);
	box-shadow: 0 20px 70px rgba(0,0,0,.5);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -42%) scale(.92);
	transition: .4s ease;
	z-index: 10;
}

.services-card.show {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.services-close {
	position: absolute;
	top: 12px;
	right: 16px;
	color: #777;
	font-size: 22px;
	cursor: pointer;
}

.services-badge {
	display: inline-block;
	margin-bottom: 15px;
	padding: 6px 10px;
	border-radius: 20px;
	background: rgba(244,197,66,.08);
	color: #f4c542;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.services-card h3 {
	margin: 0 0 12px;
}

.services-card p {
	margin: 0;
	color: #888;
	font-size: 14px;
	line-height: 1.7;
}

.services-metric {
	margin-top: 22px;
}

.services-metric-head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	color: #777;
	font-size: 11px;
}

.services-metric-head span:last-child {
	color: #f4c542;
}

.services-bar {
	width: 100%;
	height: 4px;
	overflow: hidden;
	border-radius: 5px;
	background: rgba(255,255,255,.08);
}

.services-bar i {
	display: block;
	width: 90%;
	height: 100%;
	background: #d9b65f;
}

.services-connect {
	margin-top: 20px;
	margin-bottom: 9px;
	color: #555;
	font-size: 10px;
}

.services-chips {
	display: flex;
	gap: 7px;
}

.services-chips span {
	padding: 5px 9px;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 20px;
	color: #888;
	font-size: 10px;
}

.stats-wrap {
	width: 100%;
	margin-top: 35px;
	padding:20px 0;
	border-top: 1px solid rgba(255,255,255,0.2); 
	border-bottom: 1px solid rgba(255,255,255,0.2);
	position: relative;
	z-index: 1;
}

.stats-list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}

.stats-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	text-align: center;
	gap:5px;
	border-right: 1px solid rgba(255,255,255,0.2);
}

.stats-item:last-child {
	border-right: none;
}

.stats-icon {
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2px;
	font-size: 23px;
	font-weight: 600;
	line-height: 1;
	color: #F4C542;
}

.stats-icon img {
	width:30px;
}

.stats-item strong {
	display: block;
	font-family: inherit;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	 background: linear-gradient(90deg, #F0D98C 0%, #fff 50%, #C9A227 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats-item span {
	display: block;
	margin-top: 5px;
	font-family: inherit;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.4px;
	color: var(--text-color, #555);
}

.services-offer-wrap {
	position: relative;
	overflow: hidden;
	padding: 50px 0 90px;
	background:
		radial-gradient(
			circle 380px at 50% 52%,
			rgba(217, 182, 95, 0.16) 0%,
			rgba(217, 182, 95, 0.09) 28%,
			rgba(217, 182, 95, 0.04) 48%,
			transparent 75%
		),
		#050505;
	color: #fff;
	isolation: isolate;
}

.services-offer-wrap::before {
	content: "";
	position: absolute;
	width: 1000px;
	height: 1000px;
	left: 50%;
	top: 75%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(217, 182, 95, 0.10) 0%,
		rgba(217, 182, 95, 0.05) 30%,
		rgba(217, 182, 95, 0.02) 50%,
		transparent 72%
	);
	filter: blur(25px);
	pointer-events: none;
	z-index: 0;
}

.services-offer-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		linear-gradient(
			rgba(217, 182, 95, 0.018) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(217, 182, 95, 0.018) 1px,
			transparent 1px
		);
	background-size: 80px 80px;
	-webkit-mask-image: radial-gradient(
		circle at center,
		black 0%,
		transparent 72%
	);
	mask-image: radial-gradient(
		circle at center,
		black 0%,
		transparent 72%
	);
}

.services-offer-wrap .container {
	position: relative;
	z-index: 2;
}

.services-hub {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 145px;
	height: 145px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(217, 182, 95, 0.55);
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(217, 182, 95, 0.22) 0%,
			rgba(217, 182, 95, 0.08) 35%,
			#080808 72%
		);
	transform: translate(-50%, -50%);
	box-shadow:
		0 0 35px rgba(217, 182, 95, 0.12),
		0 0 90px rgba(217, 182, 95, 0.06);
	z-index: 4;
}



@keyframes servicesSpin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* =========================================
   OUR PROJECTS MARQUEE
========================================= */

.marquee-section{
	background:#050505;
	padding:0;
	overflow:hidden;
}

.marquee-row{
	position:relative;
	width:100%;
	overflow:hidden;
	padding:10px 0;

	-webkit-mask-image:linear-gradient(
		to right,
		transparent 0,
		#000 6%,
		#000 94%,
		transparent 100%
	);
	mask-image:linear-gradient(
		to right,
		transparent 0,
		#000 6%,
		#000 94%,
		transparent 100%
	);
}

.our-projects-wrap {
	padding:50px 0;
}

.our-projects-wrap .services-head {
	margin-bottom:40px !important;
}

.marquee-track{
	display:flex;
	width:max-content;
	gap:15px;
}

.marquee-set{
	display:flex;
	gap:var(--gap, 15px);
	flex-shrink:0;
}

.marquee-row.left .marquee-track{
	animation:scroll-left var(--duration, 35s) linear infinite;
}

.marquee-row.right .marquee-track{
	animation:scroll-right var(--duration, 35s) linear infinite;
}

.marquee-section:hover .marquee-track{
	animation-play-state:paused;
}

@keyframes scroll-left{
	from{ transform:translate3d(0,0,0); }
	to{ transform:translate3d(-50%,0,0); }
}

@keyframes scroll-right{
	from{ transform:translate3d(-50%,0,0); }
	to{ transform:translate3d(0,0,0); }
}

.marquee-section .card{
	position:relative;
	flex:0 0 auto;
	width:350px;
	height:230px;
	border-radius:8px;
	overflow:hidden;
	display:block;
	text-decoration:none;
	background:#111;
	border:1px solid rgba(255,255,255,.14);
	transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.marquee-section .card:hover{
	transform:translateY(-8px);
	border-color:var(--secondary-color);
	box-shadow:0 0 0 1px var(--secondary-color), 0 25px 45px rgba(0,0,0,.45);
}

.marquee-section .card img{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .5s ease;
}

/* .marquee-section .card:hover img{
	transform:scale(1.05);
} */

.marquee-track{
	display:flex;
	gap: var(--gap, 20px);
	width:max-content;
}

.marquee-row.left .marquee-track{
	animation: scroll-left var(--duration, 35s) linear infinite;
}

.marquee-row.right .marquee-track{
	animation: scroll-right var(--duration, 35s) linear infinite;
}

@keyframes scroll-left{
	from{ transform:translate3d(0,0,0); }
	to{ transform:translate3d(calc(-1 * var(--loop-width)), 0, 0); }
}

@keyframes scroll-right{
	from{ transform:translate3d(calc(-1 * var(--loop-width)), 0, 0); }
	to{ transform:translate3d(0,0,0); }
}

.card-overlay{
	position:absolute;
	inset:0;
	background:linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.8) 100%);
	pointer-events:none;
}

.card-info{
	position:absolute;
	left:18px;
	bottom:16px;
	right:18px;
	display:flex;
	flex-direction:column;
	gap:4px;
	z-index:2;
}

.card-title{
	color:var(--white-color);
	font-size:19px;
	font-weight:600;
	line-height:1.2;
}

.card-tag{
	color:var(--text-color);
	font-size:10px;
	font-weight:500;
	letter-spacing:1.5px;
	text-transform:uppercase;
}

.card-live{
	position:absolute;
	top:14px;
	right:14px;
	z-index:3;
	display:inline-flex;
	align-items:center;
	gap:6px;
	padding:8px 14px;
	border-radius:100px;
	background:rgba(8,8,8,.65);
	border:1px solid rgba(255,255,255,.25);
	backdrop-filter:blur(6px);
	color:var(--white-color);
	font-size:12px;
	font-weight:500;
	letter-spacing:.3px;
	opacity:0;
	transform:translateY(-6px);
	transition:opacity .3s ease, transform .3s ease, border-color .3s ease, background .3s ease;
	pointer-events:none;
}

.marquee-section .card:hover .card-live{
	opacity:1;
	transform:translateY(0);
	border-color:var(--secondary-color);
	background:rgba(8,8,8,.85);
}

.card-live svg{
	transition:transform .3s ease;
}

.marquee-section .card:hover .card-live svg{
	transform:translate(2px,-2px);
}


.our-reviews-wrap {
	width: 100%;
	overflow: hidden;
	background: var(--primary-color);
	padding: 50px 0;
}

.our-reviews-wrap .reviews-detail {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:5px;
	margin-bottom:10px;
}

.reviews-detail span {
	font-size:11px;
	color: var(--primary-color);
	padding:8px 10px;
	background-color:var(--secondary-color);
	border-radius:100px;
}

.reviews-head {
	max-width: 760px;
	margin: 0 auto 50px;
	text-align: center;
}

.reviews-kicker {
	display: inline-block;
	margin-bottom: 18px;
	color: #f4c542;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.reviews-head h2 {
	margin: 0 0 24px;
}

.reviews-head p {
	max-width: 650px;
	margin: 0 auto;
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.8;
}

.reviews-row {
	position: relative;
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.reviews-track {
	display: flex;
	width: max-content;
	gap: 12px;
	animation: reviewsScroll 45s linear infinite;
}

.reviews-row:hover .reviews-track {
	animation-play-state: paused;
}

.reviews-set {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

@keyframes reviewsScroll {
	from { transform: translate3d(0,0,0); }
	to   { transform: translate3d(-50%,0,0); }
}

.review-card {
	flex: 0 0 auto;
	width: 320px;
	padding: 25px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 12px;
	background: #0a0a0a;
	transition: border-color .35s ease, transform .35s ease;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}

.review-card:hover {
	border-color: var(--secondary-color);
	box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(217,182,95,.25), 0 0 30px rgba(217,182,95,.15);
}

.review-stars {
	color: var(--secondary-color);
	font-size: 16px;
	letter-spacing: 3px;
}

.review-text {
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 22px;
}

.review-divider {
	height: 1px;
	background: rgba(255,255,255,.14);
	margin-bottom: 18px;
}

.review-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.review-thumb {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.review-details {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.review-name {
	color: var(--white-color);
	font-size: 15px;
	font-weight: 600;
}

.review-location {
	color: var(--text-color);
	font-size: 13px;
}

.reviews-rating {
	margin-top: 40px;
	text-align: center;
}

.reviews-rating-text {
	color: var(--text-color);
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 10px;
}

.reviews-rating-stars {
	color: var(--secondary-color);
	font-size: 22px;
	letter-spacing: 4px;
}


.why-choose-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 60px 0;
	background: #050505;
	isolation: isolate;
}

.why-choose-wrap::before {
	content: "";
	position: absolute;
	width: 700px;
	height: 500px;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -50%);
	background: radial-gradient(
		ellipse,
		rgba(217, 182, 95, 0.12) 0%,
		rgba(217, 182, 95, 0.05) 40%,
		transparent 72%
	);
	filter: blur(25px);
	pointer-events: none;
	z-index: 0;
}

.why-choose-wrap .container {
	position: relative;
	z-index: 1;
}

.why-choose-head {
	max-width: 760px;
	margin: 0 auto 60px;
	text-align: center;
}

.why-choose-kicker {
	display: inline-block;
	margin-bottom: 18px;
	color: #f4c542;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.why-choose-head h2 {
	margin: 0 0 24px;
}

.why-choose-head p {
	max-width: 650px;
	margin: 0 auto;
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.8;
}

.why-choose-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.why-choose-card {
	position: relative;
	padding: 35px 30px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 14px;
	background: #0a0a0a;
	transition: border-color .35s ease, box-shadow .35s ease;
}

.why-choose-card:hover {
	border-color: var(--secondary-color);
	box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(217,182,95,.25), 0 0 30px rgba(217,182,95,.15);
}

.why-choose-number {
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--secondary-color);
}

.why-choose-card h3 {
	margin: 0 0 16px;
}

.why-choose-card p {
	margin: 0;
	color: #999;
	font-size: 15px;
	line-height: 1.8;
}

.faq-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 50px 0;
	background: #050505;
	isolation: isolate;
}

.faq-wrap::before {
	content: "";
	position: absolute;
	width: 700px;
	height: 500px;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -50%);
	background: radial-gradient(
		ellipse,
		rgba(217, 182, 95, 0.12) 0%,
		rgba(217, 182, 95, 0.05) 40%,
		transparent 72%
	);
	filter: blur(25px);
	pointer-events: none;
	z-index: 0;
}

.faq-wrap .container {
	position: relative;
	z-index: 1;
	max-width: 900px;
}

.faq-head {
	max-width: 760px;
	margin: 0 auto 50px;
	text-align: center;
}

.faq-kicker {
	display: inline-block;
	margin-bottom: 18px;
	color: #f4c542;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.faq-head h2 {
	margin: 0 0 24px;
}

.faq-head p {
	max-width: 650px;
	margin: 0 auto;
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.8;
}

.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	border-bottom: 1px solid rgba(255,255,255,.12);
}

.faq-item:first-child {
	border-top: 1px solid rgba(255,255,255,.12);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 5px;
	cursor: pointer;
	color: var(--white-color);
	font-size: 17px;
	font-weight: 600;
	transition: color .3s ease;
}

.faq-question:hover {
	color: var(--secondary-color);
}

.faq-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(217,182,95,.4);
	border-radius: 50%;
	transition: background .35s ease, border-color .35s ease;
}

.faq-icon img {
	width: 12px;
	height: 12px;
	display: block;
	object-fit: contain;
}

.faq-item.active .faq-icon {
	background: rgba(217,182,95,.1);
	border-color: var(--secondary-color);
}

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

.faq-item.active .faq-answer {
	max-height: 300px;
	padding-bottom: 24px;
}

.faq-answer p {
	margin: 0;
	padding-right: 40px;
	color: #999;
	font-size: 15px;
	line-height: 1.8;
}

.footer-widgets-container {
    padding: 40px 20px !important;
}

.inside-footer-widgets {
	display: grid;
    grid-template-columns: 3fr 2fr 2fr 2fr;
    gap: 30px;
}

.site-footer .footer-widgets-container .inner-padding {
    padding: 0 0 0 20px;
}

.site-footer .footer-widgets-container .inside-footer-widgets {
	margin-left:0 !important;
}

.footer-info-1 img {
	max-width:160px;
}

.footer-info-1 p {
	font-size:14px;
	margin-top:20px;
}

.inside-footer-widgets a {
	font-size:14px;
	opacity:0.9;
}

.contact-info a {
	font-size:12px;
	opacity:0.9;
}


.inside-footer-widgets a:hover {
	opacity:1;
}

.inside-footer-widgets .widget-title {
	margin-bottom:20px;
}

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

.contact-info-main img {
	max-width:20px;
}

.site-info .copyright-bar {
    font-size: 0;
}

.site-info .copyright {
    font-size: 14px;
}

.designed-by {
	font-size:14px;
}

.site-info {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-info {
	display: flex;
    flex-direction: column;
    gap: 16px;
}


.review-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	margin-bottom: 0;
}

.review-text.is-expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.review-toggle {
    display: none;
    margin: 2px 0 15px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #d8ad45;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
}

.review-toggle.is-visible {
	display: block;
}

.review-toggle:hover {
	text-decoration: underline;
	background:transparent;
}

/* =========================================
   OUR BLOGS SECTION
========================================= */

.our-blogs-wrap {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 60px 0;
	background: #050505;
}

.our-blogs-wrap::before {
	content: "";
	position: absolute;
	width: 700px;
	height: 500px;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -50%);
	background: radial-gradient(
		ellipse,
		rgba(217, 182, 95, 0.12) 0%,
		rgba(217, 182, 95, 0.05) 40%,
		transparent 72%
	);
	filter: blur(25px);
	pointer-events: none;
	z-index: 0;
}

.our-blogs-wrap .container {
	position: relative;
	z-index: 1;
}

.blogs-top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 50px;
}

.blogs-title-wrap {
	max-width: 700px;
}

.blogs-title-wrap h2 {
	margin: 0 0 15px;
}

.blogs-subtitle {
	margin: 0;
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.8;
}

.blogs-view-all {
	flex-shrink: 0;
	margin-top: 0;
}

.blogs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.blog-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 14px;
	background: #0a0a0a;
	transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.blog-card:hover {
	transform: translateY(-6px);
	border-color: var(--secondary-color);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .35), 0 0 0 1px rgba(217, 182, 95, .25), 0 0 30px rgba(217, 182, 95, .15);
}

.blog-card-img {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.blog-card-img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .5s ease;
}

.blog-card:hover .blog-card-img img {
	transform: scale(1.05);
}

.blog-card-tag {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 6px 14px;
	background: var(--secondary-color);
	color: var(--primary-color);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.blog-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 15px;
	padding: 25px;
}

.blog-card-title {
	color: var(--white-color);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
}

.blog-card-excerpt {
	flex: 1;
	margin: 0;
	color: #999;
	font-size: 15px;
	line-height: 1.7;
}

.blog-card-btn {
	align-self: flex-start;
	margin-top: 0;
	padding: 12px 24px;
	font-size: 14px;
}

.blogs-empty {
	color: var(--text-color);
	text-align: center;
}

.page-header, .sidebar .widget, .site-main>* {
    margin-bottom: 0 !important;
}


@media (max-width:1024px) {
	h1 {
		font-size:44px;
	}
	
	h2 {
		font-size: 36px;
	}
	
	.why-choose-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.inside-footer-widgets {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	
	.our-projects-wrap {
    padding: 30px 0;
}
	
	.our-reviews-wrap {
    padding: 30px 0;
}
	
}

@media (max-width:768px) {
	
	.site-header .header-image {
		max-width:130px;
		padding:5px 0;
	}
	
	
	  .main-navigation .main-nav ul li a {
        display: inline-block;
    }

    .site-header .inside-header {
        padding: 8px 15px;
    }

    .main-navigation.toggled .main-nav li {
        padding: 0;
        padding-bottom: 10px;
    }

    .main-navigation.toggled .main-nav li:last-child {
        padding: 0;
    }

    .has-inline-mobile-toggle #site-navigation.toggled {
        margin-top: 0;
    }

    .main-nav ul li {
        opacity: 0;
        transform: translateY(40px);
        animation: none;
    }

    #site-navigation.toggled .main-nav ul li {
        animation: menuSlideUp .5s ease forwards;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(1) {
        animation-delay: .05s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(2) {
        animation-delay: .10s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(3) {
        animation-delay: .15s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(4) {
        animation-delay: .20s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(5) {
        animation-delay: .25s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(6) {
        animation-delay: .30s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(7) {
        animation-delay: .35s;
    }

    .main-navigation .main-nav ul li {
        padding: 0;
    }

    .main-navigation .main-nav ul li a {
        display: block;
                padding: 12px 10px 10px 0;
        width: 100%;
    }

    @keyframes menuSlideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
	
	.main-navigation .main-nav ul li a {
    line-height: 10px !important;
}
	
	.main-navigation.toggled .main-nav ul ul.toggled-on {
		width:100% !important;
		margin:10px 0;
	}
	
	.gp-icon svg {
    height: 1.5em;
    width: 1.5em;
    top: .125em;
    position: relative;
    fill: var(--secondary-color);
}
	
	.agency-trust-bar {
		padding: 10px 0;
	}

	.agency-trust-item {
		font-size: 13px;
		margin-right: 40px;
	}

	.trust-check {
		font-size: 16px;
	}

	.agency-trust-track {
		animation-duration: 22s;
	}
	
	.about-company-wrap {
		padding: 30px 0;
	}

	.about-company-grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.about-company-image img {
		height: 480px;
	}

	.about-company-content p {
		font-size: 15px;
		line-height: 1.7;
	}

	.about-company-label {
		font-size: 11px;
		letter-spacing: 2px;
	}
	
	.services-offer-wrap {
		padding: 40px 0;
	}
	
	p {
    font-size: 13px;
    line-height: 1.6;
	}

	.services-head {
		margin-bottom: 40px;
	}

	.services-head p {
		font-size: 14px;
	}

	.services-orbit {
		width: 340px;
		height: 500px;
	}

	.services-ring-one {
		width: 180px;
		height: 180px;
	}

	.services-ring-two {
		width: 280px;
		height: 280px;
	}

	.services-ring-three {
		width: 330px;
		height: 330px;
	}

	.services-hub {
		width: 115px;
		height: 115px;
	}

	.services-node {
		width: 78px;
		height: 78px;
	}

	.services-icon {
		width: 28px;
		height: 28px;
		font-size: 9px;
	}

	.services-name {
		font-size: 7px;
	}
	
	.services-hub-title {
		font-size:11px;
	}
	
	.services-hub-sub {
    font-size: 9px;
}

	.services-card {
		width: 285px;
	}
	
	.stats-wrap {
		margin-top: 25px;
	}

	.stats-list {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.stats-icon img {
    width: 20px;
}

	.stats-item {
		padding: 10px 0;
	}

	.stats-item:nth-child(2),
	.stats-item:nth-child(4),
	.stats-item:nth-child(6) {
		border-right:none !important;
	}

	.stats-item:nth-child(3)::after {
		display: block;
	}

	.stats-item:nth-child(4),
	.stats-item:nth-child(5) {
		border-top: 1px solid rgba(0, 0, 0, 0.12);
	}

/* 	.stats-item:last-child {
		grid-column: 1 / -1;
	} */

	.stats-item:last-child::after {
		display: none;
	}
	
	#menu-main-menu > li:last-child > a {
		padding: 10px 20px !important;
		font-size: 14px;
		width:max-content;
	}
	
	#site-navigation.toggled .main-nav ul li:nth-child(7) {
		margin:0 !important;
	}
	
	h1 {
		font-size:32px;
	}
	
	h2 {
		font-size: 24px;
	}
	
	h3 {
		font-size:18px;
	}
	
	.marquee-section .card{
		width:260px;
		height:170px;
	}
	
	.faq-wrap {
		padding: 40px 0;
	}

	.faq-head {
		margin-bottom: 35px;
	}

	.faq-question {
		font-size: 15px;
		padding: 20px 5px;
	}

	.faq-answer p {
		padding-right: 20px;
		font-size: 14px;
	}
	
	.our-blogs-wrap {
		padding: 40px 0;
	}

	.blogs-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 35px;
	}

	.blogs-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.blog-card-img {
		height: 190px;
	}

	.blog-card-body {
		padding: 20px;
	}
	
	.inside-footer-widgets {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.inside-footer-widgets>div:not(:last-child) {
    	margin-bottom: 10px;
	}
	
	.inside-site-info {
		padding-right: 20px;
        padding-left: 20px;
	}
	
	.footer-widgets-container {
    	padding: 20px !important;
	}
	
	.banner-cstm-wrap .banner-button-group {
   
    gap: 10px;
    flex-direction: column;
}
	.btn-cstm {
    padding: 12px 24px;
    font-size: 12px;
    margin-top: 5px;
}
	
	.stats-item strong {
		font-size:16px;
	}
	
	.stats-item span {
		font-size:9px;
	margin-top:2px;
	}
	
}

@media (max-width:550px) {
	.why-choose-wrap {
		padding: 40px 0;
	}

	.why-choose-head {
		margin-bottom: 40px;
	}

	.why-choose-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.why-choose-card {
		padding: 28px 22px;
	}
}