/*
Theme Name: BlankSlate Child
Theme URI: https://opencollective.com/blankslate
Template: blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/webguyio/blankslate/issues. Thank you.
Tags: accessibility-ready,one-column,two-columns,custom-menu,featured-images,microformats,sticky-post,threaded-comments,translation-ready
Version: 2026.1766468115
Updated: 2025-12-23 05:35:15
*/

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');

{
font-family: "Syne", sans-serif;	
}

body {
	padding: 0;
	margin: 0;
	background-color: #fff !important;
	font-family: "Syne", sans-serif;
}
h2, h3, h4, h5, h6 {
	font-family: "Syne", sans-serif;
}
p, span {
	font-family: "Inter", sans-serif;
}
.site-container {
  max-width:1280px;
  margin:0 auto;
  padding:0 15px;
}
#masthead {
	position: sticky !important;
	top: 0;
	border-bottom: 1px solid #212637;
}
.site-nav {
  display: flex;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.header_inner_section {
	display: flex;
	width: 100%;
	gap: 15px;
}
.header_inner_section .custom-logo-link {
	width: 100px;
	display: inline-block;
}
.menua-all-right li {
	margin: 0 0 0 2rem;
	position: relative;
	top: 21px;
}
.menua-all-right .hfe-nav-menu li.hfe-button-wrapper {
	align-self: center;
	top: 0;
}
.premium-tage h3 {
	margin: 0;
}
.premium-tage svg {
	color: #f65f1e;
	margin: 11px 0 0 0;
}
.premium-tage .elementor-icon-box-wrapper {
	display: flex;
	width: 249px;
	border: 1px solid #f65f1e;
	height: 40px;
	line-height: 38px;
	border-radius: 100px;
	padding: 0 1rem;
	background-color: #22171f;
}
.changing-word {
  display: inline-block;
  position: relative;
  transition: transform 0.4s ease, opacity 0.4s ease;
  color: #f65f1e;
}
/* start position (bottom) */
.changing-word.slide-out {
  opacity: 0;
  transform: translateY(20px);
}

/* enter from bottom → top */
.changing-word.slide-in {
  opacity: 1;
  transform: translateY(0);
}
.first-button a {
	height: 3rem;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	line-height: 3rem;
}
.banner-section {
	position: relative;
	overflow: hidden;
}
.banner-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient( to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(255, 132, 0, 0.05) 100% ); z-index: 0; bottom: 0; }
.start-buton a:hover {
	box-shadow: 0 3px 10px #f65f1e !important;
	margin: -2px 0 0 0;
	transition: 0.5s;
}
.our-work a:hover {
	border-color: #f65f1e !important;
}
.npm-tage {
	position: absolute;
	background-color: #12172e;
	padding: .375rem .75rem;
	border-radius: .75rem;
	color: #fb9851;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
	left: 49px;
	bottom: 3px;
	border: 1px solid #515666;

	/* 🔥 SMOOTH CONTINUOUS FLOAT */
	animation: floatSmooth 4.5s linear infinite;
	will-change: transform;
}

@keyframes floatSmooth {
	0%   { transform: translateY(0); }
	25%  { transform: translateY(-6px); }
	50%  { transform: translateY(-10px); }
	75%  { transform: translateY(-6px); }
	100% { transform: translateY(0); }
}
.comment-tage {
	position: absolute;
	background-color: #12172e;
	padding: .375rem .75rem;
	border-radius: .75rem;
	color: #f65f1e;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
	right: 2rem;
	top: -1rem;
	border: 1px solid #515666;
	animation: floatSmooth 4.5s linear infinite;
	will-change: transform;
}
.trusted-span h4 span {
	color:#f65f1e;
	font-weight:600;
}
.slider-box-inner {
	height: 4rem !important;
	border: 1px solid #212637;
	border-radius: 1rem;
	background-color: #0e1226;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 4px 15px;
	opacity: 0.6;
}
.slider-box-inner:hover {
	opacity: inherit;
}
/* If there’s inner element, make it full height */
.slider-box-inner > * {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#slider-box .slick-slide {
    margin: 0 2rem;  /* 2rem left + 2rem right = 4rem gap */
}
.round-box {
	display: inline-block;
	background-color: #55372c;
	height: 3rem;
	width: 3rem;
	border-radius: 50%;
	position: absolute;
	right: -1.5rem;
	bottom: 0;
	z-index: -1;
	animation: floatSmooth 3s ease-in-out infinite;
}
/* Keyframes for floating effect */
@keyframes floatSmooth {
    0%   { transform: translateY(0); }
    25%  { transform: translateY(-6px); }
    50%  { transform: translateY(-10px); }
    75%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
.squer-box {
    display: inline-block;
    background-color: #53281f;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .75rem;
    position: absolute;
    right: -4rem;
    top: 50%;

    /* Smooth floating animation */
    animation: floatSmooth 3s ease-in-out infinite;
}

/* Keyframes for floating effect */
@keyframes floatSmooth {
    0%   { transform: translateY(0); }
    25%  { transform: translateY(-6px); }
    50%  { transform: translateY(-10px); }
    75%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
.badge h6 {
	border-radius: 9999px;
	padding: .5rem 1rem;
	line-height: 1.25rem;
	border: 1px solid #4c251f;
	background-color: #22171f;
	display: inline-block;
}
.h2-heading span {
	color: #fff;
}
.why-choose-heding p {
	margin: 0 0 14px 0;
}
.all-why-choose::after {
	content: '';
	background: url('https://testwp.truewebmakers.com/wp-content/uploads/2025/12/tt.png');
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-size: contain;
	opacity: 0.3;
	background-position: center;
	left: 0;
	right: 0;
	z-index: 1;
}
.why-choose-heding {
	position: relative;
	z-index: 11;
}
.whay-box-all .elementor-icon {
	display: table-cell;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	background-color: #261b25;
	align-items: center;
	vertical-align: middle;
}
.whay-box-all .elementor-icon svg {
	color: #f66422;
	display: inline;
}
.whay-box-all {
    transition: 
        transform 0.5s ease,
        box-shadow 0.5s ease;
    will-change: transform, box-shadow;
}

.whay-box-all:hover {
    transform: translateY(-0.5rem); /* smooth lift */
    box-shadow: 0 30px 60px -15px hsl(18, 92%, 54%, 0.2);
}
.bg-grid {
	background-image: linear-gradient(rgba(229, 231, 235, 0.1) 0.1px, transparent 1px), linear-gradient(90deg, rgba(229, 231, 235, 0.1) 0.1px, transparent 1px);
	background-size: 60px 60px;
}
.badge-text {
   display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-weight: 500;
  line-height: 20px;

  color: #ff6a1a; /* text color */
  background-color: rgba(255, 106, 26, 0.12); /* bg */
  border: 1px solid rgba(255, 106, 26, 0.35); /* border */
}
.badge-text .elementor-icon-box-title {
	margin: 0;
	font-size: .875rem;
	font-weight: 500;
	color: #F66523;
}
.badge-text svg {
	color: #F66523;
}
.squer-box-left-top {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 4rem;
  height: 4rem;

  background-color: rgba(255, 106, 26, 0.2);
  border-radius: .7rem;
  opacity: 0.7;
  filter: blur(4px);

  animation: floatUpDown 3.5s ease-in-out infinite;
}

/* Up–Down keyframe */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(14px);
  }
  100% {
    transform: translateY(0);
  }
}
.master-box-all {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: 
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}
.master-box-all:hover {
	border-color: #f66523 !important;
	box-shadow: 0 18px 40px -10px rgba(246, 101, 35, 0.45);
}
/* Bottom-right color glow */
.master-box-all::after {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -30%;
  width: 70%;
  height: 70%;

  background: radial-gradient(
    circle,
    rgba(132, 204, 22, 0.35),
    rgba(132, 204, 22, 0.15),
    transparent 60%
  );

  filter: blur(40px);
  pointer-events: none;
}
.master-box-all h2 {
	font-size: 1.25rem;
}
.master-box-all .elementor-widget-text-editor {
	color: #98A1B3;
	font-size: .875rem;
}
.master-box-all h5 {
	color: #F66523 !important;
	font-size: .875rem;
	font-weight: 600;
	position: relative;
	padding: 0 0 0 30px;
}
.master-box-all h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: -5px;
  width: 24px;
  height: 24px;
  background-color: #F66523; /* 👈 yahi color lagega */
  -webkit-mask-image: url('https://testwp.truewebmakers.com/wp-content/uploads/2025/12/icon-star.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url('https://testwp.truewebmakers.com/wp-content/uploads/2025/12/icon-star.svg');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

.icon-we-1 {
	display: inline-block;
	width: 4rem;
	height: 4rem;
	text-align: center !important;
	line-height: 3.5rem;
	border-radius: .75rem;
	background-color: #5e8e3e;
	transition: transform 0.35s ease;
}
.master-box-all:hover .icon-we-1 {
  transform: scale(1.1);
}
.master-box-all img {
	width: 2rem !important;
	height: 2rem !important;
}
.icon-we-2 {
	display: inline-block;
	width: 4rem;
	height: 4rem;
	text-align: center !important;
	line-height: 3.8rem;
	border-radius: .75rem;
	background: linear-gradient( 135deg, #0ea5a4, #2563eb );
	transition: transform 0.35s ease;
}
.master-box-all:hover .icon-we-2 {
  transform: scale(1.1);
}
.icon-we-3 {
	display: inline-block;
	width: 4rem;
	height: 4rem;
	text-align: center !important;
	line-height: 3.7rem;
	border-radius: .75rem;
	background-color: #00a4e4;
	transition: transform 0.35s ease;
}
.master-box-all:hover .icon-we-3 {
  transform: scale(1.1);
}
.icon-we-4 {
	display: inline-block;
	width: 4rem;
	height: 4rem;
	text-align: center !important;
	line-height: 3.7rem;
	border-radius: .75rem;
	background-color: #4353ff;
	transition: transform 0.35s ease;
}
.master-box-all:hover .icon-we-4 {
  transform: scale(1.1);
}
.icon-we-5 {
	display: inline-block;
	width: 4rem;
	height: 4rem;
	text-align: center !important;
	line-height: 3.5rem;
	border-radius: .75rem;
	background: linear-gradient( 135deg, #3b82f6 0%, #60a5fa 50%, #facc15 70%, #f59e0b 100% );
	padding: 5px;
	transition: transform 0.35s ease;
}
.master-box-all:hover .icon-we-5 {
  transform: scale(1.1);
}
.icon-we-5 img {
	width: auto !important;
	height: auto !important;
}
.icon-we-6 {
	display: inline-block;
	width: 4rem;
	height: 4rem;
	text-align: center !important;
	line-height: 3.5rem;
	border-radius: .75rem;
	background-color: #ff2d20;
	padding: 5px;
	transition: transform 0.35s ease;
}
.master-box-all:hover .icon-we-6 {
  transform: scale(1.1);
}
.icon-we-7 {
	display: inline-block;
	width: 4rem;
	height: 4rem;
	text-align: center !important;
	line-height: 3.5rem;
	border-radius: .75rem;
	background-color: #61dafb;
	padding: 5px;
	transition: transform 0.35s ease;
}
.master-box-all:hover .icon-we-7 {
  transform: scale(1.1);
}
.and-moreicon {
	display: inline-block;
	width: 4rem;
	height: 4rem;
	text-align: center !important;
	line-height: 3.5rem;
	border-radius: .75rem;
	background-color: #261b25;
	padding: 5px;
}
.counter-box .elementor-icon-box-title {
	margin: 0 0 .25rem 0;
}
.build-box-all .elementor-image-box-img {
	width: 120px !important;
	height: 120px;
	border-radius: 1rem;
	text-align: center;
	display: inline-block;
	margin: 0 !important;
	background-color: #131b38;
	line-height: 9rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
}
.build-box-all .elementor-image-box-img img {
	display: inline-block;
	height: 35px;
	width: auto;
}
.image-will-box-1 .elementor-image-box-img::after, .image-will-box-2 .elementor-image-box-img::after, .image-will-box-3 .elementor-image-box-img::after, .image-will-box-4 .elementor-image-box-img::after, .image-will-box-5 .elementor-image-box-img::after, .image-will-box-6 .elementor-image-box-img::after {
	background-color: #131b38;
	border: 1px solid rgba(255, 255, 255, 0.15);
	width: 2rem;
	height: 2rem;
	display: inline-block;
	line-height: 28px !important;
	border-radius: 50%;
	position: absolute;
	top: -11px;
	color: #98A1B3;
	font-weight: 600;
	font-size: 15px;
	right: 30px;
}
.image-will-box-1 .elementor-image-box-img::after {
	content: '1';
}
.image-will-box-2 .elementor-image-box-img::after {
	content: '2';
}
.image-will-box-3 .elementor-image-box-img::after {
	content: '3';
}
.image-will-box-4 .elementor-image-box-img::after {
	content: '4';
}
.image-will-box-5 .elementor-image-box-img::after {
	content: '5';
}
.image-will-box-6 .elementor-image-box-img::after {
	content: '6';
}
.build-box-all p {
	font-size: .75rem;
	line-height: 20px;
}
.build-box-all h3 {
	margin: 15px 0 10px 0;
}
.slider-text-box .elementor-image-box-img img {
	width: auto;
	height: 30px;
	display: inline-block;
}
.slider-text-box .elementor-image-box-img {
	width: 4.5rem !important;
	height: 4rem;
	display: inline-block;
	text-align: center;
	margin: 0 16px 0 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background-color: #131b38;
	border-radius: .75rem;
	line-height: 5.3rem !important;
}
.slider-text-box .elementor-image-box-title {
	margin: 0;
	font-size: .875rem;
	font-weight: 400 !important;
	color: #F66523 !important;
}
.slider-text-box .elementor-image-box-title span {
	position: relative;
	padding-left: 22px; /* icon ke liye space */
	color: #98A1B3;
}
.slider-text-box .elementor-image-box-title span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2398A1B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}
.slider-text-box .elementor-image-box-description {
	margin: 10px 0 0 0;
}
.box-services-all .elementor-widget-image {
	background-color: #261c26;
	width: 3.5rem;
	height: 3.5rem;
	text-align: center !important;
	border-radius: 1rem;
	line-height: 3.5rem;
}
.box-services-all .elementor-widget-image img {
	width: auto;
	height: 30px;
}
.box-services-all p {
	margin: 0;
}
.box-services-all ul {
	padding: 0;
	margin: 0;
	display: inline-block;
}
.box-services-all ul li {
	display: inline-block;
	width: auto;
	margin: 0 10px 6px 0px;
	color: #98a1b3;
	padding: .25rem .27rem;
	border-radius: 100px;
	background-color: #20263c;
	font-size: .75rem;
	font-weight: 400;
}
.box-services-all:hover .elementor-widget-image {
	background-color: #442525;
}
.box-services-all:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 30px 60px -15px hsl(18, 92%, 54%, 0.2);
}
.hedding-services p {
	margin: 0;
}
.featured-project-box-all .elementor-widget-image {
	overflow: hidden;
}
.featured-project-box-all ul {
	padding: 0;
	margin: 0;
	display: inline-block;
}
.featured-project-box-all ul li {
	display: inline-block;
	width: auto;
	margin: 0 10px 6px 0px;
	color: #98a1b3;
	padding: .25rem .27rem;
	border-radius: 100px;
	background-color: #20263c;
	font-size: .75rem;
	font-weight: 400;
}
.featured-project-box-all .elementor-widget-image {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
}
.featured-project-box-all .elementor-widget-image img {
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}
.featured-project-box-all:hover .elementor-widget-image img {
	transform: scale(1.1);
}
.featured-project-box-all:hover .elementor-widget-image::after {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	left: 0;
}
.featured-project-box-all:hover h2 {
	color: #F66523;
}
.featured-project-box-all .elementor-widget-image {
	position: relative;
}

/* 🔴 Circle + Icon in ::before */
.featured-project-box-all .elementor-widget-image::before {
	content: "";
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: 3rem;
	height: 3rem;
	background-color: #F66523;
	border-radius: 50%;
	z-index: 2;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.25rem;
	/* 👇 animation base */
	opacity: 0;
	transform: translateY(25px);
	transition: opacity 0.45s ease, transform 0.45s ease;
	opacity: 0;
}
.featured-project-box-all:hover .elementor-widget-image::before {
	display: inline-block;
}
.featured-project-box-all:hover .elementor-widget-image::before {
	opacity: 1;
	transform: translateY(0);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
	display: inline-block;
	background-color: #0F1328;
	border: 1px solid #FFFFFF26;
	border-radius: 1rem;
	overflow: hidden;
}
.testimonial-card .stars {
	padding-top: 1.5rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	color: #eab308;
	font-size: 28px;
	line-height: 20px;
}
.testimonial-card p {
	display: inline-block;
	margin: 0;
	color: #fff;
	padding: 0 25px;
	font-size: .875rem;
	line-height: 1.625;
}
.testimonial-card .testimonial-content {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	display: flex;
	gap: 15px;
	padding-bottom: 1.5rem;
}
.testimonial-card .testimonial-content .testimonial-content-left {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	overflow: hidden;
}
.testimonial-content .testimonial-content-right .testimonial-name {
	color: #fff;
	margin: 0;
	font-size: .875rem;
	font-weight: 600;
	font-family: "Inter", sans-serif;
}
.testimonial-content .testimonial-content-right .testimonial-role {
	color: #98A1B3;
	font-size: .75rem;
}
.testimonial-card:hover {
	border-color: #F66523;
	transition: 0.5s;
}
.testimonial-featured-img {
	overflow: hidden;
	position: relative;
	min-height: 200px;
}
.testimonial-featured-img img {
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
	height: 200px;
	width: 100%;
	object-fit: cover;
}
.testimonial-featured-img::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	top: 0;
	display: inline-block;
}
.testimonial-featured-img img {
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}
.testimonial-card:hover .testimonial-featured-img img {
	transform: scale(1.1);
}
.key-list .elementor-icon-box-title {
	margin: 0;
}
.company-tage .elementor-icon-box-title {
	margin: 0 0 3px 0;
}
.company-tagebox::after {
	content: '';
	width: 6rem;
	height: 6rem;
	position: absolute;
	right: -2rem;
	border-radius: 1.25rem;
	border: 1px solid #732D0D;
	top: -2rem;
}
.from-all-home {
	display: inline-block;
	width: 100%;
	background-color: #191d31;
	border-radius: 1.5rem;
	border: 1px solid #FFFFFF26;
	padding: 2rem;
}
.from-all-home p {
	margin: 0;
}
.from-all-home-left {
	float: left;
	width: 48%;
	margin-bottom: 1.5rem;
}
.from-all-home-right {
	float: right;
	width: 48%;
	margin-bottom: 1.5rem;
}
.from-all-home label {
	color: #fff;
	font-size: .875rem;
	font-weight: 500;
}
.from-all-home input {
	width: 100%;
	background-color: #0a0e1f;
	border: 1px solid #FFFFFF26;
	border-radius: 7px;
	padding: .75rem 1rem;
	color: #fff;
	font-size: 16px;
	margin: .5rem 0 0 0;
}
.from-all-home textarea {
	width: 100%;
	background-color: #0a0e1f;
	border: 1px solid #FFFFFF26;
	border-radius: 7px;
	padding: .75rem 1rem;
	color: #fff;
	font-size: 16px;
	margin: .5rem 0 0 0;
	height: 122px;
}
.from-all-home-full {
	display: inline-block;
	width: 100%;
	margin-bottom: 1.5rem;
}
.from-all-home-send input {
	margin: 0;
	background-color: #F66523;
	border-color: #F66523;
	font-weight: 600;
}
.wpcf7-not-valid-tip {
	color: #F66523 !important;
	font-size: 12px;
	font-weight: normal;
	display: block;
	position: absolute;
	margin: 4px 0 0 0;
}
.wpcf7-response-output {
	margin: 0 !important;
	color: #F66523 !important;
	border: none !important;
	text-align: center;
	padding: 14px 0 0 0 !important;
	position: absolute;
	right: 0;
	left: 0;
}
.wpcf7-spinner {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	bottom: 6px;
}
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required:focus:focus-visible {
	outline: none;
	border-color: #F66523;
}
.wpcf7-form-control.wpcf7-textarea:focus-visible {
	outline: none;
	border-color: #F66523;
}
.footer-menu ul {
    display: inline-block;
    width: 100%;
}
.footer-menu ul li {
    width: 100%;
}
.footer-menu ul li a {
    padding: 10px 0 !important;
    font-family: "Inter", Sans-serif !important;
}
.footer-menu ul li a {
    padding: 10px 0 !important;
    color: #98a1b3 !important;
    font-family: "Inter", Sans-serif !important;
    font-weight: 400 !important;
}
.footer-menu ul li a:hover {
	color: #f65f1e !important;
}
.link-menu li:last-child {
	display: none;
}
header.header {
    display: none;
}
.start-project-btn a {
    height: 48px;
    line-height: 48px;
}
.Award-icon .elementor-icon-box-wrapper {
    width: 252.97px;
    padding: 24px;
    border: 1px solid #242a4280;
    border-radius: 16px;
    background-color: #11162c99;
    position: absolute;
    backdrop-filter: blur(24px);
    bottom: -32px;
    left: -32px;
}
.Award-icon .elementor-icon-box-wrapper h3.elementor-icon-box-title {
    margin: 0;
    line-height: 28px;
}
.Award-icon .elementor-icon-box-wrapper .elementor-icon-box-icon {
    width: 56px;
    height: 56px;
    background-color: #f65f1e33;
    border-radius: 50%;
    text-align: center;
    line-height: 75px;
}
.timeline-main{
    position:relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #242a42;
    transform: translateX(-50%);
}
.timeline-items{
    position:relative;
    width:90%;
    margin:auto;
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 48px 60px;
    box-sizing: border-box;
}
.timeline-item.left{
    left:0;
    text-align:right;
}
.timeline-item.right{
    left:50%;
}
.timeline-item .dot {
    position: absolute;
    top: 50px;
    width: 16px;
    height: 16px;
    background: #f65f1e;
    border-radius: 50%;
    left: 100%;
    transform: translateX(-50%);
}
.timeline-item.right .dot{
    left:0;
}
.timeline-item .year {
    color: #f65f1e;
    font-weight: 700;
    display: block;
    font-size: 18px;
    line-height: 28px;
}
.timeline-item h3 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    font-family: Inter,sans-serif;
}
.timeline-item p {
    color: #98a1b3;
    display: inline-block;
    margin: 8px 0 0 0;
    font-size: 16px;
}
.mobile-arrows {
    display: none;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

.timeline-line{
    display:none;
}
.timeline-items{
    display:flex;
    overflow-x:auto;
    scroll-behavior:smooth;
}
.timeline-item{
    min-width:280px;
    width:100%;
    left:0 !important;
    text-align:left !important;
}
.timeline-item .dot{
    position:static;
    margin-bottom:15px;
}
.mobile-arrows{
    text-align:center;
    margin-top:20px;
}
.mobile-arrows button{
    background:#ff6a00;
    border:none;
    color:#fff;
    padding:8px 14px;
    margin:0 5px;
    cursor:pointer;
}

}

.meet-image-box {
    overflow: hidden;
    border-radius: 16px;
}
.meet-image-box img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
	border-radius:16px;
}
/* Overlay */
.meet-image-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: rgba(0, 0, 0, 0.3);
    transition: height 0.5s ease;
	border-radius:16px;
}
/* Hover Effects */
.meet-image-box:hover img {
    transform: scale(1.1);
}
.meet-image-box:hover::after {
    height: 100%;
}
.meet-image-box {
    overflow: hidden;
}
.ready-Worsection {
    margin: 0 auto;
    width: 1280px;
}
.ready-Worsection {
    position: relative;
    background:
        linear-gradient(
            to bottom right,
            hsl(18 92% 54% / 0.1),
            hsl(18 92% 54% / 0)
        ),
        linear-gradient(
            to bottom right,
            #0b132b,
            #07132a
        );
}


.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/* CARD */
.service-card{
    background:#0f172a;
    padding:32px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.06);
    transition:all .4s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}
.service-card:hover{
   transform: translateY(-0.5rem);
   box-shadow: 0 30px 60px -15px hsl(18, 92%, 54%, 0.2);
}
.service-top {
	display: flex;
	gap: 20px;
	margin-bottom: 0;
}
.service-icon{
    min-width:60px;
    height:60px;
    background:rgba(255,115,0,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    transition:.3s;
}
.service-icon img{
    width:28px;
    height:28px;
}
.service-content-wrap h3 {
	color: #fff;
	margin: 0;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	font-family: "Inter", Sans-serif;
}
.service-desc {
	color: #98a1b3;
	font-size: 16px;
	margin: 0 0 0 0;
	font-weight: 400;
	line-height: 23px;
}
.service-features {
	list-style: none;
	padding: 0;
	margin: 24px 0 0 0;
	columns: 2;
}
.service-features li {
	position: relative;
	padding-left: 22px;
	line-height: 20px;
	font-size: 14px;
	color: #cbd5e1;
	font-family: "Inter", Sans-serif;
	margin-bottom: 12px;
}
.service-features li:before{
    content:"✔";
    position:absolute;
    left:0;
    color:#ff7300;
    font-size:13px;
}
.service-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #242a4280;
	padding-top: 24px;
	margin-top: 24px;
}
.service-price {
	color: #f65f1e;
	font-weight: 700;
	font-size: 16px;
	font-family: "Inter", Sans-serif;
}
.service-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 12px;
	border: 1px solid #20263c;
	border-radius: 8px;
	color: #ff7300;
	text-decoration: none;
	font-size: 14px;
	transition: .3s;
	background-color: #0a0e1f;
	line-height: 36px;
	height: 36px;
	font-family: "Inter", Sans-serif;
}
.service-btn:hover {
	background: #f65f1e;
	color: #fff;
	border-color: #f65f1e;
}
.service-btn:hover .service-arrow {
	position: relative;
	left: 5px;
	transition-duration: 0.5s;
}
/* MOBILE */
@media(max-width:767px){
    .services-grid{
        grid-template-columns:1fr;
    }
    .service-features{
        columns:1;
    }
}
.numbar-title h2 {
    position: absolute;
    top: -48px;
    left: -30px;
}
.sport-box span.elementor-icon {
    display: inline-block;
    padding: 13px 0 0 0;
}

/* =========================
   FEATURED PROJECTS
=========================*/

.project-tabs {
    text-align: left;
    margin-bottom: 64px;
}
.project-tabs .tab-btn {
    background: #20263c;
    border: none;
    padding: 8px 20px;
    margin: 0 12px 0 0;
    border-radius: 100px;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 14px;
    line-height: 20px;
}
.project-tabs .tab-btn:hover{
    background:#1e293b;
    color:#fff;
}
.project-tabs .tab-btn.active{
    background:#f65f1e
0;
    color:#fff;
}
/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    padding-bottom: 96px;
}
.project-card{
    overflow:hidden;
}
.project-image img {
    width: 100%;
    height: 288px;
    object-fit: cover;
    border-radius: 16px;
}
.project-card:hover .project-image:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(    to top,    hsl(228 50% 8% / .95),    hsl(228 50% 8% / .6));
    z-index: 11;
    opacity: 0.6;
}
/* CONTENT */
.project-content {
    padding: 24px 0 0 0;
}
.project-content small {
    color: #f65f1e;
    font-size: 14px;
    display: block;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}
.project-content h3 {
    color: #fff;
    margin: 8px 0 0 0;
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
}
.project-content p {
    color: #98a1b3;
    font-size: 16px;
    margin: 12px 0 0 0;
    line-height: 26px;
}
.project-tags{
    margin-bottom:20px;
}
.project-tags span{
    display:inline-block;
    background:#111827;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    color:#cbd5e1;
    margin:4px 4px 0 0;
}
span.project-category-label {
    position: absolute;
    top: 16px;
    z-index: 1;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 16px;
    border-radius: 100px;
    background-color: #0a0e1fcc;
    left: 16px;
    color: #fff;
}
.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f65f1e;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    line-height: 1;
    opacity: 0;
    transform: translateY(40px);
    z-index: 111;
    transition: all 0.4s ease;
}
.project-card:hover .project-btn {
    opacity: 1;
    transform: translateY(0);
}
@media(max-width:1024px){
    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .projects-grid{
        grid-template-columns:1fr !important;
    }
}
.project-tags ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}
.project-tags li {
    display: inline-block;
    background: #20263c;
    padding: 4px 12px;
    margin: 0 8px 0 0;
    border-radius: 20px;
    font-size: 12px;
    line-height: 16px;
    color: #98a1b3;
}
.project-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.project-image {
    overflow: hidden;
}

.project-image img {
    width: 100%;
    transition: transform 0.5s ease;
}
.project-card:hover .project-image img {
    transform: scale(1.1);
}
.home-post-section .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 post per row */
    gap: 30px;
}
.home-post-section .project-image img {
    height: 444px;
    object-fit: cover;
}
.home-post-section .projects-grid {
    padding: 0;
    margin: 48px 0 0 0;
}
@media (max-width: 767px) {
.home-post-section .projects-grid {
        grid-template-columns: 1fr; /* Mobile me 1 post per row */
    }
}
.e-connerce-tage h4 {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f65f1e;
    border-radius: 16px;
    font-size: 14px !important;
    font-weight: 500 !important;
}
.e-connerce-tage {
    position: absolute;
    top: 5rem;
    left: 1rem;
}
.view-full-button {
    position: absolute;
    bottom: 125px;
    right: 0;
    left: 0;
    display: none;
    margin: 0 auto;
}
.case-study-image:hover .view-full-button {
    display: inline-block !important;
}
.testi-user-box h3.elementor-image-box-title {
    margin: 0 0 5px 0;
}
.box-testimonal-all {
    margin: 0 auto;
    max-width: 896px;
}
.testi-user-box h3 {
    margin: 0 0 5px 0;
}
.current-menu-item a.hfe-menu-item.elementor-button {
    color: #fff !important;
}
.adress-box-get .elementor-icon-box-icon {
    background-color: #f65f1e1a;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    text-align: center;
    line-height: 60px;
}
.adress-box-get h3.elementor-icon-box-title {
    margin: 0 0 8px 0;
}
.rating-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
}

/* Left Circles */
.rating-circles {
    display: flex;
    gap: 0;
    margin: 0 0 0 0;
}
.rating-circles span {
    width: 32px;
    height: 32px;
    background: #20263c;
    border-radius: 50%;
    border: 1px solid #0a0e1f;
    margin: 0 0 0 -7px;
}
.rating-box {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: Arial, sans-serif;
}
/* Stars */
.rating-stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 3px;
}

/* Rating Text */
.rating-text {
    color: #fff;
    font-size: 14px;
}
.rating-text strong {
    font-weight: 700;
}
.projects-grid .project-card .project-content p {
	display: none;
}

.sp-banner-wrap {
	display: flex;
	align-items: start;
	gap: 50px;
}
.sp-left{
    width:50%;
}
.sp-right{
    width:50%;
}
.sp-right img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}
.project-category-label{
    display:inline-block;
    background:#111827;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    margin-bottom:15px;
    font-size:14px;
}
.sp-title{
    margin-bottom:20px;
}
.project-tag-list{
    list-style:none;
    padding:0;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}
@media(max-width:991px){
    .sp-banner-wrap{
        flex-direction:column;
    }
    .sp-left,
    .sp-right{
        width:100%;
    }
}
.back-button .sp-back-btn {
	color: #98a1b3;
	font-size: 18px;
	font-family: "Inter", Sans-serif;
	font-weight: 500;
}
.sp-back-btn:hover {
	color: #fff;
}
.back-button .sp-back-btn svg {
	position: relative;
	top: 2px;
	margin: 0 3px 0 0;
}
.sp-left .project-category-label {
	background-color: #f65f1e1a;
	padding: 8px 16px;
	font-family: "Inter", Sans-serif;
	border: 1px solid #f65f1e33;
	font-size: 14px;
	font-weight: 500;
	color: #f65f1e;
	margin: 32px 0 0 0;
}
.sp-left .sp-title {
	color: #fff;
	font-family: "Inter", Sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 55px;
	margin: 10px 0 0 0;
}
.sp-left .sp-content {
	color: #98a1b3;
	font-family: "Inter", Sans-serif;
	margin: 24px 0 0 0;
	font-size: 20px;
	line-height: 30px;
}
.sp-meta-info {
	display: flex;
	width: 100%;
	margin: 32px 0 0 0;
	gap: 24px;
}
.sp-meta-info div {
	color: #98a1b3;
	font-size: 16px;
	font-family: "Inter", Sans-serif;
}
.sp-meta-info div svg {
	color: #f65f1e;
	width: 20px;
	position: relative;
	top: 6px;
	margin: 0 5px 0 0;
}
.sp-left .project-tag-list {
	margin: 32px 0 0 0;
}
.sp-left .project-tag-list li {
	color: #f65f1e;
	font-size: 14px;
	line-height: 20px;
	padding: 8px 16px;
	border-radius: 100px;
	background-color: #f65f1e1a;
	font-family: "Inter", Sans-serif;
}
.discovery-tage h4 span {
	color: #98a1b3;
	font-size: 12px;
	text-transform: capitalize;
}
.icon-journey .elementor-icon {
	position: absolute;
	right: -20%;
	background-color: #f65f1e1a;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	padding: 6px 18px;
	border: 2px solid #f65f1e !important;
	fill: #f65f1e !important;
	top: -20px;
	z-index: 1;
}
.icon-journey .elementor-icon svg {
	width: 24px;
	color: #f65f1e !important;
	fill: #f65f1e !important;
}
.icon-journey-left .elementor-icon {
	left: -20%;
}
.line-canter::after {
	content: '';
	position: absolute;
	top: 5px;
	bottom: 0;
	width: 1px;
	background-color: #242a42;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.upi-box-icon .elementor-icon-box-title {
	margin: 0 0 5px 0;
}
.upi-box-icon .elementor-icon-box-icon {
	background: linear-gradient(135deg, #f97316 10%, #4ade80 100%, #22c55e 50%);
	border-radius: 18px;
	padding: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.list-upi-all ul {
	padding: 0;
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 24px 0 0;
	gap: 8px;
}
.list-upi-all ul li {
	list-style: none;
	background-color: #20263c;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	line-height: 16px;
}
.paypal-icon .elementor-icon-box-title {
	margin: 0 0 5px 0;
}
.paypal-icon .elementor-icon-box-icon {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
    border-radius: 18px;
    padding: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pay-with-paypal a {
	width: 100%;
}
.slider-logo-brands img {
	max-height: 3.5rem;
	border-radius: 10px;
	width: auto;
	object-fit: contain;
}
.slider-logo-brands .slick-list {
    width: 100%;
}

.sk-process-tabs {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
}
.sk-tab{text-align:center;cursor:pointer;}
.sk-icon {
	position: relative;
	z-index: 1;
	margin: 0 auto;
}
.sk-icon {
	border: 1px solid #141d3dcc;
	border-radius: 16px;
	transition: .4s;
	width: 120px;
	height: 120px;
	background-color: #141d3dcc;
	padding: 37px 0;
	position:relative;
}
.sk-icon img {
    height: 48px;
    filter: brightness(0) invert(1);
}
.sk-tab span {
	position: absolute;
	right: -8px;
	top: -8px;
	width: 32px;
	height: 32px;
	background-color: #141d3d;
	border-radius: 50%;
	line-height: 29px;
	color: #fff;
	border: 1px solid #242a42;
	font-size: 14px;
}
.sk-tab h4 {
	color: #fff;
	font-size: 14px;
	font-family: "Inter", Sans-serif;
	font-weight: 600;
	margin: 14px 0 0 0;
}
.sk-tab-desc {
	color: #98a1b3;
	margin: 10px 0 0 0;
	font-size: 12px;
	line-height: 20px;
	display: none;
}
.sk-process-content {
	padding: 30px;
	border-radius: 15px;
	color: #fff;
	max-width: 673px;
	margin: 32px auto 0;
}
.sk-content{display:none;}
.sk-content.active{display:block;}
.sk-content-inner{
    display:flex;
    align-items:center;
    gap:30px;
}
.sk-left-icon img {
    height: 26px;
    filter: brightness(0) invert(1);
}
.sk-step-top{
    margin-bottom:10px;
    font-weight:bold;
    color:#38bdf8;
}
.sk-arrow{margin:0 10px;}
.sk-tab.sk-tab-1.completed .sk-icon {
	background-color: #06b6d4;
	border-color: #06b6d4;
}
.sk-tab.sk-tab-2.completed .sk-icon {
	background: linear-gradient(to right, #ec4899, #a855f7);
}
.sk-tab.sk-tab-3.completed .sk-icon {
	background-color: #f65f1e;
}
.sk-tab.sk-tab-4.completed .sk-icon {
	background-color: #138a5e;
}
.sk-tab.sk-tab-5.completed .sk-icon {
	background: linear-gradient(to right, #ef4444, #f97316);
}
.sk-tab.sk-tab-6.completed .sk-icon {
	background: linear-gradient(to right, #a855f7, #6366f1);
}
.sk-tab.completed .sk-icon span {
	background-color: #f65f1e;
	border-color: #f65f1e;
}	
.sk-content {
	border: 1px solid #f65f1e33;
	padding: 32px;
	border-radius: 16px;
}
.sk-content.sk-content-1 {
	background-color: #111c3a;
}
.sk-content.sk-content-2 {
	background-color: #1d183a;
}
.sk-content.sk-content-3 {
	background-color: #251824;
}	
.sk-content.sk-content-4 {
	background-color: #0e232b;
}	
.sk-content.sk-content-5 {
	background-color: #241b23;
}	
.sk-content.sk-content-6 {
	background-color: #15193a;
}		
.sk-left-icon {
	width: 80px;
	height: 60px;
	border-radius: 16px;
	display: inline-block;
	text-align: center;
	line-height: 74px;
}
.sk-content.sk-content-1 .sk-left-icon {
	background-color: #06b6d4;
	border-color: #06b6d4;
}
.sk-content.sk-content-2 .sk-left-icon {
	background: linear-gradient(to right, #ec4899, #a855f7);
}
.sk-content.sk-content-3 .sk-left-icon{
	background-color: #f65f1e;
}
.sk-content.sk-content-4 .sk-left-icon {
	background-color: #138a5e;
}
.sk-content.sk-content-5 .sk-left-icon{
	background-color: #138a5e;
}
.sk-content.sk-content-6 .sk-left-icon {
	background: linear-gradient(to right, #a855f7, #6366f1);
}
.sk-process-content .sk-step-number {
	color: #F65F1E;
	font-weight: 400;
	font-size: 14px;
}
.sk-process-content .sk-arrow-text {
	color: #98A1B3;
	font-size: 14px;
	font-weight: 400;
}	
.sk-process-content .sk-arrow {
	color: #98A1B3;
}		
.sk-process-tabs{
    position:relative;
}
.sk-progress-bar {
	position: absolute;
	top: 60px;
	left: -28px;
	width: 104%;
	height: 4px;
	background: #242a4280;
	z-index: 0;
	border-radius: 4px !important;
	overflow: hidden;
}
.sk-progress-fill{
    height:100%;
    width:0%;
    background:#F65F1E; /* orange fill */
    transition:width .4s ease;
}
.sk-tab{
    position:relative;
    z-index:2;
}	
.sk-icon {
    position: relative;
    z-index: 1;
}
.sk-icon {
    position: relative;
    z-index: 1;
}
.sk-tab.active .sk-icon::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius:10px;
    background: rgba(255, 106, 26, 0.12);
    z-index: -1;
    animation: skActivePulse 1.2s ease-out 3;
	width: 150%;
	left:-25px;
	right:0;
	margin: auto;
}
@keyframes skActivePulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.15);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}	
.sk-pagination{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:25px;
}
.sk-dot{
    width:8px;
    height:8px;
    border-radius:20px;
    background:#ff6a1a55;
    transition:all 0.3s ease;
    cursor:pointer;
}
.sk-dot.active{
    width:26px;
    background:#ff6a1a;
}	

.sk-upi-wrapper {
    max-width: 100%;
}

.sk-upi-wrapper label {
    display: block;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    font-family: "Inter", sans-serif;
}
/* Main Flex */
.sk-upi-box {
    display: flex;
    align-items: center;
    gap: 10px; /* input aur button ke beech gap */
}
.sk-upi-box input {
    flex: 1;
    background: #20263C80;
    border: 1px solid #20263C;
    border-radius: 12px;
    color: #ffffff;
    padding: 16px 15px;
    font-size: 16px;
    outline: none;
    font-family: "Inter", sans-serif;
}
.sk-copy-btn {
    background: #0A0E1F;
    border: 1px solid #20263C;
    border-radius: 12px;
    width: 48px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9ca3af;
    transition: all 0.3s ease;
}

/* Hover Effect */
.sk-copy-btn:hover {
    background: #f65f1e;
    color: #ffffff;
}












/* Mobile Styles */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav.active {
    display: flex;
  }
	
#primary-menu {
    display: none;
}

#primary-menu.toggled-on {
    display: block;
}
.left-logo {
	float: left;
	width: 50%;
}
.right-nav {
	float: right;
	width: 50%;
	text-align: right;
}
.header-row .e-con-inner {
	display: inline-block !important;
	padding: 7px 15px;
}	
.right-nav .e-con-inner {
	padding: 0 !important;
}	
.left-logo .hfe-site-logo-set img {
	position: relative;
	top: 5px;
}	
.first-button {
	width: 47% !important;
}	
.first-button a {
	width: 100%;
}	
.glass-card {
	width: 100% !important;
	margin: 30px auto 0 !important;
}
.whay-box-all .elementor-icon-box-wrapper {
	display: inline-block !important;
}
.home-post-section .projects-grid {
	padding: 0;
	margin: 15px 0 0 0;
}	
.home-post-section .project-image img {
	height: auto;
	object-fit: cover;
}	
.testimonial-grid {
	grid-template-columns: repeat(1, 1fr);
}	
.from-all-home {
	padding: 15px;
}	
.from-all-home-left {
	width: 100%;
}	
.from-all-home-right {
	float: right;
	width: 100%;
}	
.ready-Worsection {
	margin: 0 auto;
	width: 100%;
}	
.timeline-item {
	min-width: 100%;
	width: 100% !important;
	left: 0 !important;
	text-align: left !important;
	padding: 15px !important;
}
.timeline-item .dot {
	display: none;
}	
.Award-icon .elementor-icon-box-wrapper {
	width: 230.97px;
	padding: 15px;
	bottom: -25px;
	left: 25px;
}	
.service-card {
	padding: 15px;
	display: inline-block;
}	
.service-top {
	display: inline-block;
	text-align: left;
}	
.service-icon {
	min-width: 60px;
	height: 60px;
	display: inline-block;
	line-height: 80px;
	margin-bottom: 20px;
	text-align: center;
}	
.service-bottom {
	align-items: center;
	padding-top: 15px;
	margin-top: 15px;
}
.service-content-wrap h3 {
	color: #fff;
	margin: 0;
	font-size: 20px;
	line-height: 24px;
}	
.project-tabs {
	text-align: left;
	margin-bottom: 30px;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 20px;
}
.projects-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	padding-bottom: 30px;
}
.adress-box-get .elementor-icon-box-icon {
	display: inline-block;
}
.rating-box {
	gap: 10px;
}	
.menua-all-right li {
	margin: 0 0 0 0;
	padding: 0 22px;
}
#menu-item-4652 {
	padding: 0;
}	
#menu-item-4652 .hfe-menu-item {
	padding-left: 20px;
}	
.line-canter::after {
	display: none;
}	
.icon-journey .elementor-icon {
	position: inherit;
	margin-bottom: 20px;
}	
	
.sk-process-tabs {
	display: inline-block;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
}	
.sk-tab {
	position: relative;
	z-index: 2;
	width: 49%;
	display: inline-block;
	margin: 0 0 30px 0;
}	
.sk-progress-bar {
	display: none;
}	
.sk-process-content {
	padding: 0;
	border-radius: 15px;
	color: #fff;
	max-width: 100%;
	margin: 16px auto 0;
}	
.sk-content {
	border: 1px solid #f65f1e33;
	padding: 15px;
	border-radius: 16px;
}	
.sk-left-icon {
	width: 150px;
}	
	
	
	
	
	
	
	
	
	
	
}
