@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Special+Gothic:wght@400..700&display=swap");

:root {
	--pqt-primary: #2bb0ae;

	--pqt-complementary: #f97360;
	--pqt-complementary-dark: #e76f51;
	--pqt-complementary-soft: rgba(249, 115, 96, 0.15);

	--pqt-dark: #0f172a;
	--pqt-muted: #475569;
	--pqt-light: #f8fafc;

	--pqt-border: rgba(15, 23, 42, 0.08);
	--pqt-glass: rgba(255, 255, 255, 0.75);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* font-family: "Poppins", sans-serif; */
	/* font-family: "JetBrains Mono", monospace;
      font-family: "Roboto", sans-serif; */
	font-family: "Inter", sans-serif;
	/*  font-family: "Special Gothic", sans-serif; */
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;
	
}
/* WebKit browsers */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: #cbd5e1;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #94a3b8;
}

html,
body {
	scrollbar-gutter: stable;
	height: 100%;
	/* overflow: hidden; */
	scroll-behavior: smooth;
	/* opacity: 0; */
	transition: opacity 0.4s ease;
}

/* Enable scroll only after loader hides */
body.loaded {
	opacity: 1;
	overflow-y: scroll;
}

.pqt-h1 {
	color: var(--pqt-primary);
	font-size: clamp(1.5rem, 3.5vw, 3rem);
	font-weight: 800;
	margin-bottom: 20px;
}

.pqt-h2 {
	font-size: clamp(1rem, 3vw, 2.5rem);
	font-weight: 600;
	color: #111;
	margin-bottom: 20px;
}

.pqt-h3 {
	color: var(--pqt-dark);
}

.pqt-p {
	font-size: 1.05rem;
	color: var(--pqt-muted);
	line-height: 1.7;
	margin-bottom: 30px;
}

.bg-dark {
	background-color: var(--pqt-dark);
	color: var(--pqt-light);
}

.bg-primary {
	background-color: var(--pqt-primary) !important;
	color: var(--pqt-light) !important;
}

.text-primary {
	color: var(--pqt-primary) !important;
}

.offcanvas-header {
	background-color: var(--pqt-primary);
	color: white;
}

/* particle js code starts here */

#coursesParticlesWrapper {
	position: relative;
	overflow: hidden;

	background: linear-gradient(135deg, white, teal);
}

#coursesParticlesBg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

#coursesParticlesWrapper .container {
	z-index: 1;
}

#coursesParticlesWrapper .card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(4px);
}

/* particle js code ends here */

/* Navbar */
.modern-navbar {
	background: rgba(255, 255, 255, 0.75);
	/* translucent white */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	/* Safari support */

	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	font-family: Inter, system-ui;

	box-shadow:
		0 2px 10px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);

	transition:
		background 0.3s ease,
		box-shadow 0.3s ease;
}

.nav-link {
	font-weight: 500;
	color: #111 !important;
	position: relative;
	transition: color 0.3s;
}

.nav-link.active {
	color: var(--pqt-primary) !important;
}

.nav-link.active::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--pqt-primary);
}

/* Mega Menu */
.mega-hover {
	position: relative;
}

.mega-hover:hover .mega-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mega-hover:hover > .nav-link > .fa-chevron-down {
	transform: rotate(180deg);
}

.fa-chevron-down {
	transition: transform 0.3s;
	font-size: 12px;
}

/* Update existing .mega-dropdown */
.mega-dropdown {
	position: fixed;
	left: 0;
	top: 60px;
	width: 100vw;
	background: #fff;
	padding: 30px 0; /* Reduced from 40px */
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.25s ease;
	z-index: 1000;
	max-height: 75vh;
	overflow-y: auto !important;
}

/* Specific for Hire dropdown */
.nav-item.mega-hover a[data-parent-link="hire"] + .mega-dropdown {
	max-height: 80vh;
	padding: 25px 0; /* Slightly less padding */
}
.mega-title {
	font-weight: 600;
	margin-bottom: 12px;
	color: #111;
}

.mega-list {
	list-style: none;
	padding-left: 10px;
	border-left: solid 2px;
	border-color: var(--pqt-primary);
}

.mega-list li a {
	display: block;
	padding: 6px 0;
	color: #444;
	text-decoration: none;
	transition: color 0.3s;
}

.mega-list li a:hover {
	color: var(--pqt-primary);
}

/* Company Dropdown - Minimal Modern Elegant */
.company-dropdown {
	padding: 1.5rem;
	background: white;
	border: 1px solid #e5e7eb;
	min-width: 800px;
}

.company-card {
	padding: 1.25rem;
	transition: all 0.2s ease;
	height: 100%;
}

.company-card:hover {
	background: #f8fafc;
}

.company-icon {
	width: 48px;
	height: 48px;
	background: #f0fdfa;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: var(--pqt-primary);
	font-size: 1.25rem;
	border: 1px solid #ccfbf1;
	transition: all 0.2s ease;
}

.company-card:hover .company-icon {
	background: var(--pqt-dark);
	color: white;
	transform: translateY(-2px);
}

.company-title {
	color: var(--pqt-dark);
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.company-desc {
	color: var(--pqt-muted);
	font-size: 0.875rem;
	line-height: 1.5;
	margin-bottom: 1rem;
	min-height: 65px;
}

.company-link {
	color: black;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	transition: all 0.2s ease;
}

.company-link:hover {
	color: var(--pqt-primary);
	gap: 0.5rem;
}

.company-link i {
	font-size: 0.75rem;
	transition: transform 0.2s ease;
}

.company-link:hover i {
	transform: translateX(2px);
}

.company-footer {
	padding-top: 1.5rem;
	margin-top: 1rem;
	border-top: 1px solid #f1f5f9;
}

.company-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.company-features span {
	color: var(--pqt-light);
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: var(--pqt-dark);
	border-radius: 6px;
	border: 1px solid;
	border-color: var(--pqt-dark);
}

.company-features i {
	color: var(--pqt-primary);
	font-size: 0.875rem;
	margin-right: 0.5rem;
}

/* Animation for dropdown */
.mega-dropdown {
	animation: fadeInUp 0.25s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 991.98px) {
	.company-dropdown {
		min-width: auto;
		padding: 1rem;
	}

	.company-card {
		margin-bottom: 1rem;
	}

	.company-features {
		flex-direction: column;
		gap: 0.75rem;
	}

	.company-desc {
		min-height: auto;
	}
}

/* From Uiverse.io by Creatlydev */
.enquiry-btn {
	line-height: 1;
	text-decoration: none;
	display: inline-flex;
	border: none;
	cursor: pointer;
	align-items: center;
	gap: 0.75rem;
	background-color: var(--pqt-primary);
	color: var(--pqt-light);
	border-radius: 10rem;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	padding-left: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: background-color 0.3s;
}

.button__icon-wrapper {
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	position: relative;
	color: var(--pqt-primary);
	background-color: #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.enquiry-btn:hover {
	background-color: var(--pqt-dark);
}

.enquiry-btn:hover .button__icon-wrapper {
	color: #000;
}

.button__icon-svg--copy {
	position: absolute;
	transform: translate(-150%, 150%);
}

.enquiry-btn:hover .button__icon-svg:first-child {
	transition: transform 0.3s ease-in-out;
	transform: translate(150%, -150%);
}

.enquiry-btn:hover .button__icon-svg--copy {
	transition: transform 0.3s ease-in-out 0.1s;
	transform: translate(0);
}

/* PAGE LOADER BASE */
.page-loader {
	position: fixed;
	inset: 0;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;

	opacity: 1;
	visibility: visible;
	transition:
		opacity 0.6s ease,
		visibility 0.6s ease;
}

/* HIDE STATE */
.page-loader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* CONTENT */
.loader-content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	transform-origin: center center;
	transform: scale(1);
	transition: transform 0.6s ease;
}

/* LOGO */
.loader-logo {
	width: 80px;
	height: 80px;
	z-index: 2;
	animation: logoPulse 1.6s ease-in-out infinite;
}

/* RING */
.spinner-container {
	position: absolute;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.spinner-ring {
	width: 90%;
	height: 90%;
	border-radius: 50%;
	border: 4px solid rgba(20, 184, 166, 0.15);
	border-top-color: #14b8a6;
	animation: smoothSpin 1.2s linear infinite;
}

/* LOGO BREATHING */
@keyframes logoPulse {
	0% {
		transform: scale(0.95);
		opacity: 0.75;
	}
	50% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(0.95);
		opacity: 0.75;
	}
}

/* SOFT SPIN */
@keyframes smoothSpin {
	to {
		transform: rotate(360deg);
	}
}

/* Mobile specific styles for hire and services dropdown */
.mobile-category {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #111;
	font-weight: 500;
}

.mobile-category i {
	transition: transform 0.3s;
}

.mobile-category.active i {
	transform: rotate(180deg);
}

.mobile-submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding-left: 20px;
}

.mobile-submenu.active {
	max-height: 1000px;
}

.mobile-submenu a {
	display: block;
	padding: 8px 0;
	text-decoration: none;
	color: #444;
	border-bottom: none;
}

.mobile-submenu a:hover {
	color: var(--pqt-primary);
}

/* Add active state for parent nav items */
.nav-item.active .nav-link {
	color: var(--pqt-primary) !important;
}

.nav-item.active .nav-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--pqt-primary);
}

/* Enhanced active states */
.nav-item.active > .nav-link {
	color: var(--pqt-primary) !important;
	font-weight: 600;
}

.nav-item.active > .nav-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--pqt-primary);
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

/* Make sure internship link gets proper styling */
.internship-link.active {
	color: var(--pqt-primary) !important;
}

/* Mobile active states */
.mobile-menu a.active {
	color: var(--pqt-primary) !important;
	font-weight: 600;
	position: relative;
}

.mobile-category.active {
	color: var(--pqt-primary) !important;
	font-weight: 600;
}

/* Active state for mobile */
.mobile-menu a.active {
	color: var(--pqt-primary) !important;
	font-weight: 600;
}

/* navbar ends here */

/* ai section starts here */
.ai-revolution-section {
	/* padding: 90px 0; */
	background: linear-gradient(180deg, #f9fbff, #ffffff);
}

/* TITLE */

.ai-revolution-title span {
	color: var(--pqt-primary);
}

/* FEATURES */
.ai-revolution-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-bottom: 30px;
}

.ai-feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	color: #333;
}

.ai-feature-item .iconify {
	font-size: 22px;
	color: var(--pqt-dark);
}

/* DOMAINS */
.ai-revolution-domains h6 {
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--pqt-primary);
}

.ai-domain-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ai-domain-icons div {
	background: var(--pqt-dark);
	color: var(--pqt-light);
	padding: 8px 14px;
	border-radius: 25px;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* IMAGE & FLOATING ICONS */
.ai-visual-wrapper {
	position: relative;
	display: inline-block;
}

.ai-main-image {
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* FLOATING ICONS */
.ai-floating-icon {
	position: absolute;
	width: 55px;
	height: 55px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	animation: aiFloat 4s ease-in-out infinite;
}

.ai-floating-icon i,
.ai-floating-icon .iconify {
	font-size: 22px;
	color: var(--pqt-complementary);
}

.ai-icon-1 {
	top: -20px;
	left: -20px;
}
.ai-icon-2 {
	bottom: 20px;
	right: -25px;
	animation-delay: 1s;
}
.ai-icon-3 {
	top: 30%;
	right: -20px;
	animation-delay: 2s;
}

@keyframes aiFloat {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0);
	}
}

/* SIMPLE BAR CHART */
.ai-growth-chart {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 15px;
	align-items: flex-end;
	height: 120px;
}

.ai-bar {
	width: 55px;
	background: linear-gradient(180deg, teal, coral);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	border-radius: 10px 10px 0 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 8px;
	animation: aiGrow 1.8s ease forwards;
}

@keyframes aiGrow {
	from {
		height: 0;
	}
}

/* ===============================
   AI COMPARISON CHART SECTION
================================ */
.ai-comparison-section {
	padding: 90px 0;
	background: #ffffff;
}

.ai-compare-tag {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: #0d6efd;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.ai-compare-title {
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 700;
	color: #111;
	margin-bottom: 15px;
}

.ai-compare-title span {
	color: #0d6efd;
}

.ai-compare-text {
	max-width: 700px;
	margin: 0 auto 40px;
	color: #555;
	font-size: 1.05rem;
}

/* Chart Wrapper */
.ai-chart-wrapper {
	background: #f9fbff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Tooltip */
.ai-tooltip {
	background: #ffffff;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 14px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ai-compare-chart-section {
	background: #fff;
	padding: 50px 0;
	text-align: center;
}

/* ai section end here */

.hero-section {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	/* background: #ffffff; */
}

.hero-section video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0.8) 30%,
		/* stronger on left */ rgba(255, 255, 255, 0.6) 45%,
		rgba(255, 255, 255, 0.25) 100% /* much clearer on right */
	);
	z-index: 2;
}

.hero-section .container {
	position: relative;
	z-index: 3;
}

.hero-right-image {
	position: absolute;
	right: 4%;
	bottom: 0;
	z-index: 2;
	max-width: 520px;
}

.hero-right-image img {
	width: 100%;
	height: auto;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
	.hero-section {
		min-height: unset;
	}
	.main-heading {
		line-height: 1.5 !important;
	}
	.hero-right-image {
		display: none;
	}
}

.hero-content {
	padding: 80px 0;
	position: relative;
	z-index: 2;
}

.main-heading {
	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 0.95;
	margin-bottom: 40px;
	color: #000;
	text-transform: uppercase;
}

.ai-inline-icons {
	display: inline-flex;
	gap: 10px;
	margin-left: 12px;
	vertical-align: middle;
}

.ai-inline-icons i {
	font-size: 4.2rem;
	animation: aiFloat 2.8s ease-in-out infinite;
}

/* Individual AI colors */
.ai-inline-icons i:nth-child(1) {
	color: #2bb0ae;
	/* brain */
	animation-delay: 0s;
}

.ai-inline-icons i:nth-child(2) {
	color: #6366f1;
	/* chip */
	animation-delay: 0.4s;
}

.ai-inline-icons i:nth-child(3) {
	color: #f59e0b;
	/* robot */
	animation-delay: 0.8s;
}

@keyframes aiFloat {
	0% {
		transform: translateY(0);
		opacity: 0.6;
	}

	50% {
		transform: translateY(-6px);
		opacity: 1;
	}

	100% {
		transform: translateY(0);
		opacity: 0.6;
	}
}

.hero-ai-solution {
	color: var(--pqt-primary);
}

.subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.6;
	color: #333;
	margin-bottom: 30px;
	max-width: 500px;
}

/* Responsive adjustments */

@media (max-width: 992px) {
	.hero-content {
		text-align: center;
	}

	.subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.brands-container {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.hero-content {
		padding: 60px 0;
	}

	.main-heading {
		font-size: 3.5rem;
	}

	.brands-container {
		gap: 30px;
	}

	.brand-logo {
		height: 28px;
	}
}

@media (max-width: 576px) {
	.main-heading {
		font-size: 2.5rem;
	}
}

.home-marquee {
	height: 48px;
}

.home-marquee .splide__track {
	overflow: hidden;
}

.home-marquee .splide__list {
	align-items: center;
	transition-timing-function: linear !important;
}

.home-marquee .splide__slide {
	width: auto !important;
	padding-right: 60px;
	/* spacing between items */
	white-space: nowrap;
}

.marquee-icon {
	font-size: 1.8rem;
	font-weight: 700;

	color: var(--pqt-primary);
	opacity: 0.9;
}

.home-desc-item {
	font-size: 1.5rem;
	color: #000;
	transition: color 0.3s ease;
	font-weight: 500;
	text-transform: uppercase;
}

.home-desc-item:hover {
	color: var(--pqt-primary);
}

/* ai tools starts here */

.tool-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
	font-weight: 500;
}

.tool-list .iconify {
	font-size: 20px;
}

/* ai tools ends here */

/* who we are section starts */

.section-tag {
	display: inline-block;
	background-color: var(--pqt-primary);
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--pqt-light);
	margin-bottom: 25px;
	letter-spacing: 0.3px;
}

.highlight-text {
	color: var(--pqt-primary);
	font-weight: 700;
}

.team-image-container {
	margin: 50px 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.experience-description-container {
	/* background-color: var(--pqt-dark); */
}

.experience-section {
	margin-top: 60px;
}

.experience-title {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--pqt-dark);
	margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.experience-section {
		margin-top: 40px;
	}

	.stats-container {
		margin-top: 40px;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.team-image-container {
		margin: 35px 0;
	}

	.experience-section {
		margin-top: 30px;
	}

	.experience-description {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
}

.results-showcase-wrapper {
	width: 100%;
	max-width: 1200px;
}

.results-showcase-container {
	background: #ffffff;
	border-radius: 35px;
	padding: 60px;
	/* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
	border: solid 1px;
	border-color: var(--pqt-dark);
}

.results-header-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 60px;
	flex-wrap: wrap;
	gap: 20px;
}

.results-title-group {
	flex: 1;
	min-width: 280px;
}

.results-action-buttons {
	display: flex;
	gap: 15px;
	align-items: center;
}

.statistics-grid-layout {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
}

.stat-card-item {
	text-align: left;
}

.stat-number-display {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: var(--pqt-dark);
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: -1px;
}

.stat-title-label {
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	font-weight: 600;
	color: #000;
	margin-bottom: 8px;
}

.stat-description-text {
	font-size: clamp(0.85rem, 1.2vw, 0.95rem);
	color: #666;
	line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.results-showcase-container {
		padding: 50px 40px;
		border: solid 1.5px;
	}

	.results-header-section {
		margin-bottom: 50px;
	}

	.statistics-grid-layout {
		gap: 35px;
	}
}

@media (max-width: 768px) {
	.results-showcase-container {
		padding: 40px 30px;
		border: solid 1px;
	}

	.results-header-section {
		flex-direction: column;
		margin-bottom: 40px;
	}

	.results-action-buttons {
		width: 100%;
		flex-direction: column;
	}

	.demo-button-link,
	.get-started-cta-button {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.statistics-grid-layout {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 576px) {


	.results-showcase-container {
		padding: 30px 25px;
		border-radius: 25px;
	}

	.statistics-grid-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.stat-card-item {
		text-align: center;
	}
}

/* who we are section ends */

/* our mission vision and goal start here */

/* Our Story */
.story-card {
	background:
		linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
		url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&q=80");
	background-size: cover;
	background-position: center;
	border-radius: 25px;
	padding: 45px;
	min-height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.story-card .card-title {
	color: #fff;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
}

.story-card .card-description {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
}

.mission-card,
.vision-card,
.goals-card {
	border-radius: 25px;
	/* padding: 30px; */
}

/* Backgrounds */
.mission-card {
	background: #e8f8f5;
}

.vision-card {
	background: var(--pqt-complementary-dark);
}

.goals-card {
	background: #14a09d;
}

/* Image + Content Layout */
.mv-layout {
	display: flex;
	align-items: center;
	gap: 25px;
}

.mv-image {
	flex: 0 0 120px;
}

.mv-image img {
	width: 100%;
	width: 305px;

	object-fit: cover;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}

.mv-content {
	flex: 1;
	padding-top: 10px;
	padding-right: 10px;
}

/* Text Colors */
.mission-card .card-description {
	color: #333;
}

.vision-card .card-description,
.goals-card .card-description {
	color: #ffffff;
}

.card-description {
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
	text-align: justify;
}

@media (max-width: 768px) {
	.hero-section {
		padding: 50px 0 30px;
		min-height: unset;
	}
	.hero-right-image {
		display: none;
	}

	.ai-inline-icons {
		font-size: 1rem;
		margin-left: unset;
		margin: 1rem;
	}
	.story-card .card-title {
		text-align: center;
	}

	.mission-card,
	.vision-card,
	.goals-card {
		border-radius: unset;
		/* padding: 30px; */
	}
	.card-description {
		text-align: center;
		padding: 10px;
	}

	.mv-layout {
		flex-direction: column;
		text-align: center;
	}

	.mv-image img {
		width: 100%;
		border-top-left-radius: unset;
		border-bottom-left-radius: unset;
		border: 25px;
	}

	.story-card {
		min-height: auto;
		padding: 35px;
	}
}

/* our mission vision and goal ends here */

/* industry we server starts here */

.industryServedParent {
	column-width: 180px;
	column-gap: 20px;
}

.industryItem {
	position: relative;
	margin-bottom: 20px;
	break-inside: avoid;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.industryItem img {
	width: 100%;
	display: block;
	border-radius: 10px;
	box-shadow: 5px 5px 10px rgb(191, 191, 192);
	transition: transform 0.4s ease;
}

.industryItem .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	text-align: center;
	border-radius: 10px;
	padding: 10px;
}

.industryItem:hover img {
	transform: scale(1.1);
	/* zoom out effect */
}

.industryItem:hover .overlay {
	opacity: 1;
}

/* ===== Industries We Serve Hover Effect ===== */

.industry-we-serve {
    cursor: pointer;
}

/* Icon base */
.industry-we-serve-icon {
    position: relative;
    display: inline-flex;
    transition: transform 0.3s ease;
}

/* Ring effect */
.industry-we-serve-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.35s ease;
}

/* Text base */
.industry-we-serve-text {
    transition: font-weight 0.3s ease;
}

/* Hover interactions */
.industry-we-serve:hover .industry-we-serve-icon {
    transform: scale(1.08);
}

.industry-we-serve:hover .industry-we-serve-icon::after {
    opacity: 0.4;
    transform: scale(1);
}

.industry-we-serve:hover .industry-we-serve-text {
    font-weight: 600;
}


/* industry we server ends here */

/* services we provide starts here */

.service-box {
	transition: all 0.35s ease;
}

.service-box:hover {
	transform: translateY(-2px);
	border: solid 1px;
	border-color: var(--pqt-dark);
}

.service-icon {
	position: absolute;
	right: -20px;
	bottom: -20px;
	font-size: 110px;
	color: rgba(13, 110, 253, 0.08);
	transition: transform 0.35s ease;
}

.service-box:hover .service-icon {
	transform: scale(1.08);
}

/* services we provide ends here */

/* our recently placed starts here */

#placedSplide {
	height: 60%;
}

.rp-card {
	width: 260px;
	height: auto;
	background: #ffffff;
	border: 2px solid #222;
	border-radius: 8px;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	box-shadow: 4px 4px #222;
	transition: transform 0.25s ease;
}

/* TOP SECTION */
.rp-card-top {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* IMAGE */
.rp-card-img {
	width: 100px;
	height: 100px;
	flex-shrink: 0;
}

.rp-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

/* NAME */
.rp-card-name {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--pqt-dark);
	line-height: 1.2;
}

/* DESCRIPTION */
.rp-card-desc {
	font-size: 0.85rem;
	color: #555;
	line-height: 1.4;
	text-align: justify;
}

@media (max-width: 1100px) {
	.splide__list {
		height: unset !important;
	}
}

@media (max-width: 768px) {
	.rp-card {
		width: 100%;
		max-width: 320px;
	}
	#placedSplide {
		height: 40%;
	}
}

@media (max-width: 480px) {
	.rp-card-top {
		flex-direction: row;
	}

	.rp-card-name {
		font-size: 0.95rem;
	}

	.rp-card-desc {
		font-size: 0.82rem;
	}
}

/* our recently placed ends here */

/* meet our team starts here */

.team-blob-card {
	position: relative;
	width: 100%;
	max-width: 260px;
	height: 340px;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	z-index: 1;
}

/* Glass layer */
.team-card-bg {
	position: absolute;
	inset: 8px;
	z-index: 2;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
}

/* Image */
.team-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Overlay text */
.team-card-overlay {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 14px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	color: #fff;
}

.team-card-overlay h3 {
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
}

.team-card-overlay span {
	font-size: 0.85rem;
	opacity: 0.85;
}

.team-blob {
	position: absolute;
	z-index: 1;
	inset: 0;
	pointer-events: none;
}

.team-blob::before {
	content: "";
	position: absolute;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: var(--pqt-primary, #0d6efd);
	filter: blur(22px);
	opacity: 0.9;

	/* start position */
	top: -20px;
	left: 50%;
	transform: translateX(-50%);

	animation: border-orbit 8s linear infinite;
}

@keyframes border-orbit {
	0% {
		top: -20px;
		left: 50%;
		transform: translateX(-50%);
	}

	25% {
		top: 50%;
		left: calc(100% + 20px);
		transform: translateY(-50%);
	}

	50% {
		top: calc(100% + 20px);
		left: 50%;
		transform: translateX(-50%);
	}

	75% {
		top: 50%;
		left: -20px;
		transform: translateY(-50%);
	}

	100% {
		top: -20px;
		left: 50%;
		transform: translateX(-50%);
	}
}

.experience-highlight {
	position: relative;
	display: inline-block;
	color: var(--pqt-primary);
	margin: 0px 5px 0px 5px;
}

.experience-highlight::after {
	content: "";
	position: absolute;
	left: -4px;
	right: -4px;
	top: -4px;
	bottom: -4px;
	border: 2px solid;
	border-color: var(--pqt-complementary-dark);
	border-radius: 4px;
}

@media (max-width: 575px) {
	.team-blob-card {
		max-width: 100%;
		height: 400px !important;
	}
	.team-card-image{
	    height:100%;
	}

	.team-card-overlay h3 {
		font-size: 0.95rem;
	}
}

/* meet our team ends here */

/* our clients starts here */

.clients-splide {
	padding: 10px 0;
	height: 20%;
}

.client-logo-card {
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border-radius: 10px;
	background: #fff;
	transition: border 0.3s ease;
	border: 2px solid transparent;
}

.client-logo-card:hover {
	border: 2px solid;
	border-color: var(--pqt-muted);
}

.client-logo-card img {
	max-height: 100px;
	max-width: 100%;
	object-fit: contain;
}

/* Mobile */
@media (max-width: 576px) {
    
    .clients-splide{
        height:unset !important;
    }
    
	.client-logo-card {
		height: 70px;
		padding: 10px;
	}

	.client-logo-card img {
		max-height: 45px;
	}
}

/* our clients ends here */

/* our expertise starts here */

.tech-icon {
	font-size: 2rem !important;
	width: 5.5rem !important;
	height: 3rem !important;
	margin-bottom: 0.5rem;
	display: inline-block;
	transition: transform 0.3s ease;
	/* color: #495057; */
	display: flex;
	justify-content: center;
}

.tech-icon:hover {
	transform: scale(1.1);
}

.tech-item {
	transition: all 0.2s ease;
	padding: 1.5rem 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.tech-item:hover {
	transform: translateY(-5px);
}

.tech-item p {
	margin: 0;
	font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.tech-icon {
		font-size: 2.5rem !important;
		width: 2.5rem !important;
		height: 2.5rem !important;
	}
}

@media (max-width: 576px) {
	.tech-icon {
		font-size: 2rem !important;
		width: 2rem !important;
		height: 2rem !important;
	}
}
/* our expertise ends here */

/* ====================About us page starts here====================================== */

.sp-partner-section {
	background: #062a2b;
	padding: 90px 0 80px;
	color: #fff;
}

.sp-header {
	max-width: 780px;
	margin: auto;
	margin-bottom: 60px;
}

.sp-image-card {
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
}

.sp-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-content {
	background: #fff;
	color: #111;
	border-radius: 22px;
	padding: 50px;
	margin-top: 70px;
}

.sp-stats h4 {
	font-weight: 700;
	color: #062a2b;
}

.sp-stats p {
	font-size: 13px;
	color: #666;
	margin-bottom: 0;
}

/* ================================
       OUR APPROACH SECTION STARTS
    ================================= */

.pq-approach-section {
	padding: 90px 0;
	background: #ffffff;
}

.pq-timeline {
	position: relative;
	margin-top: 60px;
}

.pq-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: var(--pqt-primary);
	transform: translateX(-50%);
}

.pq-step {
	padding: 55px 0;
}

.pq-dot {
	width: 16px;
	height: 16px;
	background: var(--pqt-primary);
	border-radius: 50%;
	z-index: 2;
}

.pq-step-number {
	font-size: 13px;
	font-weight: 600;
	color: var(--pqt-primary);
	margin-bottom: 6px;
	display: block;
}

.pq-content h5 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.pq-content p {
	color: var(--pqt-muted);
	font-size: 0.96rem;
	line-height: 1.65;
}

.pq-icon {
	font-size: 28px;
	color: var(--pqt-primary);
	margin-bottom: 10px;
}

.pq-image-box {
	/* background: #e9f7d2; */
	padding: 22px;
	border-radius: 16px;
	box-shadow: 0 10px 25px #2bb0ae;
	display: inline-block;
}

.pq-image-box img {
	border-radius: 12px;
}

.pq-trust-text {
	margin-top: 40px;
	font-size: 0.95rem;
	color: var(--pqt-dark);
}

/* Mobile */
@media (max-width: 991px) {
	.pq-step {
		text-align: center;
	}
	.pq-content {
		margin-bottom: 22px;
	}
}

/* ================================
       OUR APPROACH SECTION ENDS
    ================================= */

/* ====================About us page ends here====================================== */

/* ====================Contact us page ends here====================================== */

.pq-video-contact {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	color: #fff;
}

/* Background Video */
.pq-video-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

/* Dark Gradient Overlay (LEFT → CENTER) */
.pq-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(1, 1, 2, 0.85) 0%,
		rgba(10, 15, 30, 0.75) 35%,
		rgba(10, 15, 30, 0.45) 55%,
		rgba(10, 15, 30, 0.1) 70%,
		rgba(10, 15, 30, 0) 100%
	);
	z-index: 2;
}

/* Content */
.pq-video-content {
	position: relative;
	z-index: 3;
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
}

/* FORM */
.pq-form-wrapper {
	max-width: 480px;
	padding: 50px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* Inputs */
.pq-input-group {
	position: relative;
	margin-bottom: 22px;
}

.pq-input-group i {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
}

.pq-input {
	width: 100%;
	padding: 14px 16px 14px 42px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.pq-input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.pq-input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.15);
	border-color: #4da3ff;
	box-shadow: 0 0 0 4px rgba(77, 163, 255, 0.2);
}

textarea.pq-input {
	resize: none;
}

/* Button */
.pq-submit-btn {
	width: 100%;
	padding: 14px;
	border-radius: 14px;
	font-weight: 600;
	background: linear-gradient(135deg, #4da3ff, #1e6bff);
	border: none;
	color: #fff;
	transition: all 0.3s ease;
}

.pq-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(30, 107, 255, 0.5);
}

/* Mobile */
@media (max-width: 991px) {
	.pq-form-wrapper {
		padding: 35px;
		margin: 40px auto;
	}

	.pq-overlay {
		background: rgba(10, 15, 30, 0.85);
	}
}

/* ====================Contact us page ends here====================================== */

.careerContainer .careerTopContainer .careerTopContainerLeft,
.trainingDetailPageParent
	.trainingDetailPageParentTop
	.trainingDetailPageParentTopLeft,
.trainingPageMainContainer
	.trainingPageMainContainerTop
	.trainingPageMainContainerTopLeft,
.wrapper .left,
.wrapper .right {
	width: 50%;
}

.careerContainer .careerTopContainer,
.trainingDetailPageParent .trainingDetailPageParentTop,
.trainingPageMainContainer .trainingPageMainContainerTop {
	display: flex;
	justify-content: space-between;
}

.trainingPageMainContainer {
	display: flex;
	flex-direction: column;
	padding-bottom: 3rem;
}
.courseBuy,
.courseFee,
.courseSyllabus,
.internshipWhyChooseUs,
.trainingDetailPageParent,
.web-development-inner-card {
	padding: 2rem;
}
.trainingPageMainContainer
	.trainingPageMainContainerTop
	.trainingPageMainContainerTopLeft
	h2 {
	font-weight: 700;
	font-size: 4rem;
}
.trainingPageMainContainer
	.trainingPageMainContainerTop
	.trainingPageMainContainerTopLeft
	p {
	font-weight: 400;
	font-size: 1.8rem;
	color: var(--dark-gray);
	text-align: justify;
}
.trainingPageMainContainer
	.trainingPageMainContainerTop
	.trainingPageMainContainerTopRight {
	width: 40%;
	display: flex;
	flex-direction: column;
}
.trainingPageMainContainerMiddle {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	background-color: transparent;
}
.trainingPageMainContainerMiddle #trainingPageParticlejs {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 350vh;
	z-index: 0;
}
.trainingAllCoursesContainer,
h2 {
	position: relative;
	z-index: 1;
}
.trainingPageMainContainerMiddle h2 {
	font-size: 1.4rem;
	padding: 1rem 1.5rem;
	border: 1px solid coral;
	border-radius: 15px;
	width: max-content;
	color: var(--button-text);
	background-color: var(--link-hover-color);
}
@keyframes glowEffect {
	0%,
	100% {
		background: rgba(0, 255, 255, 0.2);
		box-shadow:
			0 0 3px rgba(0, 255, 255, 0.8),
			0 0 10px rgba(0, 255, 255, 0.6);
	}
	50% {
		background: rgba(0, 255, 255, 0.3);
		box-shadow:
			0 0 5px #0ff,
			0 0 10px rgba(0, 255, 255, 0.8);
	}
}
.trainingPageMainContainerMiddle .trainingAllCoursesContainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard {
	width: 16%;
	height: 46vh;
	border: 1px solid #d6d5d5;
	border-radius: 5px;
	overflow: hidden;
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	position: relative;
	background: linear-gradient(135deg, #d84e36, #00796b);
	box-shadow:
		0 8px 16px rgba(0, 0, 0, 0.2),
		0 4px 8px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	cursor: pointer;
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard:hover {
	transform: translateY(-5px);
	box-shadow:
		0 12px 24px rgba(0, 0, 0, 0.3),
		0 6px 12px rgba(0, 0, 0, 0.15);
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard
	.courseImageContainer {
	height: 40%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard
	.courseDetailContainer {
	height: 50%;
	padding: 0 0.5rem;
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard
	img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard:hover
	img {
	transform: scale(1.1);
}

.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard
	.courseDetailContainer
	button {
	border: 2px solid #038f7f;
	padding: 0.6rem 2rem;
	border-radius: 5px;
	font-weight: 500;
	background-color: #038f7f;
	color: #fff;
	font-size: 1.2rem;
	position: relative;
	overflow: hidden;
	transition:
		background-color 0.3s,
		color 0.3s;
	background-color: var(--button-hover);
	box-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
	animation: 1.5s ease-in-out infinite alternate glowEffect;
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard
	.courseDetailContainer
	button:hover {
	background-color: transparent;
	color: #fff;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard
	.courseDetailContainer
	.buttonContainer {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard
	.courseDetailContainer
	h3 {
	color: var(--button-text) !important;
	font-weight: 500;
	border-radius: 0 !important;
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard
	.courseDetailContainer
	a {
	color: var(--button-text);
	text-decoration: none;
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard
	.courseDetailContainer
	h5 {
	border: none;
	font-weight: 600;
	font-size: 1.3rem;
	color: var(--button-text);
	padding: 0;
}
.trainingPageMainContainerMiddle
	.trainingAllCoursesContainer
	.trainingAllCoursesContainerCard
	.courseDetailContainer
	h3 {
	font-size: 1.4rem;
	width: max-content;
	color: #000;
}
.courseWillTeach,
.upcomingBatchParentContainerAndSchedule {
	display: flex;
	flex-direction: column;
	padding: 2rem;
}
.upcomingBatchParentContainerAndSchedule h2 {
	font-size: 1.4rem;
	padding: 1rem 1.5rem;
	border: 1px solid coral;
	border-radius: 15px;
	width: max-content;
	color: var(--button-text);
	margin-bottom: 3rem;
	background-color: var(--link-hover-color);
}
.upcomingBatchNameAndDetail {
	display: flex;
	height: 60vh;
}
.upcomingBatchNameAndDetail .upcomingBatchName {
	width: 30%;
	overflow-y: scroll;
}
.upcomingBatchNameAndDetail .upcomingBatchName .batchname {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-right: 1rem;
}
.upcomingBatchNameAndDetail .upcomingBatchName .batchname i {
	color: var(--medium-gray);
	font-size: 1.5rem;
	padding-right: 1rem;
	padding-left: 1rem;
}
.upcomingBatchNameAndDetail .upcomingBatchName .batchname li {
	border: 1px solid #c2c2c2;
	padding: 0.5rem 1rem;
	border-radius: 5px;
}
.upcomingBatchNameAndDetail .upcomingBatchDetail {
	width: calc(100% - 30%);
	overflow-y: scroll;
	padding-left: 1rem;
}
.upcomingBatchNameAndDetail .upcomingBatchDetail::-webkit-scrollbar,
.upcomingBatchNameAndDetail .upcomingBatchName::-webkit-scrollbar {
	width: 4px;
}
.upcomingBatchNameAndDetail .upcomingBatchDetail::-webkit-scrollbar-thumb,
.upcomingBatchNameAndDetail .upcomingBatchName::-webkit-scrollbar-thumb {
	background-color: #848181;
	border-radius: 4px;
}
.upcomingBatchNameAndDetail .upcomingBatchDetail::-webkit-scrollbar-thumb:hover,
.upcomingBatchNameAndDetail .upcomingBatchName::-webkit-scrollbar-thumb:hover {
	background-color: grey;
}
.upcomingBatchNameAndDetail .upcomingBatchDetail::-webkit-scrollbar-track,
.upcomingBatchNameAndDetail .upcomingBatchName::-webkit-scrollbar-track {
	background-color: #dcdcdc;
	border-radius: 4px;
}
.upcomingBatchNameAndDetail .upcomingBatchName li {
	list-style: outside;
}
.trainingDetailPageParent
	.trainingDetailPageParentTop
	.trainingDetailPageParentTopLeft
	span {
	color: var(--link-hover-color);
	font-weight: 800;
}
.trainingDetailPageParent
	.trainingDetailPageParentTop
	.trainingDetailPageParentTopRight {
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.trainingDetailPageParent
	.trainingDetailPageParentTop
	.trainingDetailPageParentTopRight
	img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}
.courseHighlights {
	display: flex;
	justify-content: start;
}
.courseHighlights h2 {
	font-size: 1.4rem;
	padding: 1.2rem 1.7rem;
	border: 1px solid #007873;
	border-radius: 8px;
	width: max-content;
	color: var(--button-text);
	background-color: var(--dark-teal);
	font-weight: 600;
}
.courseHighlights .courseHighlightsLeft .courseDetails {
	padding: 3rem 2rem 3rem 0;
}
.courseHighlights .courseHighlightsLeft .courseDetails ul {
	display: flex;
	gap: 1rem;
}
.courseHighlights .courseHighlightsLeft .courseDetails i {
	color: var(--link-hover-color);
}
.courseHighlights .courseHighlightsLeft .courseDetails li {
	list-style: none;
	color: var(--dark-gray);
	font-weight: 600;
	text-align: justify;
}
.courseHighlights .courseHighlightsRight img,
.web-development-middle img,
.web-development-top img {
	width: 100%;
	height: auto;
}
.courseBuy button,
.courseFee h2,
.courseSyllabus h2,
.courseWillTeach h2,
.thisCourseIncludes h2 {
	padding: 1.2rem 1.7rem;
	width: max-content;
	margin-bottom: 2rem;
	text-transform: uppercase;
}
.courseSyllabus h2,
.courseWillTeach h2 {
	font-size: 1.4rem;
	border: 1px solid #d84e36;
	border-radius: 8px;
	color: var(--button-text);
	background-color: #d84e36;
	font-weight: 600;
}
.courseWillTeach p {
	font-weight: 500;
}
.thisCourseIncludes {
	display: flex;
	justify-content: space-between;
	background-color: #e0ffff;
}
.courseFee h2,
.thisCourseIncludes h2 {
	font-size: 1.4rem;
	border: 1px solid #007873;
	border-radius: 8px;
	color: var(--button-text);
	background-color: #007873;
	font-weight: 600;
}
.thisCourseIncludes .thisCourseIncludesLeft,
.thisCourseIncludes .thisCourseIncludesRight {
	width: 45%;
}
.thisCourseIncludes .thisCourseIncludesLeft li,
.thisCourseIncludes .thisCourseIncludesRight li {
	color: var(--dark-gray);
	font-weight: 500;
}
.courseFee p {
	color: #000;
	font-size: 2.5rem;
	font-weight: 700;
}
.courseFee span {
	font-size: 1.5rem;
	color: red;
}
.courseFee strike {
	color: var(--medium-gray);
}
.courseBuy {
	display: flex;
	align-items: center;
	justify-content: center;
}
.courseBuy button {
	font-size: 1.4rem;
	border: 1px solid #dc143c;
	border-radius: 5px;
	color: var(--button-text);
	background-color: #dc143c;
	font-weight: 600;
}

.careerContainer .careerTopContainer,
.trainingDetailPageParent .trainingDetailPageParentTop,
.trainingPageMainContainer .trainingPageMainContainerTop {
	display: flex;
	justify-content: space-between;
}

/* services page starts here */
.services-header {
	position: relative;

	/* background image */
	background-image: url("../services/services-bg-image.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	/* keep height tight */
	padding: 12px 0;
}

/* dark overlay */
.services-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55); /* overlay strength */
	z-index: 1;
}

/* text above overlay */
.services-header h1 {
	position: relative;
	z-index: 2;
}

#servicesParticles {
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* services page ends here */

/* industry integra starts here */
.dashboard-preview {
	background-color: #f8f9fa;
	border-radius: 4px;
	scrollbar-width: thin;
	scrollbar-color: #6c757d #f8f9fa;
}

.dashboard-preview::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.dashboard-preview::-webkit-scrollbar-track {
	background: #f8f9fa;
	border-radius: 4px;
}

.dashboard-preview::-webkit-scrollbar-thumb {
	background-color: #6c757d;
	border-radius: 4px;
	border: 2px solid #f8f9fa;
}

.dashboard-preview::-webkit-scrollbar-thumb:hover {
	background-color: #495057;
}

/* industry integra ends here */

/* footer starts here */

.ai-footer-wrapper {
	padding: 80px 0 40px;
	background: #ffffff;
	position: relative;
}

.ai-footer-box {
	background: radial-gradient(circle at top right, #1e1e1e, #000);
	border-radius: 28px;
	padding: 60px 50px 30px;
	color: #fff;
	min-height: 80vh;
	position: relative;
	display: flex;
	flex-direction: column;
}

/* CTA - Updated */
.ai-footer-cta {
	position: relative;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	margin-bottom: 60px;
	background: black;
	min-height: 350px;
	display: flex;
	align-items: center;
}

.ai-footer-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.ai-footer-text {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 25px;
}

.ai-footer-cta-content {
	padding-right: 20px;
}

/* Footer Links Section */
.ai-footer-links {
	margin-top: auto;
}

.positiveFooter {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
}

.footerLeft {
	flex: 1;
	min-width: 300px;
}

.footerLeft img {
	max-width: 300px;
	height: auto;
	margin-bottom: 20px;
	filter: brightness(0) invert(1);
}

.footerLeft p {
	color: #b5b5b5;
	line-height: 1.6;
	font-size: 15px;
}

.footerLeft h3 {
	color: #fff;
	margin-bottom: 15px;
	font-size: 24px;
}

/* Footer Navigation */
.ai-footer-heading {
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: #ffffff;
	font-weight: 600;
}

.ai-footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ai-footer-list li {
	margin-bottom: 12px;
}

.ai-footer-list a {
	color: #b5b5b5;
	font-size: 15px;
	text-decoration: none;
	transition: 0.3s;
	display: block;
}

.ai-footer-list a:hover {
	color: #ffffff;
	padding-left: 5px;
}

/* Contact Details */
.contact-details {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
	color: #b5b5b5;
}

.contact-item i {
	margin-right: 10px;
	color: #fff;
	min-width: 20px;
}

/* Bottom */
.copy_right {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 25px;
	margin-top: 40px;
	font-size: 14px;
	color: #9e9e9e;
	text-align: center;
}

/* Mobile Menu */
.mobile-menu {
	list-style: none;
	padding: 0;
}

.mobile-menu li {
	margin-bottom: 15px;
}

.mobile-menu li span {
	display: block;
	color: var(--pqt-muted);
	font-weight: 600;

	font-size: 18px;
}

.mobile-menu a {
	display: block;
	color: var(--pqt-muted);
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
	text-decoration: none;
}

.mobile-menu a:hover {
	color: var(--pqt-primary);
	padding-left: 10px;
}

.company-card-mobile {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 10px;
}

.company-title {
	color: var(--pqt-dark);
	font-weight: 600;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.company-desc {
	color: #b5b5b5;
	font-size: 13px;
	margin-bottom: 10px;
}

.company-card-mobile a {
	color: #4dabf7;
	font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
	.ai-footer-globe {
		width: 400px;
	}
}

@media (max-width: 992px) {
	.ai-footer-cta {
		flex-direction: column;
		text-align: center;
		padding: 40px 30px;
	}

	.ai-footer-cta-content {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.ai-footer-globe {
		width: 350px;
		margin: 0 auto;
	}

	.positiveFooter {
		flex-direction: column;
		gap: 30px;
	}

	.footerLeft {
		min-width: 100%;
	}
}

@media (max-width: 768px) {
	.ai-footer-box {
	    border-radius:0 !important;
		padding: 40px 25px;
		min-height: auto;
	}

	.ai-footer-cta {
		min-height: auto;
		padding: 30px 20px;
		margin-bottom: 40px;
	}

	.ai-footer-title {
		font-size: 2rem;
	}

	.ai-footer-globe {
		width: 280px;
	}

	.ai-footer-heading {
		font-size: 15px;
		margin-bottom: 15px;
	}

	.ai-footer-list a {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.ai-footer-wrapper {
		padding: 40px 0 20px;
	}

	.ai-footer-title {
		font-size: 1.8rem;
	}

	.ai-footer-text {
		font-size: 1rem;
	}

	.ai-footer-globe {
		width: 250px;
	}

	.footerLeft img {
		max-width: 180px;
	}
}

/* Floating Icons Wrapper */
.floating-actions {
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 9999;
}

/* Common Button Style */
.action-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s ease;
}

.action-btn:hover {
	transform: scale(1.1);
}

/* Individual Colors */
.action-btn.call {
	background: #2563eb; /* blue */
}

.action-btn.whatsapp {
	background: #25d366;
}

.action-btn.top {
	background: #111827; /* dark */
}

/* Go To Top smooth appearance */
#goToTop {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
	transform: translateY(10px);
}

#goToTop.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

/* footer ends here */
