:root {
	--primary-color: #ed1c24;
	--secondary-color: white;
	--light-color: #212121;
	--white-color: #fff;
	--black-color: #000;
}

.container {
	max-width: 1400px;
	width: 100%;
	height: auto;
}

body {
	overflow-x: hidden;
	background-color: black;
	color: white;
	font-family: 'Outfit';
}

header {
	box-shadow: 0px 2px 6px 3px #00000024;
}

html {
	overflow-x: hidden;
}

a,
a:hover {
	text-decoration: none;
}

.bg-purple {
	background-color: #f5f7fe !important;
}

.bg-green {
	background-color: #f4fbf2 !important;
}

.bg-pink {
	background-color: #fdf5f5 !important;
}

@keyframes pulse {
	0% {
		transform: scale(1) rotate(-13deg);
		opacity: 1;
	}

	50% {
		transform: scale(1.08) rotate(-8deg);
		opacity: 0.8;
	}

	100% {
		transform: scale(1) rotate(-13deg);
		opacity: 1;
	}
}

@keyframes pulse2 {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.08);
		opacity: 0.8;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.pulse {
	animation: pulse 2s infinite ease-in-out;
}


  #cursor {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: red;
    border-radius: 50%; /* round shape */
    pointer-events: none; /* mouse events ignore kare */
    transform: translate(-50%, -50%);
    z-index: 9999; /* top pe dikhe */
    /*border: 1px solid;*/
  }


/* Header */
.marquee {
	background: black;
	font-size: 18px;
	font-family: "Outfit", sans-serif;
	padding: 16px 0;
	margin-bottom: 12px;
}

.mobile-menu-section {
	display: none;
}

.mobile-menu-section {
	display: none;
}

.mobile-menu-section.active {
	display: flex;
}



button.menu-btnactive {
	background: white;
	color: black;
	font-size: 46px;
	border-radius: 30px;
	padding: 0px 0px;
	border: none;
	background: linear-gradient(90deg, var(--primary-color), #000000, var(--primary-color));
	background-size: 200% auto;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-stroke: 2px #e8cfc4;
	animation: gradientMove 4s linear infinite;
	display: none;
}

.header-sec {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9;
	width: 70%;
	background: linear-gradient(225deg, #000000, #842029);
	border-radius: 80px;
	padding: 10px 7px;
}

.menu-list {
	padding-left: 30px;
}

.header-btn {
	background: #ed1c24;
	width: 200px;
	border: 1px solid;
	height: 50px;
	font-size: 20px;
	border-radius: 50px;
	color: white;
	border-color: var(--primary-color);
	transition: 0.5s;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.header-btn i {
	font-size: 15px;
}

.header-btn:hover {
	background: var(--white-color);
	color: var(--black-color);
}

.menu-text {
	font-size: 18px;
	font-family: auto;
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--secondary-color);
}

.menu-text:hover {
	color: var(--primary-color);
}

/* Banner Section */

.banner-sec {
	overflow: hidden !important;
	background: var(--primary-color) url(../images/banner.png);
	background-size: cover;
	background-position: top;
	display: flex;
	align-items: end;
	justify-content: space-around;
	max-height: 100%;
	height: calc(100vh - 0px);
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	padding-bottom: 65px;
}

#tsparticles {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.primary-hd {
	font-size: calc(3vw + 3vh + 3vmin);
	margin-bottom: 26px;
	font-family: "Big Shoulders", sans-serif;
	font-weight: 900;
}

/* .primary-hd span {
  color: transparent;
  -webkit-text-stroke: 2px #e8cfc4;
} */
.primary-hd span {
	background: linear-gradient(90deg,
			var(--primary-color),
			#000000,
			var(--primary-color));
	background-size: 200% auto;

	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-stroke: 2px #e8cfc4;
	animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
	0% {
		background-position: 0% center;
	}

	100% {
		background-position: 200% center;
	}
}

.para-text {
	font-size: 18px;
	font-family: "Outfit", sans-serif;
}

.para-text {
	font-size: 25px;
	font-family: "Outfit", sans-serif;
	line-height: 35px;
}

.form-box input,
.form-box textarea,
.form-box select {
	width: 100%;
	margin-bottom: 15px;
	padding: 13px 10px;
	border-radius: 10px;
	border: 1px solid;
	font-size: 14px;
	background: transparent;
	color: white;
	outline: none;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
	color: white;
}

.checkbox label {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 11px;
}

h3.form-head {
	font-size: 30px;
	color: white;
	text-align: center;
	margin-bottom: 10px;
	font-family: "outline";
	text-transform: capitalize;
	margin-bottom: 20px;
}

.banner-form {
	background: #00000061;
	padding: 30px;
	border-radius: 20px;
	border: 1px solid #ffffff47;
	position: relative;
}

.submit-btn {
	background: var(--primary-color);
	max-width: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 12px 0;
	font-size: 16px;
	text-transform: uppercase;
	color: white;
	border-radius: 50px;
	border: none;
	font-family: "outline";
}

.icon1 img {
	width: 160px;
}

.icon1 {
	position: absolute;
	right: -70px;
	top: -70px;
	animation: pulse2 2s infinite ease-in-out;
}

option {
	background: black;
}

/* Logo Section Animation */
.brands-section {
	padding: 50px 0;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-250px * 7));
	}
}

.slider {
	height: 100px;
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.slider .slide-track {
	display: flex;
	justify-content: space-between;
	width: calc(300px * 10);
	animation: scroll 40s linear infinite;
}

.brands-logo img {
	width: 100px;
	height: 100px;
}

/* Service section */


.service-section {
	background: var(--primary-color) url("../images/banner.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
}

.service-section-second {
	/* background: var(--primary-color) url("../images/banner2.png"); */
	background: #000;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
}

.getting-content {
	padding-left: 30px;
}

.getting-content h2.woo-btn.pulse {
	left: 0;
}

.service-content-area h4 {
	font-size: 40px;
	line-height: 50px;
	font-family: "OutLine", sans-serif;
}

.service-content-area h3 {
	font-size: 60px;
	text-transform: capitalize;
	font-weight: 800;
	font-family: "Big Shoulders", sans-serif;
	line-height: 86px;
}

h2.woo-btn {
	margin: 50px 0;
	background: linear-gradient(45deg, #842029, #000000e0);
	width: fit-content;
	padding: 20px 20px;
	font-size: 33px;
	text-transform: uppercase;
	border: 1px solid;
	border-radius: 11px;
	font-family: "Big Shoulders", sans-serif;
	position: absolute;
	z-index: 1;
	left: -40px;
	top: -110px;
}

a.startyour-project {
	background: white;
	color: black;
	font-family: "OutLine", sans-serif;
	font-size: 20px;
	padding: 18px 20px;
	border-radius: 80px;
}

.callbtn-project {
	background: var(--primary-color);
	color: black;
	font-family: "OutLine", sans-serif;
	font-size: 20px;
	padding: 18px 20px;
	border-radius: 80px;
}

a.callbtn-project {
	color: black;
	text-decoration: none;
}

a.callbtn-project:hover {
	color: black !important;
}

.service-content-area h3 span {
	background: linear-gradient(90deg,
			var(--primary-color),
			#000000,
			var(--primary-color));
	background-size: 200% auto;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-stroke: 2px #e8cfc4;
	animation: gradientMove 4s linear infinite;
}


/* Donate Section */


.dominate-hd {
	font-size: 56px;
	line-height: 65px;
	color: var(--secomdary-color);
	font-weight: 600;
	width: 580px;
}

.dominate-hd span {
	color: var(--primary-color);
	font-weight: 700;
	text-transform: capitalize;
	background: linear-gradient(90deg, var(--primary-color), #000000, var(--primary-color));
	background-size: 200% auto;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-stroke: 2px #e8cfc4;
	animation: gradientMove 4s linear infinite;
}

/* .dominate-para {
  font-size: 18px;
  line-height: 30px;
  color: var(--secomdary-color);
  margin-bottom: 0;
  font-weight: 400;
} */

.iconbox-content {
	background: var(--black-color);
	padding: 20px;
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	transition: 0.5s;
	border-bottom: 6px solid var(--primary-color);
	flex-direction: column;
	max-width: 355px;
	width: 100%;
	height: 360px;
}

.iconbox-content:hover {
	transform: translateY(-10px);
	border-color: var(--secomdary-color);
}

section.dominate-search {
	padding: 80px 0;
	background: #121212;
	width: 98%;
	margin: 50px auto;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.dominate-dott {
	position: absolute;
	top: 0;
	left: 0;
}

.dominate-dott-bottom {
	position: absolute;
	right: 0;
	bottom: 0;
}

.service-boxes {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.iconbox-content h4 {
	font-size: 24px;
	font-weight: 700;
	color: var(--secomdary-color);
	text-align: center;
	font-family: "Outfit", sans-serif;
}

.iconbox-content img {
	margin: 0 auto;
	width: 240px;
}

.iconbox-content p {
	font-size: 16px;
	font-weight: 400;
	color: var(--secomdary-color);
}

.firstbox {
	margin-top: 130px;
}

.lastbox {
	margin-top: -130px;
}

/* FAQS */

.faq-container {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}

.faq-item {
	background: black;
	border-radius: 10px;
	margin-bottom: 10px;
	overflow: hidden;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #ddd;
	font-family: "OutLine", sans-serif;
}

.faq-question {
	padding: 24px 20px;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	line-height: 22px;
	color: white;
}

.faq-item.active {
	color: var(--secomdary-color) !important;
}

.faq-item.active .faq-question {
	background: var(--secomdary-color);
	color: white;
	border-bottom: 1px solid #ffffff6b;
}

.faq-question:hover {
	background: var(--secomdary-color);
	color: white;
}

.faq-question i {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	transition: transform 0.3s;
	width: 40px;
	background: var(--primary-color);
	height: 40px;
	align-items: center;
	justify-content: center;
	display: flex;
	border-radius: 60px;
	color: white;
}

.faq-item.active .faq-question i {
	transform: translateY(-50%) rotate(180deg);
	background: var(--black-color);
}

.faq-answer {
	display: none;
	padding: 24px 20px;
	background: var(--secomdary-color);
	color: white;
	font-size: 16px;
	line-height: 1.5;
	line-height: 30px;
}

section.faq-section {
	padding: 80px 0;
}

.faq-item.active .faq-question {
	background: var(--primary-color);
	color: white;
	border-bottom: 1px solid #ffffff6b;
}

.faq-question {
	padding: 24px 20px;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	line-height: 22px;
	color: white;
}


/* Growth Section */

.growth-section {
	padding: 40px 0;
	overflow: hidden;
	background: var(--primary-color) url('../images/index-sec2-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

h4.unlockbusiness {
	font-size: 40px;
	font-weight: 600;
	line-height: 50px;
	color: var(--secomdary-color);
	margin-bottom: 0;
}

p.growth-para {
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	padding-left: 0;
	color: var(--secomdary-color);
	margin-bottom: 0;
}

/* .growth-slider {
    display: flex;
    align-items: center;
    gap: 30px;
} */
.slider-layer {
	width: 100%;
	max-width: 555px;
}

/* .slider-growth-box {
    transform: translate(300px, 0px);
} */
.slider-boxgrowth {
	background: #ffffff;
	padding: 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 1px 1px 10px 0 #00000017;
	max-width: 520px;
	width: 100%;
}

.slider-layer {
	margin: 5px 15px;
}

.head {
	text-align: center;
	background: black;
	padding: 17px 30px;
	font-size: 24px;
	color: white;
	line-height: 35px;
	font-weight: 600;
	font-family: 'Outfit';
	display: flex;
	justify-content: space-between;
}

.content {
	padding: 20px 30px;
}

.content h4 {
	font-size: 24px;
	font-weight: 600;
	color: black;
	font-family: 'Outfit';
}

.content p {
	font-size: 14px;
	line-height: 22px;
	color: #212121;
	font-family: 'Outfit';
}

.content hr {
	color: black;
	margin-bottom: 30px;
	opacity: 1;
}

.content ul {
	padding: 0 4px 0 10px;
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 17px;
}

.content ul li {
	margin-bottom: 10px;
	color: black;
	font-family: 'Outfit';
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	user-select: all !important;
}

.content h5 {
	font-size: 40px;
	color: var(--primary-color);
	font-weight: 800;
	line-height: 50px;
	font-family: 'Big Shoulders';
}

.content h6 {
	font-size: 18px;
	color: var(--secomdary-color);
	font-weight: 500;
	line-height: 24px;
}

.button-box {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.button-box button {
	background: transparent;
	border: 1px solid white;
	color: white;
	font-size: 22px;
	padding: 10px 10px;
	border-radius: 11px;
	transition: 0.6s;
}

.button-box button:hover {
	background: var(--primary-color);
	color: white;
}

.getbtn-packing {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: white;
	font-size: 16px;
	padding: 10px 30px;
	border-radius: 11px;
	transition: 0.6s;
}

a.header-btn.callbtn-pack {
	background: black;
	border-color: black;
	color: white;
}

.slider-growth-box {
	margin-top: 50px;
}


.footer-section {
	background: var(--primary-color) url(../images/banner.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

	color: var(--white-color);
	padding: 80px 0;
}

.lets-contact h5 {
	font-size: 32px;
	font-weight: 500;
	line-height: 42px;
}

.lets-contact h2 {
	font-size: 64px;
	line-height: 74px;
	font-weight: 500;
	font-family: 'Big Shoulders';
}

.contact-info h4 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 20px;
	text-transform: capitalize;
	font-family: 'Outfit';
}

.list p {
	color: #dddddd;
	font-weight: 400;
	font-size: 22px;
	line-height: 33px;
	margin-bottom: 30px;
}

.list p a {
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	color: var(--white-color);
	display: block;
	font-family: 'Outfit';
}

.contact-info {
	margin: 40px 0 0 0;
}

.social-link a {
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid;
	border-radius: 50px;
	font-size: 18px;
	text-decoration: none;
	color: white;
	margin-right: 10px;
}

.footer-form {
	background: black;
	border: 1px solid;
	padding: 30px 30px;
	border-radius: 15px;
}

.footer-field {
	width: 100%;
	background: transparent;
	color: white;
	border: 1px solid #656565;
	padding: 16px 10px;
	border-radius: 10px;
	font-family: 'Outfit';
}

.submitbtn-footer {
	background: var(--primary-color);
	color: var(--white-color);
	font-size: 16px;
	font-weight: 500;
	padding: 10px 30px;
	text-transform: capitalize;
	border: 1px solid var(--primary-color);
	border-radius: 10px;
	font-family: 'Outfit';
}

.copyright {
	background: var(--primary-color);
	padding: 20px 0;
}

.flex-copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

p.copyright-para {
	margin-bottom: 0;
	font-size: 16px;
	color: white;
	font-weight: 400;
	font-family: 'Outfit';
}

textarea.footer-field {
	resize: none;
	height: 240px;
	font-family: 'Outfit';
}

.submitbtn-banner {
	background: var(--primary-color);
	color: var(--white-color);
	font-size: 16px;
	font-weight: 500;
	padding: 10px 30px;
	text-transform: capitalize;
	border: 1px solid var(--primary-color);
	border-radius: 50px;
}

ul.packing-listing {
	overflow-y: scroll;
	height: 208px;
}

.head h4 span {
	font-size: 16px;
	font-weight: 200;
}

.tab-section {
	display: none;
}

.tab-section.active {
	display: block;
}

.tabs-buttons button.active {
	background: #000;
	color: #fff;
}

.tabs-buttons {
	display: flex;
	justify-content: center;
	padding: 40px 0 0;
	gap: 15px;
	flex-wrap: wrap;
}

.button-box {
	display: none;
}

.tabs-buttons button {
	font-size: 15px;
	padding: 10px 30px;
	border: none;
	border-radius: 20px;
	font-family: outfit;
	color: black;
}

.content ul li i {
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	background: #ed1c24;
	width: 20px;
	height: 20px;
}


.banner-content-index {
	z-index: 999;
	position: relative;
}

.footer-copyright-image {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.footer-copyright-image div {
	background: white;
	width: 167px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 119px;
	border-radius: 10px;
}

.footer-copyright-image div img {
	width: 115px;
}



.tabs, .plans-tabs {
    display: flex;
    justify-content: center;
	gap: 15px;
	margin-top: 20px;
}

/* Vertical Tabs */

.tab-button, .plans-tab-btn {
    BACKGROUND: white;
    border-radius: 10px;
    color: black;
	padding: 10px 20px;
	border-radius: 10px;
	border: none !important;
}

.tab-button:hover, .plans-tab-btn:hover {
	background: #ed1c24 !important;
	color: white !important;
}

.tab-button.active, .plans-tab-btn.active {
  font-weight: bold !important;
  background: #ed1c24 !important;
  color: white !important;
  border: none !important;
}

/* Tab content */
.tab-content {
  flex: 1;
  padding: 20px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

section.vps-section {
    padding: 50px 0;
}
.plan-box {
    background: linear-gradient(90deg, #ed1c24, #000000);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px solid #ed1c24;
}

.plan-box h4 {
    font-size: 25px;
    font-family: 'Big Shoulders';
    line-height: 57px;
}

.plan-box p {
    font-size: 18px;
    font-family: 'Outfit';
}

.plan-box ul li {font-size: 17px;margin-bottom: 15px;font-family: 'Outfit'; user-select: all;}

button.plan-btn {
    background: white;
    padding: 13px 10px;
    border: none;
    font-family: 'Outfit';
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 10px;
    color:black;
}

.plan-box h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
}

section.Dedicated-section {
    background: #121212;
    padding: 70px 0;
}




.plans-tabs-container {
  display: flex;
  flex-direction: column;
}

.plans-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.plans-tab-btn {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #eee;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.plans-tab-btn.active {
  background-color: #fff;
  font-weight: bold;
  border-bottom: 2px solid #007bff;
}

.plans-tab-panel {
  display: none;
}

.plans-tab-panel.active {
  display: block;
}


.popup-formn {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #232121ad;
    align-items: center;
    justify-content: center;
	display: none;
	z-index: 99999999999999999999;
}
.popup-formn.active {
	display: flex;
}
.popup-formn  .banner-form {
    background: #000000;
	position: relative;
}
.popup-formn .closed-button {
    position: absolute;
    right: -10px;
    top: -10px;
    background: var(--primary-color);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    color: white;
}

.message-submit-successfully,
.message-not-send{
  display:none;
  margin-top:10px;
  font-weight:600;
}

.message-submit-successfully{
  color:#28a745;
}

.message-not-send{
  color:#ff3b3b;
}
.message-alert {
    display: none;
}
p.message-submit-successfully {
    display: none;
}


p.message-not-send {
    display: none;
}