:root {
	--primary: #4e4bff;
	--blueMid: #8a7aff;
	--light: #f5f6ff;
	--dark: #000;
	--btn: #69060d;
}

body {
	background: #f3f4fb;
	font-family: "Inter", sans-serif;
}

.mybtn {
	background: var(--btn);
	color: var(--light);
	border: none;
	border-radius: 25px;
	padding: 10px 20px;
	font-weight: 500;
	transition: 0.3s;
}

.btn:hover {
	color: var(--blueMid);
	transform: translateY(-2px);
}

/*header*/
.logo-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.main-nav {
	transition: 0.3s ease;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.main-nav.scrolled {
	background: var(--light);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.main-nav.scrolled .nav-link {
	color: var(--btn) !important;
}

.logo-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.navbar-toggler {
	border: none;
	color: var(--light) !important;
	background: #9b1e26 !important;
}


.navbar-toggler:focus {
	box-shadow: none;
}

.nav-link {
	color: var(--light) !important;
	font-weight: 500;
	font-size: 14px;
}

.brand-logo i {
	color: var(--light) !important;
}

.brand-logo h4 {
	color: var(--light) !important;
}


.hero-modern {
	padding: 80px 0 16px;
	background:
		linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
		url('../img/bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	color: #fff;
	position: relative;
	overflow: hidden;

	/* Animation */
	animation: heroZoom 15s ease-in-out infinite alternate;
}

/* Background Animation */
@keyframes heroZoom {
	0% {
		background-size: 100%;
		background-position: center;
	}

	50% {
		background-size: 110%;
		background-position: top;
	}

	100% {
		background-size: 120%;
		background-position: bottom;
	}
}


/* service cards */
.service-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card i {
  font-size: 38px;
  color: var(--light);
  margin-bottom: 10px;
}

.service-card h5 {
  font-weight: 700;
  margin-top: 5px;
      color: var(--light);
}

.service-card p {
  color: #ffffff;
  font-size: 0.9rem;
}

.s1bg{    background: linear-gradient(251deg, #6e3a4f -2.13%, #34101f 71.56%);}

.s2bg{background: linear-gradient(248deg, #75161b -23.47%, #a02931 114.49%);}
.s3bg{    background: linear-gradient(35deg, #030303 13.34%, #484848 93.35%);}
.s4bg{background: linear-gradient(88deg, #0d6b9a 19.26%, #5fa0d7 106.62%);}

.s5bg{background: linear-gradient(242deg, #545471 2.18%, #353553 121.92%);}

.s6bg{    background: linear-gradient(250deg, #DE734D 2.05%, #A33B2B 103.74%);}

/* TEXT */
.hero-title {
	font-style: normal;
	font-weight: 500;
	font-size: 48px;
	line-height: 59px;
}

.hero-desc {
	margin-top: 10px;

	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: #fff;
	margin-bottom: 15px;

}

/* BUTTONS */
.hero-btn-primary {
	background: #fff;
	color: var(--primary);
	border-radius: 12px;
	font-weight: 600;
}

.hero-btn-outline {
	border: 2px solid #fff;
	color: #fff;
	border-radius: 12px;
	font-weight: 600;
}

/* IMAGE */
.hero-img {
	padding: 10px 18px;
	position: relative;
	width: 100%;
	left: 80px;
	z-index: 2;
}

/* RATING BOX */
.hero-rating {
	background: var(--btn);
	border: 2px solid #fff;
	border-radius: 43px;
	padding: 10px 18px;
	width: max-content;
}

.rating-value {
	font-weight: 800;
	font-size: 20px;
}

.rating-text {
	margin-left: 6px;
	color: #fff;
	text-decoration: none;
}

/* Appointment Bar */
.appointment-bar {
	background: var(--light);
	border-radius: 15px;
	padding: 18px 20px;
	margin-top: -50px;
	/* يطلع فوق الهيرو */
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
	position: relative;
}

/* حقول الفورم */
.form-field {
	border-radius: 15px;
	height: 40px;
}

/* زر الحجز */
.make-btn {
	background: var(--blueMid);
	color: #fff;
	font-weight: 600;
	border-radius: 25px;
	transition: 0.2s;
}

.make-btn:hover {
	opacity: 0.9;
	color: var(--blueMid);
	transform: translateY(-2px);
}

/* Features Section */
.feature-item {
	text-align: center;
}

.feature-icon {
	font-size: 68px;
	color: var(--light);
	margin-bottom: 6px;
}

.feature-item h5 {
	font-weight: bold;
	color: #fff;
	font-size: 18px;
}

.feature-item p {

	color: #ffffff;
	font-size: 13px;
	padding: 1px 16px;
}

/* Stats Section */
.stats-box {
	background: linear-gradient(135deg, #6b63ff, #a69eff);
	padding: 28px 35px;
	border-radius: 18px;
	color: #fff;
	gap: 15px;
}

.stats-icon {
	font-size: 36px;
	color: var(--light);
	margin-bottom: 8px;
}

.counter {
	font-size: 32px;
	font-weight: 800;
	color: beige;
}

.stats-label {
	color: beige;
	font-size: 14px;
}

/* Testimonial Section */
.testimonial-box {
	border-radius: 18px;
	overflow: hidden;
}

/* الصورة */
.testimonial-img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

/* اليمين */
.testimonial-content {
	padding: 35px;
	text-align: center;
}

/* عنوان صغير */
.tag {
	color: var(--blueMid);
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* رمز الاقتباس */
.quote-icon {
	font-size: 32px;
	color: var(--blueMid);
	margin: 10px 0;
}

/* نص الريفيو */
.testimonial-text {
	color: #666;
	font-style: italic;
	max-width: 420px;
	margin: auto;
}

/* الشخص */
.review-person {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	gap: 10px;
	align-items: center;
}

.review-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
}

/*  blog css*/
.blog-card {
	border-radius: 18px;
	padding: 12px;
	gap: 12px;
}

.blog-img {
	width: 150px;
	height: 150px;
	border-radius: 12px;
	object-fit: cover;
}

.blog-content p {
	color: #666;
	margin: 6px 0;
}

.blog-tag {
	color: var(--blueMid);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.read-link {
	color: var(--blueMid);
	font-weight: 600;
	text-decoration: none;
}

.read-link:hover {
	text-decoration: underline;
}

.faq-tag {
	color: var(--blueMid);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.accordion-button {
	font-weight: 600;
	background: #f5f8ff;
}

.accordion-button:not(.collapsed) {
	color: #4b3df2;
	background: #e8ecff;
}

.accordion-item {
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 10px;
	border: 1px solid #eef1ff;
}

.cta-box {
	background: #fdbd30;
	padding: 20px 20px;
	border-radius: 18px;
	color: #a30535;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.cta-btn {
	background: #69060d;
	color: #f5f6ff;
	font-weight: 700;
	padding: 10px 26px;
	border-radius: 25px;
	transition: 0.2s;
	width: 140px;
	padding: 10px;
	text-align: center;
}

.cta-btn:hover {
	background: var(--blueMid);
	color: var(--light);
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.cta-box {
		flex-direction: column;
		text-align: center;
	}
}

/* Footer Styles */
.footer-section {
	background: #f3f1f1;
}

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

.footer-links li {
	margin-bottom: 6px;
}

.footer-links a {
	text-decoration: none;
	color: #555;
	font-size: 0.9rem;
}

.footer-links a:hover {
	color: #69060d;
}

.footer-contact {
	list-style: none;
	padding: 0;
}

.footer-contact li {
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: #444;
}

.footer-contact i {
	color: #000000;
	margin-right: 6px;
}

.newsletter-box input {
	border-radius: 8px;
}

.newsletter-box button {
	border-radius: 8px;
	background: linear-gradient(135deg, #6b63ff, #4b3df2);
	color: var(--light);
}

.social-icons i {
	font-size: 24px;
	cursor: pointer;
	color: #000000;
}

.social-icons i:hover {
	color: #4e4bff;
}

.logo {
	color: var(--blueMid) !important;
}

.firstcard {
	border-radius: 16px;
	padding: 20px 15px 20px 15px;
	border: 0;
	background: linear-gradient(248deg, #75161b -23.47%, #a02931 114.49%);
	display: flex;
}


.secondcard {
	border-radius: 16px;
	padding: 20px 0px 20px 24px;
	border: 0;
	display: flex;
	background: linear-gradient(88deg, #0d6b9a 19.26%, #5fa0d7 106.62%);
}

.lastcard {
	display: flex;
	border-radius: 16px;
	padding: 20px 0px 20px 24px;
	border: 0;
	background: linear-gradient(35deg, #030303 13.34%, #484848 93.35%);
}


.app-feature-section {
	background: #f8f8f8;
	overflow: hidden;
}

.main-title {
	font-size: 40px;
	font-weight: 700;
	color: #1f1f1f;
	line-height: 1.3;
}

.feature-box {
	align-items: flex-start;
	gap: 20px;
}

.icon-box {
	min-width: 90px;
	height: 90px;

	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-box i {
	font-size: 40px;
	color: #ffffff;
}

.feature-content h4 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #1f1f1f;
}

.feature-content p {
	font-size: 20px;
	color: #000000;
	line-height: 18px;
	font-size: 13px;
}

.mobile-image-wrapper {
	position: relative;
	display: inline-block;
}

.circle-bg {
	width: 400px;
	height: 400px;
	background: #efe7ff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.mobile-image {
	position: relative;
	z-index: 2;
	max-width: 280px!important;
}

/* Responsive */

@media(max-width:991px) {

	.main-title {
		font-size: 38px;
	}

	.feature-content h4 {
		font-size: 24px;
	}

	.feature-content p {
		font-size: 16px;
	}

	.circle-bg {
		width: 350px;
		height: 350px;
	}

	.mobile-image {
		max-width: 250px;
	}
}

.box1 {
	background-color: #f6ad0c;
}

.box2 {
	background-color: #912229;
}

.box3 {
	background-color: #0d6b9a;
}

.box4 {
	background: #151515;
}

.box5 {
	background: #522538;
}

.box6 {
	background: #3e3e5c;
}

.box7 {
	background-color: #8f9c07;
}

.box8 {
	background: #06a6f5;
}

.sectionindurestry {
	background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../img/changebg.png);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
	color: #fff;
	position: relative;
	overflow: hidden;
	padding: 46px 0px 0px 0px;
}

.benefits-heading {
	color: #fff;
	margin-bottom: 15px;
	font-size: 24px;
}

ul.benefits-list {
	list-style: none;
	padding: 0px;
}

.benefit-item {
	list-style: none;
	background: linear-gradient(180deg, #d4005c, #b3004b);
	border: 1px solid #fff;
	border-radius: 12px;
	padding: 18px 22px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	transition: 0.4s;
	line-height: 23px;
}

.cta-box p {
    font-size: 13px;
}

.cta-box h3 {
    font-size: 22px;
}


.testimonial-img {
	height: 566px;
}


.benefits-wrapper {
	height: 650px;
	overflow: hidden;
	position: relative;
}

/* Main UL */
.benefits-list {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;

	animation: scrollUp 30s linear infinite;
}

/* List Item */
.benefit-item {
	list-style: none;
	background: linear-gradient(180deg, #d4005c, #b3004b);
	border: 1px solid #fff;
	border-radius: 12px;
	padding: 18px 22px;
	color: #fff;

	font-weight: 500;
	transition: 0.4s;
}

/* Hover */
.benefit-item:hover {
	transform: scale(1.02);
}

/* Smooth Infinite Animation */
@keyframes scrollUp {

	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-50%);
	}

}


.benefits-wrapper {
	height: 650px;
	overflow: hidden;
	position: relative;

	mask-image: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgb(0, 0, 0) 12.5%,
			rgb(0, 0, 0) 87.5%,
			rgba(0, 0, 0, 0) 100%);

	-webkit-mask-image: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgb(0, 0, 0) 12.5%,
			rgb(0, 0, 0) 87.5%,
			rgba(0, 0, 0, 0) 100%);
}

.color-white {
	color: #fff;
}

@media only screen and (min-width: 320px) and (max-width: 650px) {
	.hero-modern {
		animation: none !important;
	}

	.hero-title {
		font-size: 25px !important;
		margin-top: 30px;
		line-height: 34px;
	}

	.hero-desc {
		margin-top: 10px;
		font-style: normal;
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		color: #fff;
		margin-bottom: 15px;
	}

	.hero-img {
		left: 0;

	}

	.main-title {
		font-size: 25px;
	}

	.feature-content h4 {
		font-size: 19px;
	}

	.feature-content p {
		font-size: 14px;
		line-height: 21px;
	}

	.testimonial-img {
		height: 290px;
	}


	.icon-box {
		min-width: 64px;
		height: 64px;
	}

}

.product-bg img {width: 100%;
border-radius: 20px;}

.hero-section2 {
	padding: 80px 0 16px;
	background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../img/product_bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	position: relative;
	overflow: hidden;
	height: 60vh;
	animation: heroZoom 15s ease-in-out infinite alternate;
}

