:root {
	--bg: #0b0c1a;
	--accent: #e30613;
	--icon-size: 72px;
	--orbit-radius-1: 160px;
	--orbit-radius-2: 240px;
	--orbit-radius-3: 320px;
}
body {
	margin: 0;
	font-family: "Lusitana", sans-serif;
	color: #fff;
}
h6 {
	font-size: 18px;
}
/* Navbar styling */
.navbar {
	background-color: white;
}

.navbar-nav .nav-link {
	color: black;
	font-weight: 600;
	margin: 0 8px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.navbar-nav .nav-link:hover {
	color: #ff0000; /* hover red */
}

/* Mobile sidebar */
.mobile-menu {
	position: fixed; /* fixed position */
	top: 0;
	left: -773px; /* hide off-screen by default */
	width: 100%;
	height: 100%;
	background: #0c1222;
	transition: left 0.3s ease-in-out; /* smoother transition */
	z-index: 9999;
	padding: 2rem 1rem;
	overflow-y: auto; /* scroll if content exceeds height */
}

.mobile-menu.active {
	left: 0; /* show menu */
}

.mobile-menu .nav-link {
	display: block;
	padding: 10px 0;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
}

.mobile-menu .close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 24px;
	color: #fff;
	cursor: pointer;
}

/* Toggle button */
.navbar-toggler {
	border: none;
	background: #ff0000; /* red button */
	color: #fff;
	padding: 6px 10px;
	border-radius: 4px;
}

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

/* Hide mobile menu on large screens */
@media (min-width: 992px) {
	.mobile-menu {
		display: none;
	}
}

/* Sticky Navbar */
.navbar {
	transition: all 0.3s ease-in-out;
}

/* Scrolled state */
.navbar.scrolled {
	background-color: #fff !important; /* white background */
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* subtle shadow */
	border-radius: 20px;
	max-width: 1300px;
	margin: auto;
	margin-top: 10px;
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand,
.navbar.scrolled {
	color: #0c1222 !important; /* dark text */
}

.navbar.scrolled .navbar-toggler {
	color: #fff !important;
}

/* Navbar dropdown css */
.nav-item.dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
}

.dropdown-menu {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
}

.dropdown-menu li {
	padding: 8px 0;
	transition: all 0.2s;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: 15px;
}

.dropdown-menu li:hover {
	color: red;
	transform: translateX(3px);
}

.icon-bg {
	background: #fff;
	width: 35px;
	height: 35px;
	color: #004a99;
	text-align: center;
	padding: 6px;
	border-radius: 50%;
	font-size: 16px;
}

@media (max-width: 768px) {
	.dropdown-menu .row {
		flex-direction: column;
	}
}

/* Banner Section Css */
.software-banner {
	position: relative;
	width: 100%;
	height: 100vh;
	background: linear-gradient(135deg, #0b0725 0%, #2c0050 100%);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Lusitana", sans-serif;
	color: #fff;
}

.software-slide {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 90%;
	max-width: 1600px;
	position: absolute;
	opacity: 0;
	transition: opacity 1s ease;
}

.software-slide.active {
	opacity: 1;
	position: relative;
}

.software-slide img.left-img {
	width: 40%;
	max-width: 450px;
}

.software-slide-content {
	width: 55%;
	text-align: left;
}

.software-slide-content h1 {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: #fff;
}

.software-slide-content p {
	font-size: 1.2rem;
	margin-bottom: 25px;
	color: #d2d2d2;
}

.software-slide-content a {
	display: inline-block;
	padding: 12px 28px;
	background: linear-gradient(90deg, #9a00ff, #c200ff);
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	font-weight: bold;
	letter-spacing: 1px;
	transition: 0.3s;
}

.software-slide-content a:hover {
	background: linear-gradient(90deg, #ff0077, #ff00cc);
}

.right-logo {
	position: absolute;
	right: 8%;
	top: 50%;
	transform: translateY(-50%);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.right-logo img {
	width: 100%;
}

.software-indicators {
	position: absolute;
	bottom: 40px;
	display: flex;
	justify-content: center;
	width: 100%;
}

.software-indicators span {
	height: 10px;
	width: 10px;
	background: #666;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	transition: background 0.3s;
}

.software-indicators span.active {
	background: red;
}

@media (max-width: 768px) {
	.software-banner {
		height: 70vh;
		text-align: center;
		margin-top: 60px;
		background-color: red;
	}

	.software-slide {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.software-slide img.left-img {
		width: 65%;
		margin-bottom: 10px;
	}

	.software-slide-content {
		width: 90%;
		text-align: center;
	}

	.software-slide-content h1 {
		font-size: 1.5rem;
	}

	.software-slide-content p {
		font-size: 1rem;
	}
	.software-slide-content a {
		display: none;
	}

	.right-logo {
		display: none;
	}
}

/* Random Class Css */
.description {
	text-align: justify;
	color: black;
	font-size: 15px;
}
.heading {
	font-size: 24px;
	color: black;
}
/*####################################### About SECTION CSS STRUCTURE ##################################### */

.it-company-section {
	background-color: #fff;
	/* white background */
	color: #000;
	/* text color */
}

.it-company-section h2 {
	font-size: 22px;
	line-height: 1.3;
}

.it-company-section p {
	font-size: 15px;
	line-height: 1.6;
	max-width: 1200px;
	margin: 0 auto;
}

.it-company-section a {
	color: red;
}

.it-company-section a:hover {
	text-decoration: underline;
}

.it-company-section .btn-outline-success {
	border: 1px solid red;
	color: red;
	transition: all 0.3s ease;
}

.it-company-section .btn-outline-success:hover {
	background-color: red;
	color: #fff;
	text-decoration: none;
}

/* Technology WE Used  Section Css */

.tech-marquee {
	overflow: hidden;
	position: relative;
}

.tech-track {
	display: flex;
	gap: 40px;
	animation: scrollLeft 40s linear infinite;
}

.tech-logo {
	height: 60px;
	width: auto;
	object-fit: contain;
}

/* Marquee Animation: Right-to-Left */
@keyframes scrollLeft {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.tech-logo {
		height: 50px;
		gap: 30px;
	}
}

/*##################################### Blog Section Structure CSS ##########################################*/
.blog-card img {
	transition: transform 0.4s ease;
}
.blog-card:hover img {
	transform: scale(1.08);
}
.blog-card h5 {
	transition: color 0.3s ease;
}
.blog-card:hover h5 {
	color: var(--bs-primary);
}

/* Call To Action Fixed */
.floating-buttons {
	position: fixed;
	bottom: 30%;
	right: 1px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 999;
}

.float-btn {
	width: 30px;
	height: 30px;
	border-radius: 10%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	animation: zoom-in-out 1.5s infinite;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.float-btn:hover {
	transform: scale(1.15);
}

.whatsapp-btn {
	background-color: #25d366;
}

.call-btn {
	background-color: #007bff;
}
.insta-btn {
	background-color: rgb(243, 75, 75);
}
.facebook {
	background-color: #007bff;
}
.youtube {
	background-color: red;
}
@keyframes zoom-in-out {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1);
	}
}

/* Services Section Css */
.service-box {
	background: #fff;
	border-radius: 12px;
	padding: 15px 20px;
	color: #111;
	transition: all 0.3s ease;
	height: 100%;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.service-box img {
	width: 40px;
	height: 40px;
	margin-right: 15px;
}

.service-box h5 {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

.service-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Intergartion Css AI */
.text-orange {
	color: red;
	font-weight: 600;
}

.scrolling-wrapper {
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	height: 120px;
}

.scrolling-content {
	display: inline-flex;
	align-items: center;
	animation: scrollLeft 40s linear infinite;
}

.scrolling-content img {
	width: 80px;
	height: 80px;
	margin: 0 30px;
	filter: brightness(1);
	transition: transform 0.3s ease;
}

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.scrolling-content img {
		width: 55px;
		height: 55px;
		margin: 0 15px;
	}
}

/* FAQ Section css */
.faq-section {
	background-color: #0d0e23;
	padding: 80px 0;
}

.faq-section .accordion-button {
	background-color: #1f1f38;
	color: #fff;
	border-radius: 8px;
	font-weight: 500;
}

.faq-section .accordion-button:focus {
	box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
	background-color: red;
	color: white;
}

.faq-section .accordion-body {
	background-color: #2a2b45;
	border-radius: 8px;
}

/* Testimonial Css */
.testimonial-section {
	position: relative;
	/* background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat fixed; */
}

.testimonial-section .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(200, 0, 0, 0.65);
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.4s;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

/* Contact Us Css */
.contact-hero {
	position: relative;
	background-image: url("https://avatars.mds.yandex.net/i?id=cd7e28c276bd44fdde48f36f6602f5b491ea73a4-5192525-images-thumbs&n=13");
	/* Replace with your image */
	background-size: cover;
	background-position: center;
	height: 400px;
	overflow: hidden;
	/* Important to make rounded overlay visible */
	border-bottom-left-radius: 50% 10%;
	border-bottom-right-radius: 50% 10%;
}

.contact-hero .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 123, 255, 0.096);
	/* Overlay color */
}

.contact-hero .container {
	position: relative;
	z-index: 2;
	margin-top: 110px;
}

.contact-hero h1,
.contact-hero .breadcrumb a,
.contact-hero .breadcrumb .active {
	color: white;
}

/* Our Project section Css */
.project-card {
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	/* border-radius: 12px; */
	overflow: hidden;
}
.project-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.project-card img {
	height: 230px;
	object-fit: cover;
}

/* footer section Ccss */
.footer-section {
	background: linear-gradient(135deg, #0d1117 0%, #1b2735 100%);
	position: relative;
	overflow: hidden;
}
.footer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at top left, rgba(255, 0, 0, 0.15), transparent 50%),
		radial-gradient(
			circle at top right,
			rgba(255, 0, 0, 0.15),
			transparent 50%
		),
		radial-gradient(
			circle at bottom left,
			rgba(255, 0, 0, 0.15),
			transparent 50%
		),
		radial-gradient(
			circle at bottom right,
			rgba(255, 0, 0, 0.15),
			transparent 50%
		),
		radial-gradient(circle at center, rgba(255, 0, 0, 0.15), transparent 50%);
	pointer-events: none;
}

.footer-title::after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #e63946;
	margin-top: 6px;
}
.footer-link {
	display: inline-block;
	color: #d1d1d1;
	text-decoration: none;
	transition:
		color 0.3s ease,
		transform 0.2s;
}
.footer-link:hover {
	color: #e63946;
	transform: translateX(4px);
}
.social-btn {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s;
	text-decoration: none;
}
.social-btn:hover {
	background: #e63946;
	transform: scale(1.1);
}
.payment-icon {
	height: 24px;
	opacity: 0.8;
	transition: 0.3s;
}
.payment-icon:hover {
	filter: none;
	opacity: 1;
}

/* Our WorkFlow For Projects */
/* ===== Basic Styling ===== */
.workflow-section {
	position: relative;
	background-color: white;
	padding: 80px 0;
	overflow: hidden;
}

.workflow-title {
	text-align: center;
	font-size: 2.2rem;
	font-weight: 600;
	color: #202142;
}

.workflow-subtitle {
	text-align: center;
	color: #6c757d;
	margin-bottom: 60px;
}

/* ===== Workflow Layout ===== */
.workflow {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	gap: 40px;
	max-width: 1300px;
	margin: 0 auto;
}

/* ===== Animated Dotted Path ===== */
.workflow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 4px;
	background: repeating-linear-gradient(
		to right,
		#8a2be2 0,
		#8a2be2 10px,
		transparent 10px,
		transparent 20px
	);
	animation: moveLine 8s linear infinite;
	transform: translateY(-50%);
	z-index: 0;
	border-radius: 20px;
}

@keyframes moveLine {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 40px 0;
	}
}

/* ===== Step Box ===== */
.step {
	position: relative;
	width: 150px;
	text-align: center;
	background: #0d0e23;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	padding: 20px;
	z-index: 1;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===== Step Box ===== */
.step {
	position: relative;
	width: 150px;
	text-align: center;
	background: #0d0e23;
	backdrop-filter: blur(8px);
	border: 1px solid #dee2e6;
	border-radius: 20px;
	padding: 20px;
	z-index: 1;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ===== Icon Box ===== */
.icon-box {
	width: 80px;
	height: 80px;
	margin: 0 auto 15px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff416c, #ff4b2b);
	display: flex;
	justify-content: center;
	align-items: center;
	animation: rotateIcon 10s linear infinite;
}

.icon-box img {
	width: 45px;
	height: 45px;
	filter: brightness(1.1);
}

.step h3 {
	font-size: 0.95rem;
	color: white;
	font-weight: 500;
}

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

/* ===== Responsive ===== */
@media (max-width: 992px) {
	.workflow {
		flex-direction: column;
		align-items: center;
	}
	.workflow::before {
		width: 4px;
		height: 100%;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		background: repeating-linear-gradient(
			to bottom,
			#8a2be2 0,
			#8a2be2 10px,
			transparent 10px,
			transparent 20px
		);
	}
	.step {
		width: 220px;
	}
}

/* ===== Floating Animation for Each Step ===== */
.step {
	animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* ===== Glow Hover Effect ===== */
.step:hover {
	box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
	transform: scale(1.05);
	transition: all 0.3s ease;
}

/* ===== Soft Dots Background (behind everything) ===== */
.workflow-section::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background:
		radial-gradient(
			circle at 20% 30%,
			rgba(0, 123, 255, 0.08),
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(138, 43, 226, 0.08),
			transparent 50%
		),
		radial-gradient(circle at 60% 40%, rgba(0, 123, 255, 0.05), transparent 60%);
	z-index: 0;
	pointer-events: none;
}

/* Ensure icons and boxes appear above */
.workflow,
.step {
	position: relative;
	z-index: 2;
}
