/* Hero */
.hero {
	/* height: 100vh; */
	position: relative;
	overflow: hidden;
	padding: 85px 40px;
	background: radial-gradient(
			circle at top left,
			rgba(122, 62, 255, 0.25),
			rgba(36, 11, 84, 0.8)
		),
		#2c0d68;
	color: #fff;
	font-family: "Poppins", "Montserrat", sans-serif;
}

.hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	gap: 214px;
}

.hero-left {
	text-align: left;
}

.hero-eyebrow {
	display: inline-block;
	background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
	color: #d5c9ff;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.08em;
	border-radius: 10px;
	padding: 6px 14px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.hero h1 {
	font-size: 56px;
	line-height: 1.15;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 20px 0;
	max-width: 700px;
}

.hero p {
	font-size: 18px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 32px 0;
	max-width: 620px;
}

.hero .cta-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 999px;
	background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	box-shadow: 0 6px 18px rgba(124, 58, 237, 0.45);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero .cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(124, 58, 237, 0.6);
}

.hero-right {
	width: 606px;
	height: 517px;
	text-align: center;
}
.hero-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

@media (max-width: 768px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero h1 {
		font-size: 38px;
	}

	.hero p {
		font-size: 16px;
	}

	.hero .cta-btn {
		padding: 12px 24px;
		font-size: 15px;
	}
}

.se-card {
	position: relative;
	width: 235px;
	height: 268px;
	border-radius: 20px;
	background: #ffffff;
	color: #1a1530;
	box-shadow: 0 9px 4px rgba(23, 26, 31, 0.19), 0 2px 0 rgba(23, 26, 31, 0.2);
	border: 1px solid #bcc1ca;
	padding: 22px 18px;
	/* transform: translate(72px, 48px); */
	transform: translate(150px, 80px);
	z-index: 2;
}
.se-card h4 {
	margin: 0 0 14px 0;
	font-size: 24px;
	font-weight: 800;
	color: #1a0d3a;
}
.se-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 14px;
	border-radius: 14px;
	background: #f1eef8;
	color: #1a1530;
	margin-bottom: 12px;
	font-weight: 600;
}
.se-row:nth-child(3) {
	background: #e9f4f9;
}
.se-row:nth-child(4) {
	background: #fbf3e7;
}
.se-row i {
	color: #5b5d7a;
}
/* Background vectors on the right */
.hero-arch {
	position: absolute;
	width: 488px;
	height: 650px;
	right: 0;
	top: 78px;
	background: #e6ebf2;
	border-top-left-radius: 244px;
	border-top-right-radius: 244px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
	opacity: 0.9;
}
.hero-circle {
	position: absolute;
	width: 320px;
	height: 320px;
	right: -40px;
	top: 40px;
	background: radial-gradient(
		circle at 30% 30%,
		rgba(255, 255, 255, 0.6),
		rgba(230, 235, 242, 0.9) 60%,
		rgba(230, 235, 242, 0) 70%
	);
	border-radius: 50%;
	filter: blur(1px);
	opacity: 0.9;
}
.btn-login {
	padding: 10px 18px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	text-decoration: none;
	transition: background 0.2s;
}
.btn-login:hover {
	background: rgba(255, 255, 255, 0.12);
}

body {
	background: linear-gradient(135deg, #1a0d3a 0%, #2d1b69 50%, #4a2c7a 100%);
	color: #fff;
	font-family: "Inter", sans-serif;
}

.about-hero {
	background: linear-gradient(135deg, #6b39ff 0%, #2d186a 100%);
	padding: 100px 0;
	text-align: center;
	position: relative;
}

.about-hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: #fff;
}

.about-hero p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 700px;
	margin: 0 auto;
}

.about-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}

.about-section {
	margin-bottom: 80px;
}

.about-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 30px;
	color: #fff;
	text-align: center;
}

.about-section p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
}

.mission-vision {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin: 60px 0;
}

.mission-card,
.vision-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.15);
}

.mission-card h3,
.vision-card h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

.mission-card p,
.vision-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}

.team-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 40px;
	color: #fff;
}

.team-slider {
	display: flex;
	overflow: hidden;
	position: relative;
	gap: 20px;
}

.team-slider-inner {
	display: flex;
	transition: transform 0.5s ease-in-out;
	gap: 20px;
}

.team-card {
	min-width: calc(33.333% - 14px);
	background: rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 30px 20px;
	text-align: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.team-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.15);
}

.team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 20px;
	display: block;
}

.team-info {
	color: #fff;
}

.team-name {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.team-role {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
}

.team-slider-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
}

.arrow {
	cursor: pointer;
	font-size: 24px;
	color: #fff;
	padding: 8px 12px;
	/* background: rgba(255, 255, 255, 0.1); */
	border-radius: 8px;
	transition: all 0.3s ease;
	user-select: none;
}

.arrow:hover {
	background: rgba(255, 255, 255, 0.2);
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #fff;
	width: 12px;
	height: 12px;
}

.dot:hover {
	background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
	.team-card {
		min-width: calc(100% - 20px);
	}
}

.stats-section {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 60px 40px;
	margin: 60px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: #7c3aed;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.difference-section {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1a0033, #2e0066);
	color: #fff;
	padding: 100px 40px;
	font-family: "Poppins", "Montserrat", sans-serif;
	text-align: center;
}
.difference-section img {
	max-width: 100%;
	height: auto;
	width: 62%;
	border-radius: 16px;
	margin-bottom: 40px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: start;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 25px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	border-radius: 20px;
	background: linear-gradient(90deg, #7c3aed, #a855f7);
	box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
	margin-bottom: 20px;
}

.section-tag i {
	font-size: 14px;
}

.left-content h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 24px;
	color: #ffffff;
}

.left-content p {
	font-size: 17px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.9);
	max-width: 580px;
}

.right-features {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

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

.feature {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.feature-icon {
	width: 100px;
	height: 60px;
	flex-shrink: 0;
	object-fit: contain;
	border-radius: 0 !important;
}

.feature-icon.fas {
	font-size: 56px;
	color: #fff;
	opacity: 0.9;
}

.feature-text h4 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 6px 0;
	color: #fff;
}

.feature-text p {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.vision-info {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1a0033, #2e0066);
}

.vision-box {
	background: linear-gradient(135deg, #26004d, #3a0073);
	color: white;
	border-radius: 20px;
	padding: 40px;
	width: 600px;
	box-shadow: 0 0 25px rgba(128, 0, 255, 0.4);
	border: 1px solid rgba(180, 100, 255, 0.3);
}

.title {
	color: #c792ea;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
}

.text {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 40px;
	line-height: 1.6;
}
.values-section {
	background: linear-gradient(120deg, #220649 0%, #32136a 100%);
	padding: 72px 0 0 0;
	color: #fff;
}

.values-inner {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	gap: 60px;
	align-items: flex-start;
	padding: 0 40px;
}

.values-left {
	flex: 1;
	min-width: 340px;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.core-values-btn {
	display: inline-flex;
	align-items: center;
	border: none;
	background: linear-gradient(
		90deg,
		rgba(118, 18, 249, 1) 0%,
		rgba(151, 71, 255, 1) 50%,
		rgba(219, 74, 224, 1) 100%
	) !important;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 28px;
	border-radius: 22px;
	box-shadow: 0 3px 18px 0 rgba(215, 113, 255, 0.13);
	margin-bottom: 12px;
	gap: 8px;
}
.core-values-btn .icon {
	font-size: 20px;
	margin-right: 8px;
}
.values-left h2 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.02em;
	margin: 0;
}

.values-right {
	flex: 2;
	display: flex;
	flex-direction: column;
	min-width: 400px;
	max-width: 600px;
	gap: 0;
}

.value-row {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	padding: 18px 0 10px 0;
}
.value-row .title {
	display: block;
	font-size: 1.16rem;
	font-weight: 700;
	margin-bottom: 2px;
}
.value-row p {
	color: #bab5e7;
	font-size: 1rem;
	margin: 0 0 0 0;
	line-height: 1.56;
}
.values-right hr {
	border: none;
	border-top: 1px solid #413182;
	margin: 0 0 0 50px;
}

/* ICON STYLES --- Use SVG backgrounds or unicode here, replace as needed */
.value-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	object-fit: contain;
	margin-top: 2px;
}

.value-row > div {
	flex: 1;
}

.team-section {
	background: linear-gradient(120deg, #230363 0%, #311064 100%);
	padding: 64px 40px 0 0;
	text-align: center;
	color: #fff;
}

/* === Team Section Styling === */

/* .team-section {
	background: linear-gradient(135deg, #18014f, #898bfa, #d543b2);
	padding: 60px 20px;
	color: #fff;
	text-align: center;
} */

.team-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 50px;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.team-container {
	max-width: 1200px;
	margin: 0 auto;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	justify-items: center;
}

.team-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	max-width: 290px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(6px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.team-image-wrapper {
	width: 100%;
	height: 320px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffffff;
}

.team-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-info {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	color: #18014f;
	border-radius: 20px;
	padding: 8px 16px;
	width: 85%;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
	text-align: center;
}

.team-name {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 10px 0 5px;
}

.team-designation {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.team-title {
		font-size: 2rem;
	}

	.team-grid {
		gap: 20px;
	}
}

@media (max-width: 900px) {
	.team-slider {
		padding: 0 10px;
	}
	.team-slider-inner {
		gap: 12px;
	}
	.team-card {
		min-width: 150px;
		max-width: 170px;
	}
	.team-photo {
		height: 170px;
	}
	.team-info {
		min-width: 120px;
		padding: 10px 12px 6px 12px;
	}
}

@media (max-width: 768px) {
	.values-inner {
		display: flex;
		max-width: 1200px;
		margin: 0 auto;
		gap: 60px;
		align-items: flex-start;
		padding: 0 40px;
		width: 100%;
		flex-direction: column;
	}
	.difference-section {
		background: linear-gradient(135deg, #3b1f84 0%, #4824a0 50%, #2d1161 100%);
		color: #fff;
		padding: 100px 40px;
		font-family: "Poppins", "Montserrat", sans-serif;
		flex-direction: column;
		display: flex;
	}
	.container {
		max-width: 1200px;
		margin: 0 auto;
		grid-template-columns: 1.1fr 1fr;
		gap: 60px;
		align-items: start;
	}
	.left-content p {
		font-size: 17px;
		line-height: 1.75;
		color: rgba(255, 255, 255, 0.9);
		max-width: 580px;
		margin-bottom: 20px;
	}
}

@media (max-width: 425px) {
	.container {
		max-width: 1200px;
		margin: 0 auto;
		grid-template-columns: 1.1fr 1fr;
		gap: 60px;
		align-items: start;
		flex-direction: column;
		display: flex;
	}
}

/* CTA Section Styles */
.sol-cta {
	background: #3918a7;
	border-radius: 32px;
	box-shadow: 0 0 40px 0 #2d186a44;
	margin: 64px auto;
	max-width: 1100px;
	padding: 56px 32px 64px;
	position: relative;
	overflow: hidden;
}

.cta-svg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.cta-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.cta-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 18px;
}

.cta-subtitle {
	font-size: 1.18rem;
	color: #fff;
	margin-bottom: 36px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 28px;
	position: relative;
}

.cta-btn {
	font-weight: 600;
	font-size: 1.15rem;
	border-radius: 32px;
	padding: 18px 36px;
	text-decoration: none;
	box-shadow: 0 2px 12px 0 #0001;
	transition: all 0.3s ease;
}

.cta-btn-outline {
	color: #fff;
	border: 1px solid #fff;
	background: transparent;
}

.cta-btn-outline:hover {
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.cta-btn-gradient {
	background: linear-gradient(90deg, #7b5cff 0%, #ff4fcf 100%);
	color: #fff;
}

.cta-btn-gradient:hover {
	box-shadow: 0 4px 20px rgba(123, 92, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
	.cta-title {
		font-size: 2rem;
	}

	.cta-subtitle {
		margin-bottom: 24px;
	}

	.cta-buttons {
		flex-direction: column;
		gap: 16px;
	}

	.cta-btn {
		width: 100%;
		max-width: 280px;
	}
}
