:root {
	--main-colur: #533cae;
	--black-colur: rgb(27, 27, 27);
	--white-colur: rgb(255, 255, 255);
	--gray-colur: rgb(226, 226, 226);
	--main-transition: 0.3s;

}

body {
	font-family: system-ui, sans-serif;
}

/* start landing */
.landing {
	position: relative;
	width: 100%;
	background: #ffffff;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	z-index: 1;
	min-height: 100vh;
	padding-top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#landing {
	/* Enhanced smoother gradient background with better purple-to-blue transition */
	background-image: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
}

/* Canvas for particles background */
#demo-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.4;
}

/* Smooth gradient animation */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Hero Content Wrapper */
.landing .hero-content-wrapper {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 1000px;
	padding: 60px 20px;
	margin: 0 auto;
}

.landing .main-title {
	margin: 0 0 25px 0;
	padding: 0;
	color: #fff;
	text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
	text-align: center;
	white-space: nowrap;
	animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Typewriter Cursor Animation */
.typewriter-cursor {
	display: inline-block;
	margin-left: 5px;
	animation: blink 1s infinite;
	font-weight: 200;
}

@keyframes blink {
	0%, 50% {
		opacity: 1;
	}
	51%, 100% {
		opacity: 0;
	}
}

/* Premium Service Badge */
.landing .premium-service-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	padding: 12px 35px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 25px;
	animation: fadeIn 1.2s ease;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Subtitle - "Premium Proxy Services for All Your Needs" */
.landing .subtitle {
	display: block;
	color: rgba(255, 255, 255, 0.95);
	font-size: 32px;
	font-weight: 600;
	margin: 25px 0;
	line-height: 1.4;
	animation: fadeIn 1.4s ease;
	text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Description */
.landing .hero-description {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	font-size: 19px;
	font-weight: 400;
	margin: 25px auto 35px;
	max-width: 750px;
	line-height: 1.7;
	animation: fadeIn 1.6s ease;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
}

/* CTA Button */
.landing .hero-cta {
	display: block;
	margin: 35px 0;
	animation: fadeInUp 1.8s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.landing .cta-button {
	display: inline-block;
	background: rgba(255, 255, 255, 0.95);
	color: #533cae;
	padding: 18px 55px;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.landing .cta-button:hover {
	background: #fff;
	transform: translateY(-4px);
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
	color: #533cae;
	text-decoration: none;
}

/* Hero Features */
.landing .hero-features {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 45px;
	flex-wrap: wrap;
	animation: fadeIn 2s ease;
}

.landing .feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 20px 30px;
	transition: all 0.3s ease;
}

.landing .feature-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.landing .feature-icon {
	font-size: 40px;
	margin-bottom: 5px;
}

.landing .feature-item span {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.landing h1 {
	font-size: 100px;
}




/* new */
.news-ticker {
	width: 100%;
	height: 60px; /* ارتفاع الشريط */
	background: #533cae;
	color: white;
	/* overflow: hidden; */
	/* position: absolute; */
	display: flex;
	align-items: center; /* توسيط النص عموديًا */
}

.news-ticker-content {
	display: inline-block;
	white-space: nowrap;
	font-size: 22px; /* تكبير الخط */
	font-weight: bold;
	/* position: relative;
	animation: scrollText 2s linear infinite; */
}

.main-title .thin {
	font-weight: 200;
}

/* Responsive Styles */
@media only screen and (max-width : 768px) {
	.landing {
		min-height: 100vh;
		padding: 80px 15px 40px;
	}

	.landing h1 {
		font-size: 50px;
	}

	.landing .subtitle {
		font-size: 24px;
		margin: 20px 0;
	}

	.landing .hero-description {
		font-size: 16px;
		margin: 20px auto 30px;
	}

	.landing .cta-button {
		padding: 15px 40px;
		font-size: 16px;
	}

	.landing .hero-features {
		gap: 25px;
		margin-top: 35px;
	}

	.landing .feature-item {
		padding: 15px 20px;
	}

	.landing .feature-icon {
		font-size: 32px;
	}

	.landing .feature-item span {
		font-size: 14px;
	}

	.landing .premium-service-badge {
		font-size: 13px;
		padding: 10px 25px;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width : 480px) {
	.landing {
		min-height: 100vh;
		padding: 70px 10px 30px;
	}

	.landing h1 {
		font-size: 36px;
		white-space: normal;
	}

	.landing .subtitle {
		font-size: 20px;
		margin: 15px 0;
	}

	.landing .hero-description {
		font-size: 15px;
		margin: 15px auto 25px;
	}

	.landing .cta-button {
		padding: 14px 35px;
		font-size: 15px;
		letter-spacing: 1px;
	}

	.landing .hero-features {
		gap: 20px;
		margin-top: 30px;
	}

	.landing .feature-item {
		padding: 12px 18px;
		min-width: 120px;
	}

	.landing .feature-icon {
		font-size: 28px;
	}

	.landing .feature-item span {
		font-size: 13px;
	}

	.landing .premium-service-badge {
		font-size: 11px;
		padding: 8px 20px;
		margin-bottom: 15px;
		letter-spacing: 1px;
	}

	.landing .hero-content-wrapper {
		padding: 40px 15px;
	}
}

/* end landing */

/* start price card */

.p_card_container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 30px;
	padding: 40px 20px;
	width: 100%;
}

.p_card_container .section-title,
.p_card_container .section-description {
	flex-basis: 100%;
	width: 100%;
}

.pr_container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 30px;
	padding: 40px 20px;
}

.p_card {
	width: 320px;
	height: auto;
	background-color: var(--white-colur);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-top: 5px solid var(--main-colur);
	cursor: pointer;
	border-radius: 15px;
	position: relative;
	margin: 0;
	padding-bottom: 60px;
	transition: all 0.3s ease;
}

.p_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



.p_card:nth-child(1) {
	border-top-color: violet;
}

.p_card:nth-child(2) {
	border-top-color: var(--main-colur);
	transform: scale(1.1);
}

.p_card:nth-child(2) hr {
	height: 0.1px;
}

.p_card:nth-child(3) {
	border-top-color: rgb(0, 174, 255);
}

.p_card .p_card_heading {
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--main-colur);
}

.card .p_card_heading h2 {
	font-size: 25px;
	font-weight: 600;
}

.p_card .p_card_heading .thin {
	font-weight: 200;
	color: gray;
}

.p_card hr {
	width: 250px;
	height: 1px;
	border: none;
	background-color: rgb(160, 160, 160);
	margin: auto;
}

.p_card .price {
	height: 100px;
	color: darkblue;
	display: flex;
	justify-content: center;
	align-items: center;
}

.p_card .price p {
	font-size: 40px;
	font-weight: 600;
}

.p_card .price span {
	font-size: 18px;
	font-weight: 500;
}

.p_card ul {
	list-style: none;
	color: var(--main-colur);
}

.p_card ul li {
	margin: 10px;
	font-size: 18px;
}

.p_card ul li .price_bold {
	font-weight: 600;
}

.p_card .p_card_btn {
	width: 100%;
	height: auto;
	position: relative;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	text-align: center;
	padding: 20px 0;
	margin-top: 20px;
}

.p_card .p_card_btn a {
	width: 160px;
	height: 45px;
	color: var(--main-colur);
	border: 2px solid var(--main-colur);
	line-height: 41px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.p_card .p_card_btn a:hover {
	background-color: var(--main-colur);
	color: var(--white-colur);
	box-shadow: 0 4px 12px rgba(83, 60, 174, 0.3);
	transform: translateY(-2px);
}

/* pr_card style */
.pr_cards {
	width: 200px;
	height: auto;
	background-color: var(--white-colur);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-top: 5px solid var(--main-colur);
	cursor: pointer;
	border-radius: 15px;
	position: relative;
	margin: 0;
	padding-bottom: 60px;
	transition: all 0.3s ease;
}

.pr_cards:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pr_cards:nth-child(3) {
	transform: none;
}

.pr_cards:nth-child(4) {
	transform: none;
}

.p_card:nth-child(3) hr {
	height: 0.1px;
}

.p_card:nth-child(4) hr {
	height: 0.1px;
}

.pr_cards .p_card_heading {
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--main-colur);
}

.pr_cards .p_card_heading h2 {
	font-size: 17px;
	font-weight: 600;
}

.pr_cards .p_card_heading .thin {
	font-weight: 200;
	color: gray;
}

.pr_cards hr {
	width: 150px;
	height: 1px;
	border: none;
	background-color: rgb(160, 160, 160);
	margin: auto;
}

.pr_cards .price {
	height: 100px;
	color: darkblue;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pr_cards .price p {
	font-size: 25px;
	font-weight: 600;
}

.pr_cards .price span {
	font-size: 18px;
	font-weight: 500;
}

.pr_cards ul {
	list-style: none;
	color: var(--main-colur);
}

.pr_cards ul li {
	text-align: left;
	font-size: 10px;
	font-weight: bold;
}


.p_card ul li .price_bold {
	font-weight: 600;
}


.pr_cards .p_card_btn {
	width: 100%;
	height: auto;
	position: relative;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	text-align: center;
	padding: 15px 0;
	margin-top: 15px;
}

.pr_cards .p_card_btn a {
	width: 140px;
	height: 40px;
	color: var(--main-colur);
	border: 2px solid var(--main-colur);
	line-height: 36px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.pr_cards .p_card_btn a:hover {
	background-color: var(--main-colur);
	color: var(--white-colur);
	box-shadow: 0 4px 12px rgba(83, 60, 174, 0.3);
	transform: translateY(-2px);
}


.pr_cards .p_card_btn a {
	width: 120px;
	height: 45px;
	color: var(--main-colur);
	border: 2px solid var(--main-colur);
	line-height: 40px;
	border-radius: 10px;
	font-size: 15px;
	transition: all .2s;
}

.pr_cards .p_card_btn a:hover {
	background-color: var(--main-colur);
	color: var(--white-colur);
	box-shadow: 0 0 10px 0 var(--main-colur);
}


/* Section Titles */
.section-title {
	color: var(--main-colur);
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
	letter-spacing: -0.5px;
}

.section-description {
	color: #666;
	text-align: center;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Buy Proxy Section */
.buy_prox {
	padding: 60px 0;
	background: white;
}

.buy_prox h1 {
	color: var(--main-colur);
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 40px;
	letter-spacing: -0.5px;
}

.buy_prox h3 {
	color: var(--main-colur);
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(83, 60, 174, 0.1);
}

.datacenter_Proxies h1,
.faq h1 {
	color: var(--main-colur);
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 40px;
	letter-spacing: -0.5px;
}



.p_card .best_v {
	text-align: center;
	background: linear-gradient(135deg, #533cae 0%, #7c5fd9 100%);
	color: white;
	width: 110px;
	border-radius: 20px;
	margin: 15px auto;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(83, 60, 174, 0.3);
}


@media (max-width : 1200px) {
	.p_card_container {
		height: 100%;
	}

	.pr_container {
		height: 100%;
	}

	.p_card:nth-child(2) {
		border-top-color: var(--main-colur);
		transform: scale(1);
	}

	.pr_cards:nth-child(3) {
		transform: scale(1);
	}

	.pr_cards:nth-child(4) {
		transform: scale(1);
	}

}

.pr_cards_three {
	transform: scale(1) !important;
}


/* datacenter_Proxies*/

.datacenter_Proxies {
	background-color: var(--main-colur);
	color: white;
}

.datacenter_Proxies h1 {
	color: white;
}


/* Start Services */
@media (min-width: 768px) {
	.services .services-container {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		grid-column-gap: 40px;
		grid-row-gap: 60px;
	}
}

.services .srv-box {
	display: flex;
}

@media (max-width: 767px) {
	.services .srv-box {
		display: flex;
		flex-direction: column;
		text-align: center;
		margin-bottom: 30px;
	}

	.services .srv-box i {
		margin: 0 0 30px;
	}
}

.services .srv-box h3 {
	margin-bottom: 10px;
	color: var(--white-colur);
}

.services .srv-box p {
	line-height: 1.7;
	color: var(--white-colur);
}

/* End Services */

/* Proxy Types Section */
.proxy-types-section {
	padding: 60px 0;
	background: #f8f9fa;
}

.proxy-types {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.proxy-type {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.proxy-type:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(83, 60, 174, 0.15);
}

.proxy-type h3 {
	color: var(--main-colur);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}

.proxy-type p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.proxy-type ul {
	list-style: none;
	padding: 0;
}

.proxy-type ul li {
	color: #555;
	font-size: 14px;
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
}

.proxy-type ul li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--main-colur);
	font-weight: bold;
}

/* Use Cases Section */
.use-cases-section {
	padding: 60px 0;
}

.use-cases {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.use-case {
	background: white;
	padding: 30px;
	border-radius: 12px;
	border-left: 4px solid var(--main-colur);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.use-case:hover {
	transform: translateX(5px);
	box-shadow: 0 8px 20px rgba(83, 60, 174, 0.15);
}

.use-case h3 {
	color: var(--main-colur);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}

.use-case p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* Features Section */
.features-section {
	padding: 60px 0;
	background: #f8f9fa;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.feature {
	text-align: center;
	padding: 30px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(83, 60, 174, 0.15);
}

.feature h3 {
	color: var(--main-colur);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}

.feature p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* FAQ */


.accordion .accordion-item {
	border: 0.5px solid var(--main-colur);
	margin: 20PX;
	border-radius: 10px;
}

.accordion .accordion-item button[aria-expanded=true] {
	border-bottom: 1px solid var(--main-colur);
}

.accordion button {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 1em 0;
	color: var(--main-colur);
	font-size: 0.3rem;
	font-weight: 400;
	border: none;
	background: none;
	outline: none;
}

.accordion button:hover,
.accordion button:focus {
	cursor: pointer;
	color: var(--main-colur);
}

.accordion button:hover::after,
.accordion button:focus::after {
	cursor: pointer;
	color: var(--main-colur);
	border: 1px solid var(--main-colur);
}

.accordion button .accordion-title {
	padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
	display: inline-block;
	position: absolute;
	top: 33%;
	right: 0;
	width: 22px;
	height: 22px;
	border: 1px solid;
	border-radius: 22px;
}

.accordion button .icon::before {
	display: block;
	position: absolute;
	content: "";
	top: 9px;
	left: 5px;
	width: 10px;
	height: 2px;
	background: currentColor;
}

.accordion button .icon::after {
	display: block;
	position: absolute;
	content: "";
	top: 5px;
	left: 9px;
	width: 2px;
	height: 10px;
	background: currentColor;
}

.accordion button[aria-expanded=true] {
	color: var(--main-colur);
}

.accordion button[aria-expanded=true] .icon::after {
	width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
	opacity: 1;
	max-height: 100%;
	transition: all 200ms ease-out;
	will-change: opacity, max-height;
}

.accordion .accordion-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms ease-out, max-height 200ms ease-out;
	will-change: opacity, max-height;
	direction: ltr;
}

.accordion .accordion-content p {
	font-size: 1.2rem;
	font-weight: 300;
	margin: 1em 0;
}

/* End about */


/* Start Footer */
.footer {
	color: var(--black-colur);
	overflow: hidden;
	width: 100%;
}

.footer-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-content: center;
}

.foot-description p {
	letter-spacing: 1px;
}

.mylinkss a {
	color: var(--main-colur);
	display: block;
	border: none;
}

.mylinkss a:hover {
	border-bottom: 2px solid var(--main-colur);
}

.coppyright {
	color: grey;
}

@media only screen and (max-width: 786px) {

	.footer-container {
		display: block;
		margin: 0 0 0 40px;
	}

}

/* End footer */