/* @import url('https://fonts.googleapis.com/css2?family=Fustat:wght@200..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Squada+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


:root {
	--primary-color: #FBAD1C;
	--white-color: #fff;
	--black-color: #000;
	--body-color: #000000;
	--para-color: #ffffffc3;
	/* --main-font: "Fustat", serif; */
	--main-font: "Manrope", serif;
	--secondary-font: "Squada One", serif;
}



html {
	/* scroll-behavior: smooth; */
	overflow-x: hidden;
}

body {
	font-family: var(--main-font) !important;
	/* overflow-x: hidden !important; */
	background-color: var(--body-color);
}

a {
	text-decoration: none !important;
}

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

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


/* Scrollbar */

::-webkit-scrollbar {
	width: 5px;
	/* Width of the scrollbar */
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 6px;
}

/* Scrollbar Handle Hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--white-color)
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
	background: rgba(214, 214, 214, 0.03);
	border-radius: 6px;
}


/* Scrollbar */

/* To top Button */

#toTopBtn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10;
	display: none;
	/* Hidden by default */
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 50%;
	padding: 15px;
	height: 55px;
	width: 55px;
	cursor: pointer;
	font-size: 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s, transform 0.3s ease;
}

#toTopBtn img {
	transform: rotate(270deg);
	filter: invert(1);
}

#toTopBtn:hover {
	transform: scale(1.1);
	/* Slight zoom effect */
}

/* To top Button */

/* Button start */

.main-button .button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1px;
	border-radius: 4px;
	overflow: hidden;
	text-decoration: none;
	transition: .5s;
	background: linear-gradient(to right, #FBAD1C, #FBAD1C);
	border-radius: 100px;
}

.main-button .button__wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 25px;
	height: 45px;
	border-radius: 4px;
	background: var(--body-color);
	transition: .5s;
	border-radius: 100px;
}

.main-button .button:hover .button__text {
	color: var(--body-color);
}

.main-button .button__text {
	position: relative;
	z-index: 2;
	font-family: sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: var(--white-color);
	transition: 300ms ease;
}

.main-button .button__spotlight {
	position: absolute;
	z-index: 1;
	height: 10px;
	width: 10px;
	opacity: 1;
	border-radius: 50%;
	background: linear-gradient(to right, #fbad1c, #fbad1c);
	inset: 0;
	top: 50%;
	transform: scale(0);
}

.button-arrow {
	margin-left: 5px;
	width: 15px;
	transition: .5s;
	transform: rotate(315deg);
}

.main-button .button:hover .button-arrow {
	filter: invert(1);
	transition: .5s;
	transform: none;
}

.cst-box-2 {
	display: flex;
	align-items: center;
	gap: 30px;
}


/* Button end*/


/* mousepointer */



/* navbar */
.nav-box .main-button {
	display: block !important;
}

.sm-show-btn {
	display: none !important;
}


/* menu */

.menu-toggle {
	z-index: 25;
	width: 40px;
	height: 40px;
	cursor: pointer;
	position: relative;
}

.hamburger,
.cross {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.menu-icon-w-2 {
	width: 15px !important;
}

.menu-icon-w {
	width: 20px !important
}

.hamburger {
	span {
		display: block;
		width: 25px;
		height: 3px;
		margin-bottom: 3px;
		border-radius: 50px;
		overflow: hidden;
		position: relative;

		&:last-child {
			margin: 0;
		}

		&:before,
		&:after {
			content: "";
			position: absolute;
			width: 105%;
			height: 100%;
			background-color: var(--white-color);
			transform: translateX(-200%);
			transition: transform ease 300ms;
		}

		&:after {
			transform: translateX(0);
		}

		&:nth-child(2):before,
		&:nth-child(2):after {
			transition-delay: 75ms;
		}

		&:last-child:before,
		&:last-child:after {
			transition-delay: 150ms;
		}

		.menu-toggle:hover &:before {
			transform: translateX(0);
		}

		.menu-toggle:hover &:after {
			transform: translateX(200%);
		}

		.menu-toggle.active &:before {
			transform: translateX(100%);
		}

		.menu-toggle.active &:after {
			transform: translateX(200%);
		}
	}
}


.cross {
	span {
		display: block;
		width: 25px;
		height: 3px;
		border-radius: 50px;
		background-color: var(--white-color);
		transform: translateY(50%) rotate(45deg) scaleX(0);
		transition: transform ease 200ms;

		&:last-child {
			transform: translateY(-50%) rotate(-45deg) scaleX(0);
		}

		.menu-toggle.active & {
			transition-delay: 450ms;
			transform: translateY(50%) rotate(45deg) scaleX(1);
		}

		.menu-toggle.active &:last-child {
			transform: translateY(-50%) rotate(-45deg) scaleX(1);
		}
	}
}

.nsd-menu-fullscren li {
	margin-bottom: 5px;
}



.nsd-menu-overlay {
	visibility: hidden;
	/* Initially hidden */
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	/* Fade in effect */
}

.nsd-menu-overlay.active {
	visibility: visible;
	opacity: 1;
}

.nsd-menu-overlay {
	display: block;
	width: 100%;
	height: 100vh;
	top: 0;
	text-outline: 0 0 #000;
	position: fixed;
	left: 0;
	z-index: 11;
	padding-top: 140px;
	background: var(--body-color);

	&__content {
		height: 100vh;
		align-items: center;

		&::before {
			content: '';
			display: inline-block;
			height: 100%;
			vertical-align: middle;

		}

		&_part {
			vertical-align: middle;

			&__left {
				.fullscreen-single__item {
					opacity: 0;
					font-size: 54px;
					line-height: 80px;
					font-weight: 700;
					position: relative;
					vertical-align: top;
					display: block;

					.sub-menu {
						display: none;

						&__inner {
							position: relative;
							display: inline-block;
							vertical-align: middle;
							margin: 7px 0;
							font-size: 0.5em;
							line-height: 1.3em;
							font-weight: 400;
							color: #3d3c3c;

							&:not(:last-child) {
								padding-right: 15px;
								border-right: 1px solid
							}
						}
					}

				}
			}

			&__right {
				opacity: 0;

				& .nsd-menu__intro {
					text-align: center;
					margin: 20px 20px 60px 20px;

					&-title {
						text-transform: uppercase;
						font-size: 3.2em;
						padding-bottom: 1rem;

						@media (min-width:980px) {
							font-size: 4.2em;
						}
					}
				}
			}
		}
	}

}

.nsd-menu-fullscren {
	padding: 0px;
	margin: 0px;
}

.nsd-menu-overlay-in{
	height: 75vh;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.nsd-menu-fullscren .__active {
	background: var(--primary-color);
	background-clip: text;
	opacity: 1;
}

.nsd-menu-fullscren li a {
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 3px;
	color: #ffffff4f;
	transition: .5s;
	background: linear-gradient(to right, rgb(251 173 28) 50%, rgb(64 64 64) 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all .5s ease-out;
	background-clip: text;
	font-family: var(--secondary-font);
}

.nsd-menu-fullscren li {
	transition: .5s;
	/* width: 100%; */
}


.nsd-menu-fullscren li:hover {
	margin-left: 5px;
	transition: .5s;

}

.nsd-menu-fullscren li a:hover .menu-arrow svg {
	color: var(--primary-color);
	transition: .5s;
}

.nsd-menu-fullscren li:hover a {
	background-position: left bottom;
}

.nsd-menu-fullscren .has-sub .menu-arrow {
	font-size: 20px;
	margin-left: 5px;
	transition: .5s;
}

.nsd-menu-fullscren .sub-menu__inner a {
	font-size: 16px;
	font-weight: 300;
}

.nsd-menu-fullscren .sub-menu__inner {
	position: relative;
	list-style: none;
	margin-bottom: 5px;
}

.nsd-menu-fullscren .sub-menu__inner::before {
	position: absolute;
	top: 8px;
	left: -25px;
	background-image: url(../img/menu-arrow.svg);
	background-repeat: no-repeat;
	content: "";
	background-size: 12px;
	width: 25px;
	height: 25px;
}

.nsd-menu-main {
	position: relative;
	display: flex;
	align-items: center;
}
/*last added*/
.nsd-menu-overlay {
    position: fixed;
    inset: 0;
    overflow-y: hidden; 
    height: 100vh;
}
/* html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
} */
/*end last added*/

.menu-img {
	position: absolute;
	top: 50px;
	right: 150px;
	width: 250px;
}

.no-scroll {
	overflow: hidden;
	height: 100vh;
}

.sub-menu {
	display: none;
	/* Initially hidden */
}

.sub-menu.active {
	display: block;
	/* Show when active class is added */
}

/* menu */

.navbar-main {
	margin-top: 30px;
}

.nav-box {
    backdrop-filter: blur(60px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.27);
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    transition: .5s;
    border-radius: 100px;
}

.logo-width {
	width: 250px;
}

.nav-right-box {
	display: flex;
	align-items: center;
	gap: 10px;
}

#navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 0;
	transition: background-color 0.3s ease;
	z-index: 1000;
}

#navbar.scrolled {
	background-color: var(--body-color);
	border-bottom: 1px solid #ebebeb1d;
	transition: .5s;
}

#navbar.scrolled .nav-box {
	background: transparent;
	border: none;
	transition: .5s;
	margin-top: 0px;
	padding: 0px;

}

/* navbar */


/* banner */

.banner {
	height: 170vh;
	width: 100%;
	background-image: url(../img/banner.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.banner-text h3 {
	color: var(--white-color);
	font-size: 50px;
	font-weight: 600;
}

.banner-text h3 span {
	color: var(--primary-color);
}

.banner-text p {
	color: var(--para-color);
	font-size: 16px;
}

.banner-text {
	text-align: center;
	padding-top: 200px;
}

.banner-text .main-button .animated-button {
	margin: auto;
}

.menu-ab-custom {
	position: relative;
	width: 100%;
}

.nav-bg-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 110px;
	z-index: -1;
	opacity: .5;
}

.slider-section {
	height: 22vh;
	width: 100%;
	position: absolute;
	bottom: 370px;
}

.wheel {
	position: relative;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300vw;
	height: 300vw;
	max-width: 2000px;
	max-height: 2000px;
	left: 50%;
	transform: translateX(-50%);
}


.wheel__card {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 300px;
	height: 350px;
	object-fit: cover;
	cursor: pointer;
	overflow: hidden;
	border-radius: 15px;
	border: 5px solid #fff;
}

.wheel__card img {
	width: 100%;
	pointer-events: none;
	z-index: 999;
	cursor: pointer;
	position: absolute;
	will-change: transform;
	border-radius: 15px;
	height: 100%;
	object-fit: cover;
}

.wheel__card .wheel-title {
	position: absolute;
	color: var(--white-color);
	z-index: 1331;
	opacity: 0;
	bottom: -30px;
	/* Start outside the view */
	text-align: center;
	transition: 0.6s;
	font-size: 20px;
	font-weight: 700;
	background: rgba(0, 0, 0, 0.614);
	padding: 20px 10px;
	width: 100%;
}

.wheel__card:hover .wheel-title {
	opacity: 1;
	bottom: -10px;
	transition: 0.6s;
}


/* banner abstract */

.banner-abstract img {
	width: 130px;
	display: block;
	margin: auto;
}

.banner-abstract {
	position: absolute;
	bottom: 30px;
	width: 100%;
}

.banner-abstract img {
	width: 130px;
	display: block;
	margin: auto;
	animation:
		float 4s ease-in-out infinite,
		rotate 12s linear infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}

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

	to {
		transform: rotate(360deg);
	}
}

/* about */

.about {
	min-height: 500px;
	background-image: url(../img/about-bg.svg);
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}


/*
.marquee-row {
	width: 100%;
	overflow-x: hidden;
	backdrop-filter: blur(110px);
	background: rgb(255 255 255 / 5%);
	border-top: 1px solid rgba(255, 255, 255, 0.27);
	border-bottom: 1px solid rgba(255, 255, 255, 0.27);
	transform: rotate(358deg);
}

.marquee-first {
	margin-top: 50px;
}

.marquee-block {
	position: relative;
	display: flex;
	width: 100%;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	justify-content: space-between;
}

.marquee-item-list {
	display: inline-flex;
	padding: 20px 0px;
	margin: 0;
}

.marquee-item-list li {
	width: 100%;
	list-style: none;
	padding-right: 30px;
	padding-left: 15px;
	font-size: 25px;
	color: var(--white-color);
	white-space: nowrap;
	font-family: 'Ondo DEMO';
	text-transform: uppercase;
}

.marquee-item-list li span img {
	width: 15px;
}

.marquee-item-list li span {
	padding-left: 15px;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
} */

.marquee-row {
	width: 100%;
	overflow: hidden;
	backdrop-filter: blur(110px);
	background: rgb(255 255 255 / 5%);
	border-top: 1px solid rgba(255, 255, 255, 0.27);
	border-bottom: 1px solid rgba(255, 255, 255, 0.27);
	transform: rotate(358deg);
}

.marquee-first {
	margin-top: 50px;
}

.marquee-block {
	position: relative;
	display: flex;
	width: var(--totalWidth, 100%);
	/* <- dynamic width based on content */
	animation: marquee var(--scrollSpeed, 20s) linear infinite;
	align-items: center;
}

.marquee-item-list {
	display: inline-flex;
	padding: 20px 0px;
	margin: 0;
}

.marquee-item-list li {
	list-style: none;
	padding-right: 30px;
	padding-left: 15px;
	font-size: 25px;
	color: var(--white-color);
	white-space: nowrap;
	font-family: 'Ondo DEMO';
	text-transform: uppercase;
	display: flex;
	align-items: center;
}

.marquee-item-list li span img {
	width: 15px;
	margin-left: 10px;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
		/* move half (because cloned) */
	}
}


/* /dwc-section*/

.dwc-section-box img {
	width: 70px;
}

.dwc-section-box {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 15px;
    max-width: 300px;
    margin: 0 auto;
}

.dwc-section-box h5 {
	color: var(--white-color);
	font-size: 35px;
	font-weight: 600;
	margin: 0;
	text-transform: uppercase;
}

.dwc-section-box p {
	text-transform: uppercase;
	color: var(--para-color);
	font-size: 16px;
	margin: 0;
}


.dwc-section {
	margin-top: 100px;
}

.about-st-img {
	height: 500px;
	width: 100%;
	background: #fff   ;
	padding: 2px;
	border-radius: 10px;
}

.about-st-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}

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

.section-title h4 {
	font-size: 16px;
	text-transform: uppercase;
	color: var(--white-color);
	position: relative;
	width: fit-content;
}

.section-title h4::after {
	content: "";
	position: absolute;
	width: 40px;
	top: 7px;
	right: -52px;
	height: 2px;
	background: linear-gradient(90deg, #fbad1c 31.83%, #fbad1c 58.88%, #fbad1c00 100%);
}

.section-title h2 {
	font-size: 50px;
	font-weight: bold;
	position: relative;
	display: inline-block;
}

.email-hosting-container h2 {
	font-size: 28px;
}

.email-hosting-container p {
	font-size: 16px;
}

.section-title h3 {
	font-size: 34px;
	font-weight: bold;
	position: relative;
	display: inline-block;
}



.main-para {
	font-size: 18px;
	color: var(--para-color);
	font-weight: 300;
}
.content-para p {
	font-size: 18px;
	color: var(--para-color);
	font-weight: 300;
}

/* about */

/* clients */

.cleint-main {
	position: relative;
}

.cl-rotating-1 {
	position: absolute;
	width: 250px;
	left: -150px;
	top: 100px;
	z-index: 1;
	opacity: .3;
}

.cleint-section {
	padding: 100px 30px;
}

.logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #222121;
	min-height: 120px;
	transition: all .5s;
	cursor: pointer;
}

.logo-box:hover {
	transition: all .5s;
	transform: translateY(-10px);
	box-shadow: 0px 37px 60px -15px rgba(50, 59, 79, 0.1);
}

.logo-box img {
	width: 150px;
}

.logo-box-st {
	background: var(--body-color) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* clients */

/* why choose */

.why-choose-us {
	position: relative;
	padding-top: 200px;
	overflow: hidden;
}

.ab-why-choose-us {
	overflow: hidden;
}

.why-choose-us::before {
	content: "";
	position: absolute;
	inset-inline-start: -25%;
	inset-block-start: 0;
	width: 150%;
	aspect-ratio: 1;
	border-radius: 50%;
	background-image: linear-gradient(90deg, rgba(77, 137, 249, 0) 12%, #fbad1c30, var(--primary-color)32% 68%, rgba(237, 109, 75, 0) 87%);
	animation: rotate360 10s linear infinite;
	transform-origin: center;
	transform-box: fill-box;
	z-index: -2;
}

.why-choose-us::after {
	content: "";
	position: absolute;
	inset-inline-start: 50%;
	inset-block-start: .5rem;
	transform: translateX(-50%);
	width: 150%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--body-color);
	z-index: -1
}

@keyframes rotate360 {
	0% {
		transform: rotateZ(-80deg)
	}

	50% {
		transform: rotateZ(80deg)
	}

	100% {
		transform: rotateZ(-80deg)
	}
}

.why-choose-img {
	height: 350px;
	width: 65%;
	position: relative;
	border-radius: 20px;
	transform: rotate(345deg);
	margin-left: 35px;
}

.why-choose-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-img::after {
	content: "";
	position: absolute;
	bottom: -30px;
	right: -30px;
	height: 260px;
	width: 250px;
	background: transparent;
	z-index: -1;
	border: 1px solid var(--primary-color);
	border-radius: 20px;
}


.counter {
	font-size: 40px;
	font-weight: bold;
	color: var(--white-color);
	position: relative;
}

.counter::after {
	position: absolute;
	content: "+";
	font-size: 40px;
	color: var(--white-color);
	font-weight: bold;
	top: 0px;
	right: -24px;
}

.counter-no-data::after {
	content: "" !important;
}

.counter-box {
	height: 100px;
	width: 200px;
	background: #ffffff03;
	border: 1px solid rgba(255, 255, 255, 0.27);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}


.counter-box h6 {
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 16px;
	text-align: center;
}

.counter-main {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.ct-m-3 {
	margin: 10px 0px;
}


/* bg */

.parallax-bg {
	position: relative;
	/* display: flex; */
	background-image: url(../img/section-bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 150px 0px 80px 0px;
	background-blend-mode: overlay;
	background-color: #000000e8;
	padding: 80px 0;
}

/* bg */



/* services */


.service-section {
	position: relative;
	padding: 100px 0px;
}

.sr-rotating-2 {
	left: auto;
	right: -150px;
	top: 100px;
}



.service-box {
	display: flex;
	position: relative;
	align-items: center;
	z-index: 1;
	padding: 28px 36px 28px 28px;
	overflow: hidden;
	margin-bottom: 20px;
}

.service-box::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	z-index: -1;
	overflow: hidden;
}

.service-box:nth-child(1) {
  top: 100px;
  position: sticky;
}
.service-box:nth-child(2) {
  top: 120px;
  position: sticky;
}
.service-box:nth-child(3) {
  top: 140px;
  position: sticky;
}
.service-box:nth-child(4) {
  top: 160px;
  position: sticky;
}
.service-box:nth-child(5) {
  top: 180px;
  position: sticky;
}
.service-box:nth-child(6) {
  top: 200px;
  position: sticky;
}
.service-box:nth-child(7) {
  top: 220px;
  position: sticky;
}
.service-box:nth-child(8) {
  top: 240px;
  position: sticky;
}
.service-box:nth-child(9) {
  top: 240px;
  position: sticky;
}
.service-box:nth-child(10) {
  top: 240px;
  position: sticky;
}

.serv-box-left {
	width: 50%;
}

.serv-img {
	height: 250px;
	width: 100%;
	/* clip-path: polygon(14.77% 0, 100% 0, 100% 81.8%, 85.19% 100%, 0 100%, 0 16.11%); */
}

.serv-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.serv-box-right {
	padding: 15px 5px 15px 30px;
	width: 50%;
}

.serv-box-right h4 {
	color: var(--white-color);
	font-size: 22px;
	font-weight: 600;
}

.serv-box-right .divider {
	height: 1px;
	background: #ffffff35;
	margin: 10px 0px;
}

.serv-box-right p {
	color: var(--para-color);
	font-size: 15px;
	font-weight: 300;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	line-height: 1.5;
	max-height: calc(1.5em * 4);
}

.serv-ab-img img {
	position: absolute;
	right: -8px;
	top: 10px;
	width: 30px;
}

.serv-btn {
	width: 60px;
	height: 60px;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: end;
	align-items: end;
	background-color: var(--primary-color);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	padding: 0 6px 7px 0;
	position: absolute;
}


.serv-btn svg {
	transform: rotate(315deg);
	font-size: 20px;
	transition: .5s;
	color: var(--black-color) !important;
}


.service-box:hover .serv-btn svg {
	transform: rotate(360deg);
	transition: .5s;
}


/* tech section */

.tech-main-section {
	padding: 80px 0px;
	width: 100%;
	background-image: url(../img/tech-bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.section-title-center h4 {
	text-align: center !important;
	width: fit-content;
	margin: auto;
	display: block;
}

.section-title-center h4::before {
	content: "";
	position: absolute;
	width: 40px;
	top: 7px;
	left: -52px;
	height: 2px;
	background: linear-gradient(90deg, #fbad1c 31.83%, #fbad1c 58.88%, #fbad1c00 100%);
	transform: rotate(-180deg);
}

.section-title-center {
	text-align: center;
}

.section-title-center .main-button .animated-button {
	margin: auto;
}

/* new */

.tech-main-box {
	position: relative;
	width: 80%;
	min-height: 400px;
	margin: 0 auto;
	margin-top: 70px;
}

.center-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.center-logo img {
	max-width: 250px;

}

.icon-block {
	width: 50px;
	height: 50px;
	position: absolute;
	border-radius: 10%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(60px);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	transition: all 1s;
}

.icon-block:hover {
	transition: all 1s;
	transform: translateY(-10px);
}


.icon-block img {
	margin: 0px auto;
	width: 60%;
	transition: .5s;
	/* animation: Rotate-reverse 20s linear infinite;
	-webkit-animation: Rotate-reverse 20s linear infinite; */

}

.icon-block:hover img {
	-webkit-transform: rotateY(-360deg);
	transition: 1s;

}


.lt-box-1 {
	left: 47%;
	top: -15px;
}

.lt-box-2 {
	left: 48%;
	top: 70px;
}

.lt-box-3 {
	left: 35%;
	top: 40px;
}

.lt-box-4 {
	left: 37%;
	top: 143px;
}

.lt-box-5 {
	left: 24%;
	top: 113px;
}

.lt-box-6 {
	left: 26%;
	top: 217px;
}

.lt-box-7 {
	left: 13%;
	top: 180px;
}

.lt-box-8 {
	left: 46%;
	top: 385px;
}

.lt-box-9 {
	left: 47%;
	bottom: 58px;
}

.lt-box-10 {
	left: 34%;
	top: 270px;
}


.lt-box-11 {
	left: 31%;
	top: 347px;
}

.lt-box-12 {
	left: 20%;
	top: 300px;
}



.lt-box-13 {
	right: 47%;
	top: 5px;
}

.lt-box-14 {
	right: 48%;
	top: 90px;
}

.lt-box-15 {
	right: 35%;
	top: 40px;
}

.lt-box-16 {
	right: 37%;
	top: 143px;
}

.lt-box-17 {
	right: 24%;
	top: 113px;
}

.lt-box-18 {
	right: 26%;
	top: 217px;
}

.lt-box-19 {
	right: 13%;
	top: 180px;
}

.lt-box-20 {
	right: 46%;
	top: 385px;
}

.lt-box-21 {
	right: 47%;
	bottom: 58px;
}

.lt-box-22 {
	right: 36%;
	top: 270px;
}


.lt-box-23 {
	right: 31%;
	top: 347px;
}

.lt-box-24 {
	right: 20%;
	top: 300px;
}


/* footer */

.footer-main-links h5 {
	font-size: 25px;
	font-weight: 600;
	/* text-align: center; */
}

.footer-main-links h5 a {
	color: #523500  !important;
}

.footer-main-links h6 {
	color: var(--primary-color);
	font-size: 22px;
	font-weight: 600;
}

.footer-para {
	font-size: 15px;
	color: #B4B4B4;
	font-weight: 300;
}

.footer-icons {
	display: flex;
	align-items: center;
	gap: 15px;

	svg {
		font-size: 20px;
		color: var(--white-color);
	}
}



.footer-links h6 {
	color: var(--white-color);
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
}

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

.footer-links li {
	font-size: 15px;
	width: fit-content;
	margin-bottom: 10px;
	font-weight: 300;
	position: relative;
}

.footer-links li::before {
	position: absolute;
	bottom: 0px;
	left: 0px;
	content: "";
	height: 1px;
	width: 0%;
	background-color: var(--white-color);
	transition: 1s;
}

.footer-links li:hover:before {
	width: 100%;
	transition: 1s;
	background-color: var(--primary-color);
}

.footer-links ul li:hover a {
	color: var(--primary-color) !important;
	transition: 1s;
}

.footer-links ul li a {
	color: var(--para-color) !important;
	transition: 1s;
}

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

.pr-ct-5 {
	padding-right: 30px;
}

.footer-divider {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0px;
}

.footer-divider ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: inline;
}

.footer-divider li {
	display: inline-flex;
	gap: 10px;
	font-size: 15px;
	font-weight: 300;
	color: var(--white-color);
	padding-left: 10px;
}

.ft-divider {
	border-right: 2px solid var(--white-color);
	padding-left: 10px;
	padding-right: 10px;
}

.footer-btm-links li a {
	color: var(--white-color);
}

.footer-line {
	height: 3px;
	width: 100%;
	background: linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, #ffffff 49.67%, rgb(255 255 255 / 0%) 100%);
	margin-top: 20px;
	margin-bottom: 0px;
}



/* loader */

body.loaded {
	overflow: hidden !important;
	height: 100% !important;
}

.fit-loader {
	width: 50%;
	margin: 0 auto;
	display: block;
}


.loader-wrap {
	position: fixed;
	z-index: 10;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: transparent;
	z-index: 99999999999999;
}

.loader-wrap svg {
	position: absolute;
	top: 0;
	width: 100vw;
	height: 101vh;
	fill: var(--body-color);
}

.loader-wrap .loader-wrap-heading .load-text {
	font-size: 50px;
	font-weight: 500;
	text-transform: uppercase;
	z-index: 20;
	color: var(--primary-color);
}

.load-text span {
	-webkit-animation: loading 1s infinite alternate;
	animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

.load-text span:nth-child(2) {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.load-text span:nth-child(8) {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

.load-text span:nth-child(9) {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.load-text span:nth-child(10) {
	-webkit-animation-delay: 0.10s;
	animation-delay: 0.9s;
}

.load-text span:nth-child(11) {
	-webkit-animation-delay: 0.11s;
	animation-delay: 0.10s;
}

.load-text span:nth-child(12) {
	-webkit-animation-delay: 0.12s;
	animation-delay: 0.11s;
}

.load-text span:nth-child(13) {
	-webkit-animation-delay: 0.13s;
	animation-delay: 0.12s;
}

.loader-wrap-heading {
	position: relative;
	text-align: center;
}

.loader-image {
	width: 100px;
	/* Adjust the size as needed */
	height: auto;
	margin: auto;
	margin-bottom: 5px;
	/* Space between the image and text */
	animation: loaderfadeIn 1s ease-in-out;
}

/* Optional fade-in animation for the image */
@keyframes loaderfadeIn {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes loading {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes loading {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}


/* <!-- ==================== About ==================== --> */

.inner-banner {
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../img/about/inner-banner.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 40px;
	padding: 20px;
	margin: 20px;
	position: relative;
	overflow: hidden;
}

.inner-banner::after {
	position: absolute;
	top: 0px;
	left: 0px;
	content: "";
	background: rgb(0 0 0 / 66%);
	height: 100%;
	width: 100%;
}

.inner-banner-text {
	position: relative;
	z-index: 1;
	padding-top: 50px;
	text-align: center;
}

.inner-banner-text h3 {
	font-size: 50px;
	font-weight: 700;
	color: #ffff;
}

.inner-banner-text h3 span {
	color: var(--primary-color);
}

.inner-banner-text p {
	font-size: 15px;
	font-weight: 300;
	color: var(--para-color);
}

.inner-about-section {
	padding: 80px 0px;
}

.mission-vision-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 15px;
	color: var(--white-color);
	font-weight: 300;
}

.mission-vision-content p {
	font-size: 15px;
	color: var(--para-color);
	font-weight: 200;
}

.mission-vision-item .icon-box {
	margin-bottom: 10px;
}

.mission-vision-item .icon-box img {
	width: 80px;
}

.why-choose-us-image {
	position: relative;
	display: flex;
	align-items: end;
	justify-content: end;
	padding-bottom: 45px;
	margin-left: 50px;
}


.why-choose-us-img-1 {
	width: 413px;
	text-align: right;
}

.why-choose-us-img-2 {
	position: absolute;
	left: 0;
	height: 280px;
	width: 70%;
	border-radius: 30px;
	border: 10px solid var(--body-color);
}

.why-choose-us-img-2 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.why-choose-us-img-1 figure,
.why-choose-us-img-2 figure {
	display: block;
	overflow: hidden;
}

.why-choose-us-img-1 figure,
.why-choose-us-img-2 figure,
.why-choose-us-img-1 img,
.why-choose-us-img-2 img {
	border-radius: 20px;
}

.why-choose-us-img-1 img {
	aspect-ratio: 1 / 1.095;
	object-fit: cover;
}

.why-choose-us-img-1 img {
	aspect-ratio: 1 / 1.097;
	object-fit: cover;
}

.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;
}

.mission-vision-list {
	margin-top: 30px;
}

.bg-section {
	width: calc(100% - 30px);
	margin-left: 15px;
	margin-right: 15px;
	background-color: #292929;
	padding: 90px 0px;
	border-radius: 30px
}


.company-experience {
	background-image: url(../img/about/company-experience-bg.png);
	background-position: center center;
	/* background-repeat: no-repeat; */
	/* background-size: cover; */
	margin-bottom: 70px;
}

.company-experience-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.company-experience-list .counter-box {
	background: transparent;
	border: none;
	align-items: self-start;
	justify-content: start;
}

.company-experience-list .counter-box .counter {
	color: var(--primary-color) !important;
	font-size: 50px;
}

.company-experience-list .counter-box .counter::after {
	color: var(--primary-color) !important;
	font-size: 50px;
}

.breadcrumb {
	margin: auto;
	text-align: center;
	display: flex;
	justify-content: center;

}

.breadcrumb li {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white-color);
}

.breadcrumb li a {
	color: var(--white-color);
}

.breadcrumb .active {
	color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
	color: var(--para-color);
}

/* <!-- ==================== About ==================== --> */



/* <!-- ==================== Services ==================== --> */


.service-list-main {
	padding: 80px 0px;
}


.races {
	width: fit-content;
	display: flex;
	flex-wrap: nowrap;
}

.races h2 {
	font-size: 20vw;
	flex-shrink: 0;
	font-weight: 800;
	padding-right: 0.3em;
	padding-left: 0.3em;
	color: var(--white-color);
	margin: 0;
}


.serv-point-head h4 {
	color: var(--white-color);
	font-size: 25px;
}

.serv-points {
	margin-top: 50px;
}

.srvc-box-img {
	height: 300px;
	border-radius: 20px;
	width: 100%;
	margin-bottom: 60px;
}

.srvc-box-img img {
	height: 100%;
	border-radius: 20px;
	width: 100%;
	object-fit: cover;
}

.serv-points .main-para {
	font-size: 15px;
	font-weight: 300;
}

.bs-section-main {
	padding: 100px 0px;

}

.owl-carousel,
.owl-stage,
.owl-stage-outer,
.owl-item {
	display: flex !important;
}

.bs-slider .item {
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
	align-items: center;
	background: #292929;
	font-size: 24px;
	margin: 10px;
	width: 100%;
	border-radius: 8px;
	/* text-align: center; */
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.27);
}

.owl-carousel .item {
	display: flex;
	align-items: stretch;
	/* Forces all slides to match height */
}

.slide-card {
	height: 100%;

}


.bs-slider .item h3 {
	color: var(--white-color);
	font-size: 23px;
	font-weight: 600;
	margin-bottom: 10px;
}

.bs-slider .item p {
	color: var(--para-color);
	font-size: 15px;
	margin: 0px;
}

.uniquely-section {
	padding: 0px 0px 150px 0px;
}

.uniquely-section .section-title h2 {
	font-size: 40px;
}

.uniquely-section .section-title h6 {
	font-size: 20px;
	font-style: italic;
	margin-bottom: 20px;
}


.service-points ul {
	list-style: none;
	padding: 0px;

}

.service-points ul li {
	color: var(--white-color);
	font-size: 16px;
	position: relative;
	padding: 0px;
	margin-bottom: 20px;
	margin-left: 25px;
	font-weight: 300;
}

.service-points ul li::before {
	position: absolute;
	top: 0px;
	left: -30px;
	content: "";
	height: 25px;
	width: 25px;
	background-image: url(../img/servce-point.svg);
	background-size: cover;
	background-position: left;
}

.service-points ul li b {
	font-weight: 700;
}

/* <!-- ==================== Services ==================== --> */



/* <!-- ==================== Contact ==================== --> */

.contact-main {
	padding: 80px 0px;
}

.adrss-boxes {
	min-height: 300px;
	background-color: #151515f4;
	padding: 30px;
	margin-top: 20px;
}

.adrss-boxes h3 {
	font-size: 22px;
	color: var(--white-color);
	font-weight: 700;
}

.adrss-boxes h5 {
	font-size: 18px;
	color: var(--primary-color);
	font-weight: 400;
}

.link-box img {
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	padding: 7px;
	justify-content: center;
	border: 1px solid #ebebeb;
	border-radius: 100%;
	background-color: #1e1e1e;
	object-fit: contain;
}

.link-box {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}


.link-box h6 a {
	color: var(--white-color);
	font-size: 16px;
	font-weight: 200px;
}

.link-box h6 {
	font-weight: 200;
}

.contact-info-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.contact-info-body .icon-box {
	background-image: linear-gradient(to right, #151515f4 0%, #151515f4 50%, #151515f4 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: all 0.4s ease-in-out;
}

.contact-info-body .icon-box img {
	width: 70%;
	object-fit: contain;
}

.contact-info-title h3 {
	font-size: 18px;
	line-height: normal;
	color: var(--para-color);
	font-weight: 300;
}

.contact-info-title h3 a {
	color: var(--para-color);
}

.address-box h4 {
	font-size: 25px;
	font-weight: 600;
	color: var(--white-color);
}

.address-box {
	margin-top: 50px;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 400px;
}

.google-map-iframe iframe {
	transition: all 0.4s ease-in-out;
}

.google-map {
	margin: 0px 20px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
}

/* <!-- ==================== Contact ==================== --> */


/* <!-- ==================== Enquiry ==================== --> */


.input-container {
	position: relative;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #ffffff00 inset !important;
	-webkit-text-fill-color: #ffffff !important;
	transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0) inset !important;
	-webkit-text-fill-color: #ffffff !important;
}


.enquiry-main-div {
	width: 80%;
	margin: auto;
	padding: 40px;
	border-radius: 30px;
	background-color: #222121;
	margin-top: 50px;
}


/* Input field */
.input-field {
	display: block;
	width: 100%;
	padding: 10px 0px;
	font-size: 16px;
	border: none;
	border-bottom: 1px solid #ccc;
	outline: none;
	background-color: transparent;
	color: var(--white-color);
}

/* Input label */
.input-label {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 16px;
	color: rgba(204, 204, 204, 0);
	pointer-events: none;
	transition: all 0.3s ease;
}

/* Input highlight */
.input-highlight {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 0;
	background-color: var(--primary-color);
	transition: all 0.3s ease;
}

/* Input field:focus styles */
.input-field:focus+.input-label {
	top: -12px;
	left: 0;
	/* background-color: var(--secondary-color); */
	font-size: 12px;
	color: var(--primary-color);
}

.input-field:focus+.input-label+.input-highlight {
	width: 100%;
}

.input-field:focus::placeholder {
	opacity: 0 !important;
	transition: all 0.3s ease;
}


.input-field::placeholder {
	color: var(--white-color);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.form-group textarea {
	background: transparent;
	border: 1px solid var(--white-color);
	color: white;
}

.form-group textarea:focus {
	background: transparent;
	border: 1px solid var(--white-color);
	box-shadow: none;
	color: white;
}

.form-group textarea:focus::placeholder {
	color: var(--white-color);
}

.form-group textarea::placeholder {
	color: var(--white-color) !important;
}

/* For Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.about-project {
	font-size: 18px;
	margin-top: 20px;
	color: var(--white-color);
	margin-bottom: 15px;
}

#contactForm {
	margin-top: 30px;
}

.enquary-section {
	padding: 70px 0px;
}

.input-container select option {
	color: var(--body-color) !important;
}

/* checkbox  start*/

.material-checkbox {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #c1c1c1;
	cursor: pointer;
	margin-bottom: 10px;
}

.material-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.checkmark {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 12px;
	border: 2px solid;
	border-radius: 4px;
	transition: all 0.3s;
}

.material-checkbox input[type="checkbox"]:checked~.checkmark {
	background-color: #2F3300;
	border-color: #fbad1c8d;
}

.material-checkbox input[type="checkbox"]:checked~.checkmark:after {
	content: "";
	position: absolute;
	top: 2px;
	left: 6px;
	width: 4px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.material-checkbox input[type="checkbox"]:focus~.checkmark {
	box-shadow: 0 0 0 2px #fbad1c8d;
}

.material-checkbox:hover input[type="checkbox"]~.checkmark {
	border-color: var(--primary-color);
}

.material-checkbox input[type="checkbox"]:disabled~.checkmark {
	opacity: 0.5;
	cursor: not-allowed;
}

.material-checkbox input[type="checkbox"]:disabled~.checkmark:hover {
	border-color: #4d4d4d;
}

/* checkbox End*/


/* <!-- ==================== Enquiry ==================== --> */



/* <!-- ==================== Start Responsive ==================== --> */


/* <!-- ==================== Start Responsive Big Screen ==================== --> */

@media only screen and (min-width: 2000px) {
	.slider-section {
        bottom: 650px;
    }
}

@media only screen and (min-width: 2300px) {
	.slider-section {
        bottom: 800px;
    }
}


/* <!-- ==================== End Responsive Big Screen ==================== --> */




@media only screen and (max-width: 1920px) {
	.banner {
		height: 140vh;
	}
}

@media only screen and (max-width: 1800px) {
	.banner {
		height: 160vh;
	}
}

@media only screen and (max-width: 1600px) {
	.banner {
		height: 170vh;
	}
}


/* @media only screen and (max-width: 1500px) {
	.slider-section{
		bottom: 400px;
	}
} */


@media only screen and (max-width: 1400px) {
	.cleint-section {
		padding: 100px 70px;
	}

	.section-title h2 {
		font-size: 38px;
	}

	/* .slider-section{
		bottom: 310px;
	} */

}

/* @media only screen and (max-width: 1300px) {
	.slider-section {
        bottom: 290px;
    }
} */

@media only screen and (max-width: 1200px) {
	.banner {
		height: 120vh;
	}

	.main-container {
		padding: 70px 0px;
		height: auto;
		min-height: auto;
	}

	.inner-about-section {
		padding: 40px 0px;
	}

	.about-st-img {
		height: 400px;
	}

	

}

@media only screen and (max-width: 1100px) {
	.main-para {
		font-size: 16px;
		line-height: 32px;
	}


	.serv-box-right {
		padding: 5px 5px 5px 20px;
		width: 50%;
	}
/* 
	.service-box::before {
		clip-path: polygon(11.2% 0, 100% 0, 100% 76%, 84.6% 100%, 0 100%, 0 23.5%);
	} */

	.serv-img {
		height: 230px;
	}

	.serv-box-right h4 {
		font-size: 25px;
	}

	.banner-text p br {
		display: none;
	}

	.banner-text h3 {
		font-size: 40px;
	}

	.slider-section {
		height: 22vh;
		bottom: 200px;
	}

	.banner {
		height: 80vh;
	}

}

@media only screen and (max-width: 1024px) {


	.why-choose-img {
		width: 70%;
		height: 270px;
	}

	.why-choose-img::after {
		width: 90%;
	}

	.counter {
		font-size: 30px;
	}

	.counter::after {
		font-size: 30px;
	}

	.counter-box h6 {
		font-size: 14px;
	}

	.counter::after {
		right: -19px;
	}

	.dwc-section {
		margin-top: 50px;
	}

	.about {
		min-height: auto;
		padding-bottom: 50px;
	}

	.main-container {
		margin-top: 0px;
	}

	.section-title h4 {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 991px) {
	.slider-section {
		height: auto;
		bottom: auto;
	}

	.slider-section {
		position: relative;
		margin-top: 170px;
	}

	.menu-ab-custom {
		flex-direction: column;
		gap: 10px;
		padding-bottom: 10px;
		padding-left: 5px;
	}

	.tech-main-box {
		width: 100%;
		margin-top: 40px;
		margin-bottom: 40px;
		min-height: auto;
	}

	.icon-block {
		position: relative;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
	}

	.center-logo {
		display: none;
	}

	.tech-main-box {
		display: flex;
		gap: 5px;
		justify-content: center;
		flex-wrap: wrap;
	}

	/* .banner-abstract{
		display: none;
	} */
	.banner-abstract {
		position: relative;
		bottom: auto;
		margin-top: 250px;

	}

	.banner-abstract img {
		width: 100px;
	}

	.about-st-img {
		margin-bottom: 30px;
	}

	.why-choose-us {
		padding-top: 130px;
	}

	.why-choose-img {
		transform: none;
		width: 100%;
		height: 350px;
		margin-left: 0px;
		margin-bottom: 60px;
	}

	.service-section {
		padding: 0px 0px 20px 0px;
	}

	.section-title h2 {
		font-size: 30px;
	}

	.serv-img {
		height: 190px;
	}

	.section-title h4 {
		font-size: 14px;
	}

	.main-para br {
		display: none;
	}

	.tech-main-section {
		padding: 60px 0px 0px 0px;
	}

	.footer-map {
		margin: 0 auto;
		display: block;
		margin-top: 30px;
		margin-top: 0px;
	}

	.serv-box-right h4 {
		font-size: 17px;
	}

	.main {
		width: 600px;
		height: 600px;
	}

	.footer-icons {
		margin-bottom: 20px;
	}

	/* .footer-main-links {
		margin: 20px 0px;
	} */

	.footer-links h6 {
		margin-bottom: 10px;
	}

	.custome-marquee {
		margin-top: 0px;
	}

	.loader-image {
		width: 60px;
	}

	.why-choose-us-image {
		margin-left: 0px;
	}

	.why-choose-us-img-1 figure,
	.why-choose-us-img-2 figure {
		height: 100%;
		border-left: none;
	}

	.bg-section {
		padding: 30px;
	}

	.inner-banner-text h3 {
		font-size: 30px;
	}

	.srvc-box-img {
		margin-bottom: 20px;
	}

	.uniquely-section {
		padding: 50px 0px;
	}

	.bs-section-main {
		padding: 50px 0px 0px 0px;
	}

	.inner-banner {
		min-height: 300px;
	}

	.enquiry-main-div {
		width: 100%;
	}

	.enquiry-main-div {
		padding: 20px;
	}



	.company-experience-list .counter-box .counter {
		font-size: 30px;
	}

	.company-experience-list .counter-box .counter::after {
		font-size: 30px;
	}

	.cst-box-2 {
		flex-direction: column;
		justify-content: start;
		align-items: self-start;
	}

	.adrss-boxes {
		min-height: 270px;
	}

	.company-experience-list .counter-box {
		align-items: center;
		justify-content: center;
	}
}

@media only screen and (max-width: 768px) {
	.cleint-section {
		padding: 30px 0px;
	}

	.main {
		width: 500px;
		height: 500px;
	}

	.banner {
		height: 90vh;
	}

	.nav-box {
		margin-top: 5px;
	}

	.marquee-first {
		margin-top: 20px;
	}

	.marquee-item-list li {
		font-size: 20px;
	}

	.main-para {
		font-size: 14px;
		line-height: normal;
	}

	.wheel__card .wheel-title {
		font-size: 15px;
		font-weight: 400;
		padding: 14px 10px;
	}

	.nav-box .main-button {
		display: none !important;
	}

	.sm-show-btn {
		display: block !important;
		margin-top: 20px;
	}

	.logo-width {
		width: 200px;
	}
}


@media only screen and (max-width: 600px) {
	.banner-text {
		padding-top: 120px;
	}

	.logo-width {
		width: 170px;
	}

	.banner-text h3 {
		font-size: 30px;
	}

	.banner-text p {
		font-size: 14px;

	}

	.wheel__card {
		height: 220px;
	}

	.slider-section {
		margin-top: 130px;
	}



	.circle {
		width: 40%;
		height: 40%;
	}

	.circle-2 {
		width: 65%;
		height: 65%;
	}

	.main {
		width: 400px;
		height: 400px;
	}

	.icon-block {
		width: 35px;
		height: 35px;
	}

	.footer-divider {
		flex-direction: column;
		padding: 10px 0px;
		gap: 10px;
	}

	.service-box {
		margin-top: 20px;
	}
/* 
	.service-box::before {
		clip-path: polygon(11.2% 0, 100% 0, 100% 76%, 88.6% 100%, 0 100%, 0 23.5%);
	} */

	.main-button button {
		height: 45px;
		padding: 0px 35px;
		font-size: 14px;
	}

	.main-button button span img {
		width: 12px;
	}

	.footer-main-links h6 {
		font-size: 17px;
	}

	.footer-main-links h5 {
		font-size: 19px;
	}

	.logo-box {
		min-height: 80px;
	}

	.logo-box img {
		width: 130px;
	}





	.loader-wrap .loader-wrap-heading .load-text {
		font-size: 20px;
	}

	#contactForm {
		margin-top: 10px;
	}

	.bg-section {
		padding: 30px 10px;
	}

	.contact-info-title h3 {
		font-size: 15px;
	}

	.contact-main {
		padding: 40px 0px;
	}

	.main-button .button__text {
		font-size: 14px;
	}

	.main-button .button__wrapper {
		padding: 0px 20px;
		height: 40px;
	}

}

@media only screen and (max-width: 500px) {

	/* .wheel__card {
        max-width: 200px;
        height: 150px;
    } */
	.sr-rotating-2 {
		left: auto;
		right: -60px;
		top: 190px;
	}

	.cl-rotating-1 {
		width: 180px;
	}

	.serv-img {
		height: 150px;
	}

	.service-box {
		padding: 15px 36px 15px 28px;
	}

	.main {
		width: 300px;
		height: 300px;
	}

	.center-logo img {
		max-width: 140px;
	}

	.icon-block {
		width: 30px;
		height: 30px;
	}

	.why-choose-img {
		height: 200px;
	}

	.nsd-menu-fullscren li a {
		font-size: 25px;
	}

	.parallax-bg {
		background-attachment: scroll;
	}

	.about-st-img {
		height: 250px;
	}

	.logo-width {
		width: 150px;
	}

	.counter-box {
		height: 80px;
	}

	.counter {
		font-size: 25px;
	}

	.counter::after {
		font-size: 25px;
	}

	.serv-box-right p {
		font-size: 14px;
	}

	.dwc-section-box {
		gap: 10px;
		margin-bottom: 30px;
	}

	.dwc-section-box h5 {
		font-size: 25px;
	}

	.wheel__card {
		max-width: 200px;
	}

	.inner-banner {
		min-height: 250px;
	}
}


@media only screen and (max-width: 375px) {
	.banner-text {
		padding-top: 120px;
	}
}

/* <!-- ==================== End Responsive ==================== --> */

.cursor {
	position: fixed;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	margin-top: -20px;
	border-radius: 50%;
	border: 2px solid #ffffff36;
	transition: 0.3s;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 999999;
}

.cursor2 {
	position: fixed;
	width: 4px;
	height: 4px;
	margin-left: -20px;
	margin-top: -20px;
	border-radius: 50%;
	background-color: #fff;
	transform: translate(-50%, -50%);
	transition: 0.1s;
	pointer-events: none;
	z-index: 9999;
}

/* <!-- ==================== Portfolio ==================== --> */



/* Portfolio Slider Styles */
.portfolio-slider {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.slider-container {
	position: relative;
	height: 100vh;
}

.slider-track {
	display: flex;
	/* position: absolute;
	top: auto;
	left: 0; */
	gap: 4rem;
	padding: 2rem;
}

.portfolio-sec {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.slider-item {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	border-radius: 20px;
}

.slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.item-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: white;
	transform: translateY(100%);
	transition: transform 0.5s ease;
}

.slider-item:hover img {
	transform: scale(1.05);
}

.slider-item:hover .item-content {
	transform: translateY(0);
}

.portfolio-head {
	padding-top: 30px;
	/* position: absolute;
  left: 50%;
  top: 12%;
  transform: translate(-50%, -50%); */
}

.slider-item .item-content h3 {
	font-size: 30px;
	font-weight: 700;
}

.slider-item .item-content p {
	color: var(--primary-color);
}

.portfolio-title {
	font-size: 34px !important;
	color: #fff !important;
	width: 100vw;
	font-weight: 700 !important;
}

/* <!-- ==================== products ==================== --> */

.product-section {
	padding: 70px 0px;
}

.product-img {
	height: 400px;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	margin: 30px 0px;
}

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

.tow-phase-div {
	height: 100%;
	width: 100%;
	background: #222121;
}

.tow-phase-div img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	/* border-radius: 60px; */
}

.panel-main-custom .tow-phase-div img {
	height: 500px;
	width: 100%;
	object-fit: cover;
}

.tow-phase {
	background: #222121;
	padding: 50px;
}

.tow-phase {
	text-align: left;
	display: flex;
	align-items: start;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.tow-phase p {
	font-size: 15px;
	font-weight: 300;
	color: var(--para-color);
}

.tow-phase h4 {
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 20px;
}

.panel.align-top {
	align-items: flex-start;
}

.panel h1 {
	font-size: 1.8em;
	color: white;
	font-weight: 300;
	margin: 0 auto;
}

.panel.description {
	padding-bottom: 60px;
}


.panel {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 1.5em;
	text-align: center;
	color: white;
	position: relative;
	box-sizing: border-box;
	padding: 10px;
}

/* SCROLL DOWN */

.panel-main {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

.panel {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.panel:not(:first-child) {
	opacity: 0;
	visibility: hidden;
	transform: scale(0.8);
}

.blank {
	height: 100vh;
	background-color: black;
}

.spacer {
	width: 100%;
	height: 100vh;
	background: coral;
}

.multitude-features {
	text-align: center;
}

.multitude-features h3 {}


/* rinshad stle start */

/* <!-- ==================== nav bar strat ==================== --> */





.no-lenis {
	scroll-behavior: smooth !important;
}

/* <!-- ==================== nav bar end ==================== --> */

/* <!-- ==================== blog start ==================== --> */

.blog-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.27);
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 15px;
}

.blog-card .blog-img {
	height: 250px;
	width: 100%;
}

.blog-card .blog-cont {
	padding: 15px 0px 0px;
}


.blog-card .blog-img img {
	height: 100%;
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.blog-card .blog-date {
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #fbad1c !important;
}

.blog-card .blog-category {
	box-sizing: border-box;
	border: 1px solid #fbad1c67;
	border-radius: 50px;
	align-items: center;
	padding: 2px 12px;
	color: rgba(255, 255, 255, .7) !important;
	font-family: Poppins, sans-serif !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 24px !important;
	text-transform: capitalize;
	margin-left: 10px;
}

.blog-card .blog-cont h4 {
	color: #fff;
	font-family: Poppins, sans-serif;
	font-size: 22px;
	font-weight: 600;
	margin: 20px 0px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* Limits the text to 3 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: .3s;
}

.blog-card .blog-cont h4:hover {
	color: #fbad1c;
}

.blog-card .blog-cont .blog-add span {
	color: rgba(255, 255, 255, .7);
	font-size: 14px;
}

.blog-card .blog-cont .blog-add span a {
	color: #fbad1c9e;
	font-size: 14px;
}

.blog-card .blog-cont .blog-add {
	display: flex;
	align-items: center;
	gap: 8px;
}

.categories-tags-comtainer {
	backdrop-filter: blur(60px);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.27);
	padding: 20px;
	border-radius: 8px;
}

.categories-cont {
	border-bottom: 1px solid rgba(255, 255, 255, 0.27);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.categories-tags-comtainer .categories-head {
	font-size: 22px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 15px;
}

.search-container {
	position: relative;
}

.search-container .form-control {
	border-radius: 8px;
	padding: 10px 15px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(60px);
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(255, 255, 255, 0.27);
	color: #ffffff !important;
	font-size: 14px;
}

.search-container .form-control:focus {
	border-color: #fbae1e;
	box-shadow: none !important;
}

.search-container .form-control::placeholder {
	color: #fff;
}

.search-icon {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	color: rgb(230, 230, 230)
}

.popular-blogs {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.popular-blogs a img {
	max-width: 85px;
	height: 85px;
	border-radius: 8px;
}

.popular-blogs-cont h5 {
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 5px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* Limits the text to 3 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: .3s;
}

.popular-blogs-cont h5:hover {
	color: #fbae1e;
}

.popular-blogs-date {
	color: #fbae1e;
	font-size: 14px;
}

.popular-blogs-date span {
	padding-left: 5px;
	color: rgba(255, 255, 255, 0.27);
}

.categories-cont .categories-section ul {
	padding: 0;
}

.categories-cont .categories-section ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	margin-bottom: 10px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(60px);
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(255, 255, 255, 0.27);
	transition: .2s;
}

.categories-cont .categories-section ul li:hover {
	background: #fbae1e !important;
	border: 1px solid #fbae1e;
}

.categories-cont .categories-section ul li a,
.categories-cont .categories-section ul li span {
	color: #fff;
	font-size: 16px;
}

.categories-cont .categories-section .active {
	background: #fbae1e !important;
	border: 1px solid #fbae1e;
}

.blog-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.blog-tags a {
	font-size: 14px;
	box-sizing: border-box;
	border: 1px solid #fbae1e;
	border-radius: 50px;
	align-items: center;
	padding: 2px 10px;
	font-weight: 500;
	text-transform: capitalize !important;
	color: rgba(255, 255, 255, .7);
	transition: 0.3s;
}

.blog-tags a:hover {
	background-color: #fbae1e;
	color: #Fff;
}

.custom-pagination {
	gap: 5px;
	justify-content: center;
	margin-top: 20px;
}

.custom-pagination li a {
	background-color: transparent !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.27);
	box-shadow: none !important;
	width: 40px;
	height: 40px;
	text-align: center;
	padding: 10px;
	font-size: 14px;
	transition: 0.3s;
	border-radius: 8px;
}

.custom-pagination li a:hover {
	background-color: #fbae1e !important;
	border: 1px solid #fbae1e;
}

/* blog detail page */

.blog-detail-container .blog-title h1,
.blog-detail-container .blog-title h2,
.blog-detail-container .blog-title h3,
.blog-detail-container .blog-title h4,
.blog-detail-container .blog-title h5,
.blog-detail-container .blog-title h6 {
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

.blog-detail-container .blog-detail-content h1,
.blog-detail-container .blog-detail-content h2,
.blog-detail-container .blog-detail-content h3,
.blog-detail-container .blog-detail-content h4,
.blog-detail-container .blog-detail-content h5,
.blog-detail-container .blog-detail-content h6 {
	font-size: 20px !important;
	font-weight: 700 !important;
	color: #e0aa46;
}

.blog-detail-container .blog-detail-content ul,
.blog-detail-container .blog-detail-content ol {
	padding: 0px;
	list-style-type: none;
	margin-bottom: 10px;
}

.blog-detail-container .blog-detail-content ul li,
.blog-detail-container .blog-detail-content ol li {
	font-size: 18px !important;
	font-weight: 800 !important;
	position: relative;
	padding-left: 30px !important;
	color: #fff !important;
	margin-top: 25px !important;
}

.blog-detail-container .blog-detail-content ul li::before,
.blog-detail-container .blog-detail-content ol li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 16px;
	height: 16px;
	background-image: url(../img/servce-point.svg);
	background-size: cover;
	/* Make sure the image fits */
	background-repeat: no-repeat;
	border-radius: 50%;
	background-color: #e0aa46;
}

.blog-detail-container .blog-detail-content p {
	font-size: 16px !important;
	margin-bottom: 15px;
	color: #e6dfdf !important;
}

.blog-detail-container .blog-detail-content p a {
	font-size: 16px !important;
	color: #e0aa46 !important;
	font-weight: 700;
}

.blog-detail-tag {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 50px 0px;
}

.blog-detail-tag a {
	font-size: 14px;
	color: #fff;
	border-radius: 8px;
	padding: 10px;
	text-align: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.27);
	transition: 0.2s;
}

.blog-detail-tag a:hover {
	background: #fbae1e;
	border-color: #fbae1e;
}

.blog-coment-container {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.27);
	padding: 25px;
	border-radius: 8px;
}

.blog-coment-container .form-control {
	border-radius: 8px;
	padding: 10px 15px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(60px);
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(255, 255, 255, 0.27);
	color: #ffffff !important;
	font-size: 14px;
	margin: 0px 0px 15px;
}

.blog-coment-container .form-control:focus {
	border-color: #fbae1e;
	box-shadow: none !important;
}

.blog-coment-container .form-control::placeholder {
	color: #fff;
}

.blog-coment-title h4 {
	color: var(--primary-color);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}


/* <!-- ==================== blog end ==================== --> */

/* <!-- ==================== service pages start ==================== --> */
.custom-sub-head {
	font-size: 26px;
	font-weight: 700;
}

.tecanologies-sec {
	display: flex;
	gap: 20px;
	padding: 0;
	margin-top: 20px;
	flex-wrap: wrap;
}

.tecanologies-sec li {
	width: fit-content;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.27);
	padding: 15px 30px;
	transition: .3s;
	width: calc(20% - 1rem);
	display: flex;
	justify-content: center;
	align-items: center;
}

.tecanologies-sec li:hover {
	background: rgba(255, 255, 255, 0.342);
}

.tecanologies-sec img {
	width: 130px;
}

.tecanologies-container {
	margin: 20px 0px 50px;
}

.bs-slider .item .slider-icon {
	width: 50px;
	max-width: 50px;
	margin-bottom: 15px;
}

.web-dev-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.27);
	padding: 30px;
	border-radius: 8px;
	height: 100%;
	transition: .3s;
}

.web-dev-card:hover {
	background: rgb(251, 173, 28);
	border: 1px solid rgb(251, 173, 28);
}

.web-dev-card .slider-icon {
	width: 50px;
	max-width: 50px;
	margin-bottom: 15px;
	transition: .3s;
}

.web-dev-card:hover .slider-icon {
	filter: brightness(0) invert(1);
}

.web-dev-card h4 {
	color: var(--white-color);
	font-size: 23px;
	font-weight: 600;
	margin-bottom: 10px;
}

.web-dev-card p {
	color: var(--para-color);
	font-size: 15px;
	margin: 0px;
}


/* odoo erp */

.odoo-module1 .item {
	text-align: center;
	padding: 10px !important;
	justify-content: center;
	transition: .3s;
	height: 100px !important;
	margin: 10px !important;
	border-radius: 5px;
}

.odoo-module1 .item:hover {
	/* background: var(--primary-color); */
	border-color: var(--primary-color);
}

.odoo-module1 .item h3 {
	font-size: 17px !important;
	font-weight: 300;
	margin: 0;
}

.odoo-module2 .item {
	text-align: center;
	padding: 10px !important;
	justify-content: center;
	transition: .3s;
	height: 100px !important;
	margin: 10px !important;
	border-radius: 5px;
}

.odoo-module2 .item:hover {
	/* background: var(--primary-color); */
	border-color: var(--primary-color);
}

.odoo-module2 .item h3 {
	font-size: 17px;
	font-weight: 400;
	margin: 0;
}


/* Continuous pulsing animation */
.dwc-section-custom .dwc-section-box img {
	/* animation: pulse 2s infinite ease-in-out; */
	width: 80px;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}

.dwc-section-custom .dwc-section-box h5 {
	font-size: 28px;
	font-weight: 800;
}

/* endpoint security */

.end-point-card .web-dev-card {
	background:
		rgba(255, 255, 255, 0.04);
	border:
		1px solid rgba(255, 255, 255, 0.27);
	padding:
		30px;
	border-top: solid 4px #fbad1c;
	border-radius:
		8px;
	height: 100%;
	transition: .3s;
	position: relative;
}

.end-point-card .web-dev-card:hover {
	background: #fbad1c;
	border:
		1px solid #fbad1c;
	border-top: solid 4px #fbad1c;
}

.serv-point-head-custom {
	margin-top: 10px;
}

.serv-point-head-custom .serv-point-head h4 {
	position: relative;
	padding-left: 30px;
	font-size: 21px;
	font-weight: 700;
}

.serv-point-head-custom .serv-point-head p {
	padding-left: 30px;
}

.serv-point-head-custom .serv-point-head h6 {
	padding-left: 30px;
}

.serv-point-head-custom h4::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 17px;
	height: 17px;
	background-image: url(../img/servce-point.svg);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius:
		50%;
	background-color: #e0aa46;
}

/* .parallax-bg-custom{
  height: 400px;
align-items: center;
  margin:120px 0px 80px 0px;
  background-color: #000000b7;
  background-blend-mode: overlay;
} */
.endpoint-add-box {
	padding: 40px;
	background: #fbad1c1c;
	border-radius: 25px;
	border: solid 1px #fbad1c;
}


/* google work */

.web-dev-card ul {
	padding: 0;
	list-style-type: none;
	margin: 0;
}

.web-dev-card ul li {
	position: relative;
	padding-left: 20px;
	color: var(--para-color);
	font-size: 15px;
	margin-bottom: 5px;
}

.web-dev-card ul li::before {
	content: "↳";
	position: absolute;
	color: #fbad1cab;
	left: 0;
	top: 0;
	font-size: 18px;
	transition: 0.3s;
}

.web-dev-card:hover ul li::before {
	color: #fff;
}

.email-hosting-section {
	width: 95%;
	padding: 60px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 8px;
}

.email-hosting-container {
	padding: 30px 0;
	position: relative;
}

.email-hosting-container::before {
	content: "";
	/* Required for a pseudo-element to display */
	position: absolute;
	border-top: 1px dashed #fbad1c99;
	width: 100%;
	top: 0;
	left: 10px;
	/* Center the 90% width line by offsetting 5% from the left */
}

.email-hosting-container img {
	border-radius: 8px;
}

.footer-line {
	margin-top: 0;
}

.footer-list {
	display: flex;
	justify-content: space-around;
	width: 100%;
}



/* <!-- ==================== service pages end ==================== --> */


/* footer wrapper */

.footer {
	margin-top: 100px;
	background-color: #0f0f0f;
	border-top: 1px solid #ebebeb1d;
}

.footer-map{
	margin-top: 50px;
}

.cta-wrapper {
	position: relative;
	z-index: 1;
	background: var(--clr-theme-primary);
	border-radius:
		16px;
	padding:
		60px 50px;
	display: flex;
	align-items: center;
	gap:
		25px;
	justify-content: space-between;
	background:
		#fbad1c;
	margin-top: -100px;
	overflow: hidden;
}

.cta-wrapper h2 {
	color: #0f2923;
	font-size: 38px;
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 5px;
}

.cta-wrapper .bg {
	position: absolute;
	left: 60%;
	top: auto;
	transform: translateX(-50%);
}

.cta-wrapper .bg img {
	width: 440px;
	opacity: 0.1;
	transform: rotate(75deg);

}



/* service-listing page */

.service-card {
	background-color: transparent;
	height: 100%;
	padding-bottom: 40px;
}

.service-card .service-card-img {
	overflow: hidden;
	border-radius: 15px;
	box-shadow: rgba(104, 104, 104, 0.27) 0px 0px 0.25em, rgba(255, 255, 255, 0.05) 0px 0.25em 1em;
}

.service-card .service-card-img img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	border-radius: 15px;
	scale: 1.1;
	transition: 0.3s;
}

.service-card:hover img {
	scale: 1.2;
}

.service-card .service-card-cont {
	padding: 30px 0 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.27);
}

.service-card .service-card-cont h5 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 0
}

.service-card .service-card-cont p {
	margin-top: 10px;
	font-size: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient:
		vertical;
	overflow:
		hidden;
}

.service-card .service-card-cont img {
	scale: 1;
}

.service-card:hover img {
	transition: .5s;
	transform: none;
}

/* product listing page */
.product-list-container {
	position: relative;
	margin-bottom: 40px;
	padding-top: 40px;
}

.product-list-container::after {
	position: absolute;
	content: "";
	border-top: dashed 1px #75613c;
	left: 25px;
	top: 0;
	width: 97%;
}

/* .product-list-container .service-card{
	padding: 0;
} */
.product-img-custom img {
	border-radius: 15px;
	/* height: 350px; */
	aspect-ratio: 16/9;
	object-fit: cover;
}

.product-list-container .blog-tags {
	margin-bottom: 20px;
}

.product-list-container .service-card-cont {
	border: none;
	padding: 0;
}

.product-list-container .service-card {
	padding-bottom: 0;
}

.product-list-container .service-card .service-card-cont p {
	display: block;
	-webkit-line-clamp: unset;
	-webkit-box-orient: unset;
	overflow: visible;
	margin-top: 25px;
}

.service-faq .accordion {
	width: 90%;
	margin: 0 auto;
}

.service-faq .accordion-item {
	border:
		1px solid rgba(255, 255, 255, 0.15);
	border-radius:
		12px;
	backdrop-filter: blur(150px);
	background:
		rgba(197, 197, 197, 0.05);
	padding: 20px;
	margin-bottom: 5px;
}

.service-faq .accordion-button {
	border: none !important;
	font-size: 19px;
	font-weight: 600;
	line-height: 30px;
	color: white;
	box-shadow: none !important;
	padding: 0 !important;
	background-color: transparent !important;
}

.service-faq .accordion-button::after {
	background-image: url(../img/arrow-faq.png);
	width: 16px !important;
	background-size: contain;
	margin-top: 10px;
}

.service-faq .main-para {
	font-size: 16px;
	margin: 0;
	margin-top: 10px;
}

.accordion-body {
	padding: 1px 0 !important;
}

.help-desk-row .main-para {

	font-size: 16px;
	color: var(--para-color);
	font-weight: 300;

}

.service-faq .accordion-body ul {
	padding: 0;
	list-style-type: none;
	margin: 0;
	margin-top: 10px;
}

.service-faq .accordion-body ul li {
	position: relative;
	padding-left: 20px;
	color: var(--para-color);
	font-size: 14px;
	margin-bottom: 5px;
	font-weight: 300;
}

.service-faq .accordion-body ul li::before {
	content: "↳";
	position: absolute;
	color: #fbad1cab;
	left: 0;
	top: 0;
	font-size: 18px;
	transition: 0.3s;
}

.client-container .bs-slider .item {
	padding: 20px 15px;
	margin: 0px;
	border-radius: 0;
}

.client-container .bs-slider .item:hover {
	border-color: #fbad1c8c;
}

.client-container .bs-slider .item img {
	height: 60px;
	object-fit: contain;
}

.client-container .owl-carousel,
.client-container .owl-stage,
.client-container .owl-stage-outer,
.client-container .owl-item {
	display: block !important;
}

.client-title {
	text-align: center;
	color: #FBAD1C;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 30px;
}

.cta-contact {
	display: flex;
	align-items: center;
	gap:
		20px;
}

.cta-contact img {
	width: 70px;
}

.cta-number h6 {
	font-size: 16px;
	font-weight: 500;
	color: #0f2923;
	margin: 0;

}

.cta-number a {

	font-size: 22px;
	font-weight: 700;
	color: #0f2923;

}




.left-cont {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
	align-self: flex-start;
	z-index: 1;
}

.right-cont {
	max-height: 2000px;
	/* overflow: hidden; */
}

.portfolio-container {
	background:
		#292929;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 8px;
}

.portfolio-container .portfolio-card {

	padding:
		40px 25px;
}

.portfolio-container img {
	height: 250px;
	width: 100%;
	object-fit: cover;
	border-radius: 0 0 8px 8px;
}

.portfolio-container .portfolio-card h4 {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}

.portfolio-container .portfolio-card p {
	margin: 0;
	font-size: 16px;
	line-height: 26px;
}

.portfolio-primary-img {
	/* min-height: 450px; */
	border-radius: 8px;
}

.portfolio-primary-img img {
	object-fit: cover;
	border-radius: 8px;
}

.portfolio-order {}

.serv-point-box {
	width: 100%;
	height: 100%;
	padding: 60px 40px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 15px;
}

.serv-point-head-manage-en {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	padding-bottom: 15px;
	margin-bottom: 15px;

}

.serv-point-head-manage-en h4 {
	font-weight: 500;
	font-size: 32px;
	color: #eeb044;
}

.serv-point-head-manage-en h2 {
	font-weight: 900;
	font-size: 36px;
	color: rgba(255, 255, 255, 0.25);
}

.serv-point-box .main-para {
	line-height: 26px !important;
	margin: 0;
}

.serv-point-head-custom-manage {
	margin-top: 10px;
}

.serv-point-head-custom-manage .serv-point-head h4 {
	position: relative;
	font-weight: 400;
	font-size: 24px;
	color: #fff;
	padding-left: 40px;
}

.serv-point-head-custom-manage .serv-point-head {
	margin-bottom: 20px;
}

.serv-point-head-custom-manage .serv-point-head p {
	padding-left: 40px;
	line-height: 26px;
}

.serv-point-head-custom-manage .serv-point-head h6 {
	padding-left: 40px;
}

.serv-point-head-custom-manage h4::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 32px;
	height: 32px;
	background-image: url(../img/tick-icon.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-color: transparent;
}

.enterprise-container{
	width: 90%;
}
.enterprise-container .enterprise-box {
	display: flex;
	align-items: center;
	box-shadow: 0 1px 45px 0 rgba(255, 146, 47, 0.08), 0 4px 357px 0 rgba(255, 146, 47, 0.15);
	background: #fff;
	gap: 25px;
	border-radius: 15px;
	padding: 20px 30px;
	margin: 15px 0;
	transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.enterprise-container .enterprise-box:hover {
	transform: translateY(-5px);
}

.enterprise-container .enterprise-box img {
	width: 50px;
	min-width: 50px;
  }
.enterprise-container .enterprise-box-cont h4{
	font-weight: 400;
font-size: 18px;
color: #eeb044;
}
.enterprise-container .enterprise-box-cont p{
margin: 0;
font-weight: 300;
font-size: 14px;
color: #555;
}
.enterprise-container .section-title h2{
	font-weight: 400;
font-size: 38px;
color: #fff;
}
.bg-custom-sec{
	padding: 70px 0;
}

.manage-service-card .web-dev-card{
	width: 80%;
	margin: 0 auto;
	border-radius: 20px;
background: #343434;
border: none;
}
.manage-service-card .web-dev-card h3{
	font-weight: 700;
font-size: 30px;
color: #fff;
	border-radius: 4px;
background-color: rgba(238, 176, 68, 0.54);
padding: 20px;
width: fit-content;
margin: 0 auto
}
.manage-service-card .web-dev-card h4{
	text-align: center;
	margin-top: 20px;
}
.manage-service-card .web-dev-card p{
	text-align: center;
}
.card-marging {
	margin:55px 0 0;
  }





  /* privacy policy page  */

  .privecy-container{
	padding: 70px 0;
  }
  .pricacy-sec{
margin-bottom: 40px;
  }

  .pricacy-sec h4{
	font-size: 24px;
	color: #fff;
	margin-bottom: 20px;
	font-weight: 700;
  }
  .pricacy-sec h5{
	font-size: 20px;
  color: #e0aa46;
  margin-bottom: 15px;
  font-weight: 600;
  }
  .pricacy-sec p,
	.pricacy-sec ul li{
	line-height: 26px;
  }
  .pricacy-sec a{
color: #e0aa46;
font-weight: 400;
font-style: italic;
  }
  .pricacy-sec ul{
	padding: 0;
	list-style-type: none;
  }
  .pricacy-sec ul li{
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
  }
  .pricacy-sec ul li::before{
	content: "↳";
	position: absolute;
	color: #fbad1cab;
	left: 0;
	top: 0;
	font-size: 18px;
  }
  /* privacy policy page  */

  .iti__selected-dial-code{
	color: white;
  }


  /* zatca */

  .zatca-list-container{
	align-items: center;
	background-color: #292929;
	border:1px solid rgba(255, 255, 255, 0.27);
	padding:15px 5px;
	border-radius: 8px;
	margin-top:30px;
  }
  .zatca-list-container .zatca-list-img{
	height: 300px;
	width: 100%;
  }
  .zatca-list-container .zatca-list-img img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 8px;
  }
  .zatca-list-container .zatca-list-cont{
	padding: 10px;
  }
  .zatca-list-container .zatca-list-cont h4{
color: #fff;
font-size: 24px;
font-weight: 600;
  }
  .zatca-list-container .zatca-list-cont p{
	font-size: 16px;
	margin-bottom: 0;
  }
@media screen and (max-width:1400px) {
	.nsd-menu-overlay {
		padding-top: 160px;
	}

	.service-list {
		display: flex;
		height: 35vh;
		overflow-Y: scroll !important;
		overflow-x: hidden !important;
		width: 100%;
	}

	.nsd-menu-fullscren .sub-menu__inner a {
		font-size: 18px;
	}

	.nsd-menu-fullscren li a {
		font-size: 25px;
	}

	.blog-card {
		padding: 15px;
	}

	.blog-card .blog-cont h4 {
		font-size: 20px;
		margin: 15px 0px 10px;
	}

	.popular-blogs a img {
		max-width: 75px;
		height: 75px;
	}

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

	.blog-card .blog-cont .date-sec {
		display: flex;
		flex-direction: column;
	}

	.blog-cont .date-sec .blog-category {
		margin-left: 0;
		width: fit-content;
	}

	.section-title h3 {
		font-size: 30px;
	}

	.serv-points {
		margin-top: 35px;
	}

	.serv-point-box {
		padding: 45px 30px;
		background: rgba(255, 255, 255, 0.07);
	}
}

@media screen and (max-width:1200px) {
	.categories-cont .categories-section ul li {
		gap: 10px;
	}

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

	.blog-card .blog-cont h4 {
		font-size: 18px;
	}

	.blog-detail-container .blog-title h1,
	.blog-detail-container .blog-title h2,
	.blog-detail-container .blog-title h3,
	.blog-detail-container .blog-title h4,
	.blog-detail-container .blog-title h5,
	.blog-detail-container .blog-title h6 {
		font-size: 38px;
	}

	.bs-slider .item {
		/* min-height: 310px; */
		padding: 20px;
	}

	.web-dev-card {
		padding: 20px;
	}

	.serv-point-head-custom .serv-point-head h4 {
		font-size: 20px;
	}

	.serv-point-head-custom h4::before {
		width: 16px;
		height: 16px;
	}

	.service-list-main {
		padding: 80px 0px 60px;
	}

	.email-hosting-section {
		padding: 45px;
	}

	.section-title h2 br {
		display: none;
	}

	.cta-wrapper {

		padding: 50px 50px;
		margin-top: -80px;
	}

	.cta-wrapper h2 {
		font-size: 34px;
		/* width: 50%; */
	}

	.cta-wrapper {
		padding:
			40px 35px;
		margin-top: -90px;
	}

	.footer {
		margin-top: 130px;
		background-color: #292929;
	}

	.service-card .service-card-cont h5 {
		font-size: 24px;
	}

	.product-img-custom img {
		/* height: 300px; */
	}

	.portfolio-title {
		font-size: 28px !important;
	}

	.portfolio-container .portfolio-card h4 {
		font-size: 22px;
	}

	.portfolio-container .portfolio-card p {
		font-size: 15px;
	}

	.parallax-bg {
		margin:
			80px 0px 80px 0px;
	}

	.serv-point-head-manage-en h4 {
		font-size: 28px;
	}

	.serv-point-box {
		padding: 30px;
	}

	.serv-point-head-manage-en h2 {
		font-size: 32px;
	}

	.serv-point-head-custom-manage h4::before {
		width: 28px;
		height: 28px;
	}

	.serv-point-head-custom-manage .serv-point-head h4 {
		font-size: 20px;
		padding-left: 35px;
	}

	.serv-point-head-custom-manage .serv-point-head p {
		padding-left: 35px;
	}
	.enterprise-container .section-title h2 {
		font-size: 32px;
	  }
	  .enterprise-container .enterprise-box {
		padding:15px 20px;
		margin:10px 0;
	  }
	  .manage-service-card .web-dev-card {
		width: 95%;
	  }
	  .card-marging {
		margin:
	  30px 0 0;
	  }
	  .manage-service-card .web-dev-card h3 {
		font-weight: 700;
		font-size: 26px;
		background-color: rgba(238, 176, 68, 0.54);
		padding:15px;
	  }
	  .panel-main-custom .tow-phase-div img {
		height: 450px;
	  }
	  .privecy-container {
		padding:50px 0 30px;
	  }
}

@media screen and (max-width:1100px) {
	.section-title h3 {
		font-size: 26px;
	}

	.bs-section-main {
		padding: 75px 0px;
	}

	.portfolio-container .portfolio-card {
		padding:
			25px;
	}

	.portfolio-container img {
		height: 220px;
	}
	.zatca-list-container .zatca-list-cont p {
		font-size: 14px;
		line-height: 26px;
	  }

}

@media screen and (max-width:992px) {
	.blog-coment-container {
		margin-bottom: 30px;
	}

	.tecanologies-sec li {
		width: calc(26% - 1.5rem);
	}

	.custom-sub-head {
		font-size: 20px;
	}

	.serv-points {
		margin-top: 25px;
	}

	.dwc-section-custom .dwc-section-box {
		gap: 10px;
		margin-bottom: 30px;
	}

	.section-title h3 {
		font-size: 24px;
	}

	.service-list-main {
		padding:
			80px 0px 40px;
	}

	.bs-slider .item {
		padding: 20px;
	}

	.bs-section-main {
		padding:
			50px 0px 30px 0px;
	}

	.email-hosting-container p {
		font-size: 14px;
		line-height: 26px;
	}

	.footer-list {
		justify-content: space-between;
	}

	.service-card .service-card-cont {
		padding: 15px 0 0px;
	}

	.service-card .service-card-cont h5 {
		font-size: 20px;
	}

	.service-card .service-card-cont p {
		font-size: 15px;
		line-height: 24px;
	}

	.product-img-custom img {
		/* height: 300px; */
	}

	.tow-phase h4 {
		font-size: 26px;
	}

	.tow-phase {
		padding: 30px;
	}

	.tow-phase-div img {
		border-radius: 0;
	}

	.service-faq .accordion-button {
		font-size: 18px;
	}

	.product-list-container .service-card .service-card-cont p {
		margin-top: 10px;
	}

	.service-faq .accordion {
		width: 100%;
	}

	.cta-contact img {
		width: 60px;
	}

	.cta-cont {
		width: 60%;
	}

	.cta-contact {
		gap: 10px;
	}

	.cta-wrapper h2 {
		font-size: 29px;
	}

	.footer-main-links h5 {
		text-align: center;
	}

	.slider-item {
		height: 500px;
	}

	.portfolio-order {
		order: 4;
	}

	.cl-rotating-1 {
		display: none;
	}

	.serv-point-head-manage-en {
		padding-bottom: 10px;
		margin-bottom: 10px;
		align-items: start;
	}
	.enterprise-container {
		width: 100%;
	  }
	  .enterprise-container .enterprise-box {
		margin:7px 0;
		gap:15px;
	  }
	  .enterprise-container .section-title h2 {
		font-size: 28px;
	  }
	  .bg-custom-sec {
		padding:50px 0;
	  }
	  .srvc-box-img {
		height: 250px;
	  }
	  .serv-point-head-custom-manage .serv-point-head p {
		font-size: 15px;
	  }
	  .enterprise-img{
		margin-top: 50px;
	}
	.pricacy-sec h4 {
		font-size: 22px;
		margin-bottom: 15px;
	  }
	  .serv-point-head-custom-manage h4::before {
		width: 25px;
		height: 25px;
	  }
	  .zatca-order{
		order: -1;
	  }
	  .zatca-list-container .zatca-list-cont {
		padding:20px 0 0;
	  }

}

@media screen and (max-width:768px) {
	.blog-card {
		width: 90%;
		margin: 10px auto;
	}

	.blog-detail-container .blog-title h1,
	.blog-detail-container .blog-title h2,
	.blog-detail-container .blog-title h3,
	.blog-detail-container .blog-title h4,
	.blog-detail-container .blog-title h5,
	.blog-detail-container .blog-title h6 {
		font-size: 32px;
	}

	.tecanologies-sec li {
		width: calc(33% - 1rem);
	}

	.serv-point-head h4 {
		font-size: 22px;
	}

	.bs-slider .item {
		margin: 5px 5px;
	}

	.panel-main-custom .tow-phase-div img {
		height: 230px;
	}

	.tow-phase {
		padding: 20px;
	}

	.service-order {
		order: -1;
	}

	.tow-phase h4 {
		font-size: 28px;
		margin-bottom: 10px;
	}

	.uniquely-section .section-title h2 {
		font-size: 34px;
	}

	.email-hosting-container .email-hosting-items img {
		width: 100%;
		height: 250px;
		object-fit: cover;
		margin-bottom: 15px;
	}

	.email-hosting-container::before {
		width: 95%;
	}

	.footer-list {
		display: block;
	}

	.footer-list .footer-links {
		margin-top: 20px
	}

	.cta-wrapper {
		padding:
			35px;
		margin-top: -70px;
		flex-direction: column;
		margin-bottom: 30px;
	}

	.cta-wrapper h2 {
		font-size: 28px;
		width: 100%;
		text-align: center;
	}

	.footer {
		margin-top: 90px;
	}


	.product-list-container .service-card .service-card-cont {
		padding:
			15px 0 10px;
		border-bottom:
			dashed 1px #75613c;
	}

	#main {
		overflow: visible !important;
		height: auto !important;
	}

	.panel {
		opacity: 1 !important;
		transform: scale(1) !important;
		position: relative !important;
	}

	.panel:not(:first-child) {
		visibility: visible;
		margin-top: 40px;
	}

	.tow-phase h4 {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.product-img {
		height: 200px;
	}



	.service-faq .accordion-button::after {
		width: 12px !important;
	}

	.product-list-container {
		margin-bottom: 0;
	}

	.product-list-container::after {
		width: 85%;
	}

	.cta-wrapper {
		gap: 10px;
	}

	.cta-cont {
		width: 100%;
	}

	.portfolio-title {
		font-size: 22px !important;
	}

	.cta-wrapper .bg img {
		width: 215px;
	}

	.cta-wrapper .bg {
		left: 20%;
	}

	.left-cont {
		position: -webkit-initial;
		position: initial;
		margin-bottom: 30px;
	}

	.cursor,
	.cursor2 {
		display: none;
	}

	.parallax-bg {
		padding: 50px 0;
	}
	.enterprise-img{
		margin-top: 35px;
	}
	.enterprise-container .enterprise-box {
		margin:10px 0;
	  }
	  .bg-custom-sec {
		padding:30px 0;
		border-radius: 0;
	  }
	  .web-dev-card h4 {
		font-size: 19px;
	  }
	  .manage-service-card .web-dev-card {
		width: 100%;
		padding: 15px;
	  }
	  .manage-service-card .web-dev-card h3 {
		font-size: 22px;
	  }
	  .tech-main-section {
		padding:
	60px 0px 1px 0px;
	  }
	  .pricacy-sec h4 {
		font-size: 20px;
		margin-bottom: 15px;
	  }
	  .privecy-container {
		padding:30px 0;
	  }
	  .zatca-list-container .zatca-list-cont h4 {
		font-size: 22px;
	  }
	  .product-img-custom img {
		height: 300px;
	  }
	  .product-list-container::after {
  display: none;
}

}

@media screen and (max-width:600px) {
	.tecanologies-sec li {
		width: calc(46% - 0rem);
	}

	.serv-point-head-custom .serv-point-head h4 {
		font-size: 18px;
	}

	/* .panel-main-custom .tow-phase-div img {
		display: none;
	} */

	.bs-slider .item p {
		display: -webkit-box;
		-webkit-line-clamp: 10;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.uniquely-section {
		padding:
			50px 0px 30px;
	}

	.uniquely-section {
		padding:
			50px 0px 30px;
	}

	.email-hosting-section {
		padding:
			30px 10px;
	}

	.cta-wrapper {
		padding:
			30px;
		margin-top: -85px;
	}

	.panel:not(:first-child) {
		margin-top: 20px;
	}

	.end-point-card .web-dev-card {
		padding: 20px;
	}

	.service-faq .accordion-button {
		font-size: 16px;
		line-height: 26px;
	}

	.service-faq .main-para {
		font-size: 14px;
	}

	.web-dev-card h4 {
		font-size: 20px;
	}

	.product-list-container .service-card .service-card-cont p {
		font-size: 14p;
	}

	.cta-number a {
		font-size: 20px;
	}

	.cta-contact img {
		width: 54px;
	}

	.cta-number h6 {
		font-size: 14px;
	}

	.portfolio-container .portfolio-card h4 {
		font-size: 18px;
	}
	.enterprise-container .section-title h2 {
		font-size: 22px;
	  }
	  .pricacy-sec {
		margin-bottom: 30px;
	  }
	  .pricacy-sec h5 {
		font-size: 18px;
	  }
	  .zatca-list-container {
		margin:5px;
	  margin-top: 15px;
	  }

}

@media screen and (max-width:475px) {
	.portfolio-title {
		font-size: 20px !important;
		margin: 0;
	}

	.slider-track {
		gap:
			1rem;
		padding:
			15px;
	}

	.slider-item {
		height: 355px;
		width: 100vw;
	}

	#toTopBtn {
		height: 45px;
		width: 45px;
		font-size: 11px;
	}

	.serv-point-head-manage-en h2 {
		font-size: 28px;
	}

	.serv-point-head-manage-en h4 {
		font-size: 24px;
	}

	.serv-point-head-custom-manage .serv-point-head p {
		font-size: 14px;
	}
	.srvc-box-img {
		height: 200px;
	  }
}

@media screen and (max-width:425px) {
	.popular-blogs a img {
		max-width: 70px;
		height: 70px;
	}

	.popular-blogs-cont h5 {
		font-size: 14px;
	}

	.categories-cont .categories-section ul li {
		padding: 10px;
	}

	.categories-cont .categories-section ul li a,
	.categories-cont .categories-section ul li span {
		color: #fff;
		font-size: 15px;
	}

	.blog-card {
		width: 100%;
	}

	.blog-detail-container .blog-title h1,
	.blog-detail-container .blog-title h2,
	.blog-detail-container .blog-title h3,
	.blog-detail-container .blog-title h4,
	.blog-detail-container .blog-title h5,
	.blog-detail-container .blog-title h6 {
		font-size: 26px;
	}

	.blog-detail-container .blog-detail-content h1,
	.blog-detail-container .blog-detail-content h2,
	.blog-detail-container .blog-detail-content h3,
	.blog-detail-container .blog-detail-content h4,
	.blog-detail-container .blog-detail-content h5,
	.blog-detail-container .blog-detail-content h6 {
		font-size: 18px !important;
	}

	.blog-detail-container .blog-detail-content ul li,
	.blog-detail-container .blog-detail-content ol li {
		font-size: 16px !important;
		padding-left: 25px !important;
	}

	.blog-coment-container {
		padding: 20px;
	}

	.categories-tags-comtainer .categories-head {
		font-size: 20px;
	}

	.service-list-main {
		padding:
			55px 0px 40px;
	}

	.service-list-main {
		padding:
			55px 0px 40px;
	}

	/* .bs-slider .item {
		margin-bottom: 30px;
	} */

	.section-title h3 {
		font-size: 22px;
	}

	.serv-point-head h4 {
		font-size: 20px;
	}

	.section-title h2 {
		font-size: 22px;
	}

	.web-dev-card .slider-icon {
		width: 40px;
	}

	.dwc-section-custom .dwc-section-box img {
		width: 60px;
	}

	.dwc-section-custom .dwc-section-box h5 {
		font-size: 24px;
	}

	.bs-slider .item h3 {
		font-size: 20px;
	}

	.bs-slider .item .slider-icon {
		width: 40px;
	}

	.service-points ul li::before {
		top: 3px;
		height: 20px;
		width: 20px;
	}

	.email-hosting-container img {
		height: 200px;
	}

	.cta-wrapper h2 {
		font-size: 24px;
	}

	.service-card {
		padding-bottom: 25px;
	}

	.service-card .service-card-cont h5 {
		font-size: 20px;
	}

	.product-img-custom img {
		height: auto;
	}

	.tow-phase h4 {
		font-size: 18px;
	}

	.portfolio-container .portfolio-card p {
		font-size: 14px;
		line-height: 24px;
	}

	.left-cont {
		margin-bottom: 20px;
	}

	.counter-box h6 {
		font-size: 13px;
	}
	.blog-card .blog-img {
		height: 175px;
	  }
	  .help-desk-row .main-para {
		font-size: 14px;
	  }
	  .zatca-list-container .zatca-list-img {
		height: 250px;
	  }
}

@media screen and (max-width:375px) {
	.slider-item {
		height: 300px;
	}

	.wheel__card {
		max-width: 170px;
	}
	.pricacy-sec ul li {
		padding-left: 20px;
	  }
}


/* ------------- career page -----------------*/
.career .sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.career .contact-label {
    font-size: 0.75em;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 3px;
}

.career .contact-email {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
}

.career .contact-email:hover {
    text-decoration: underline;
}

.career .jobs-container {
    border: 1px solid #2d2c2c;
    border-radius: 12px;
    overflow: hidden;
}

.career .job-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.career .job-item:last-child {
    border-bottom: none;
}

.career .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.career .job-header:hover {
    background: #0f0f0f;
}

.career .job-header.active {
    background: #0f0f0f;
}

.career .job-info {
    flex: 1;
}

.career .job-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.career .job-title {
    font-size: 1.5em;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.career .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.95em;
    color: #64748b;
}

.career .job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.career .job-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.job-actions .dropdown-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.job-actions .dropdown-btn:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

.job-actions .dropdown-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(180deg);
}

.job-actions .dropdown-btn svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    transition: stroke 0.3s ease;
}

.job-actions .dropdown-btn.active svg {
    stroke: #000;
}

/* Job Details (Dropdown Content) */
.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #1e1e1e;
}

.job-details.show {
    max-height: 2000px;
    padding: 35px;
    border-top: 1px solid #2d2c2c;
}

.job-details-content h3 {
    color: #fff !important;
    font-size: 1.2em !important;
    margin-bottom: 15px;
    margin-top: 25px;
}

.job-details-content h3:first-child {
    margin-top: 0;
}

.job-details-content p {
    font-size: 16px !important;
    color: #909090 !important;
    line-height: 1.7;
    margin-bottom: 15px;
    background-color: #1e1e1e !important;
}
.job-details-content p span{
    color: #909090 !important;
    background-color: #1e1e1e !important;
}

.job-details-content ul {
    font-size: 15px;
    color: #909090;
    margin-left: 0;
    line-height: 1.8;
}

.job-details-content ul li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .career .job-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .career .job-actions {
        width: 100%;
        justify-content: space-between;
    }

    .career .job-title {
        font-size: 1.2em;
    }

    .career .job-meta {
        gap: 8px;
    }

    .job-details.show {
        padding: 20px;
    }
}

/* career modal */
.career-modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;
}

.career-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.career-modal-content {
    position: relative;
    width: 70%;
    border-radius: 6px;
    z-index: 2;
}

.career-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: 0;
    font-size: 30px;
    color: var(--primary-color);
}

.career-modal .enquiry-main-div{
    background: transparent !important;
}

@media (max-width: 600px) {
    .career-modal-content {
        width: 100%;
    }
}

/* ------------- career page  ----------------*/




