@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
/* Montserrat font-face registration */
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
/* Montserrat-SemiBold removed as per latest update */
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
.site-dark .hero-section,
.site-dark .hero-section * {
	color: #ECEFF1 !important;
}
/* Hero section title and subtitle for dark theme */
.site-dark .hero-title {
	color: var(--color-primary-hero-dark, #ECEFF1);
	font-weight: 700;
	text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.site-dark .hero-subtitle {
	color: var(--color-secondary-hero-dark, #A5D6A7);
	font-size: 1.1rem;
	font-weight: 400;
}
/* Hero section background gradient for dark theme (no inline styles, devguide compliant) */
.site-dark-bg-gradient {
	background: linear-gradient(120deg, #232946 0%, #1a223f 60%, #0f172a 100%);
}
/* Hero section background gradient for light theme (no inline styles, devguide compliant) */
.site-light-bg-gradient {
	background: linear-gradient(120deg, #f4f7fa 0%, #e0e7ff 100%);
}
/* Home page styles extracted for CSP compliance */
.landing-logo {
	max-width: 120px;
	height: auto;
	margin-bottom: 8px;
	filter: drop-shadow(0 4px 12px rgba(108, 99, 255, 0.15));
}

/* Hero Title with Gradient */
.gradient-text {
	background: linear-gradient(135deg, #3a4a6b 0%, #6c63ff 50%, #2ecc71 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 3.2rem;
	line-height: 1.2;
	letter-spacing: -1px;
}

.text-highlight {
	color: #6c63ff;
	font-weight: 800;
}

/* Hero Accent Line */
.hero-accent {
	animation: slideInWidth 0.8s ease-in-out 0.4s both;
}

@keyframes slideInWidth {
	from {
		width: 0;
		opacity: 0;
	}
	to {
		width: 80px;
		opacity: 1;
	}
}

/* Hero Subtitle Styling */
.hero-subtitle-text {
	color: #3a4a6b;
	font-weight: 500;
	letter-spacing: 0.3px;
	line-height: 1.6;
	font-size: 1.15rem;
}

.text-accent {
	color: #6c63ff;
	font-weight: 700;
}
	margin-bottom: 8px;
}

/* Devguide: All colors below use theme variables for light theme. No hardcoded inline styles. */
.site-light .hero-title {
	color: var(--color-primary-hero, #3a4a6b);
	font-weight: 700;
	text-shadow: 0 2px 8px rgba(60,80,120,0.08);
}
.inter-heading {
	/* Previous: font-family: 'Inter 28pt', 'Nunito', 'Noto Nastaliq Urdu', 'Noto Sans Arabic', 'Noto Sans', sans-serif; */
	font-family: 'Montserrat', 'Nunito', 'Noto Nastaliq Urdu', 'Noto Sans Arabic', 'Noto Sans', sans-serif !important;
	font-weight: 800;
	font-size: 3.2rem;
	letter-spacing: -1px;
	line-height: 1.2;
	word-break: break-word;
	white-space: normal;
}
@media (max-width: 992px) {
	.inter-heading {
		font-size: 2.4rem;
		white-space: normal;
		word-break: break-word;
	}
}
@media (max-width: 575px) {
	.inter-heading {
		font-size: 1.8rem;
		word-break: break-word;
	}
}

.site-light .hero-subtitle {
	color: var(--color-secondary-hero, #6c7a96);
	font-size: 1.1rem;
	font-weight: 400;
}
.site-light .cta-btn {
	background: linear-gradient(90deg, #2ecc71 0%, #6c63ff 100%);
	color: #fff;
	font-weight: 600;
	border-radius: 2rem;
	box-shadow: 0 2px 8px rgba(44,204,113,0.08);
	padding: 0.6rem 2.2rem;
	border: none;
	transition: background 0.2s, box-shadow 0.2s;
}
.site-light .cta-btn.secondary {
	background: linear-gradient(90deg, #6c63ff 0%, #2ecc71 100%);
}
.site-light .cta-btn:hover {
	box-shadow: 0 4px 16px rgba(44,204,113,0.16);
	opacity: 0.95;
}
.site-light .feature-card {
	background: #fff;
	border-radius: 1.2rem;
	box-shadow: 0 2px 16px rgba(60,80,120,0.07);
	padding: 2rem 1.2rem 1.2rem 1.2rem;
	transition: box-shadow 0.2s;
	border: none;
}
.site-light .feature-card:hover {
	box-shadow: 0 6px 24px rgba(44,204,113,0.13);
}
.site-light .feature-title {
	color: var(--color-feature-title, #3a4a6b);
	font-weight: 600;
	letter-spacing: 0.01em;
}
.site-light .feature-desc {
	color: var(--color-feature-desc, #6c7a96);
	font-size: 1rem;
	font-weight: 400;
	margin-top: 0.5rem;
}
.site-light .feature-icon {
	color: var(--color-feature-icon, #6c63ff);
	background: #f4f7fa;
	border-radius: 50%;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.5rem auto;
	font-size: 2.2rem;
	box-shadow: 0 2px 8px rgba(60,80,120,0.07);
}
@media (max-width: 575px) {
	.site-light .feature-title {
		font-size: 1.1rem;
	}
	.site-light .feature-desc {
		font-size: 0.95rem;
	}
	.site-light .feature-card {
		padding: 1.2rem 0.7rem 0.7rem 0.7rem;
	}
}
.site-light .feature-card:focus {
	outline: 2px solid #6c63ff;
	outline-offset: 2px;
}

/* Enhanced animations and hover effects */
.site-light .feature-card {
	transition: all 0.3s ease;
	cursor: pointer;
}

.site-light .feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(44,204,113,0.15);
}

.site-light .feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.site-light .feature-title {
	transition: color 0.3s ease;
}

.site-light .feature-card:hover .feature-title {
	color: #6c63ff;
}

/* Stats section styling */
.stats-section {
	background: linear-gradient(135deg, #f4f7fa 0%, #e8ecf6 100%);
	border-radius: 1.5rem;
	margin: 2rem 0;
}

.stats-section h4 {
	font-weight: 700;
}

/* Why section styling */
.why-section {
	background: #fff;
	border-radius: 1.5rem;
	padding: 3rem 2rem;
}

.why-section li h5 {
	color: #3a4a6b;
	font-weight: 600;
}

/* Improved button styling */
.btn-success, .btn-primary {
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-success:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(46,204,113,0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(108,99,255,0.3);
}

/* Color utility classes for stats and headings */
.color-primary {
	color: #3a4a6b;
}

.color-purple {
	color: #6c63ff;
}

.color-green {
	color: #2ecc71;
}

.color-red {
	color: #ff6b6b;
}

.color-orange {
	color: #ffa500;
}

.color-cyan {
	color: #00d4ff;
}

.color-violet {
	color: #9d4edd;
}

/* Feature card border colors */
.feature-card.border-purple {
	border-left: 4px solid #6c63ff;
}

.feature-card.border-green {
	border-left: 4px solid #2ecc71;
}

.feature-card.border-red {
	border-left: 4px solid #ff6b6b;
}

.feature-card.border-orange {
	border-left: 4px solid #ffa500;
}

.feature-card.border-cyan {
	border-left: 4px solid #00d4ff;
}

.feature-card.border-violet {
	border-left: 4px solid #9d4edd;
}

/* Hero description styling */
.hero-description {
	max-width: 550px;
	line-height: 1.8;
}

/* CTA button styling */
.cta-btn-rounded {
	border-radius: 0.5rem;
}

/* Why section animations */
.why-anim-1 {
	animation-delay: 0.1s;
}

.why-anim-2 {
	animation-delay: 0.2s;
}

.why-anim-3 {
	animation-delay: 0.3s;
}

.why-anim-4 {
	animation-delay: 0.4s;
}

/* Get Started gradient box */
.get-started-box {
	background: linear-gradient(135deg, #6c63ff 0%, #2ecc71 100%);
	border-radius: 1.5rem;
	padding: 3rem;
	color: white;
}

.get-started-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
	display: block;
}

@media (max-width: 768px) {
	.why-section {
		padding: 2rem 1rem;
	}
	
	.stats-section {
		margin: 1rem 0;
	}
	
	.get-started-box {
		padding: 2rem;
	}
	
	.get-started-icon {
		font-size: 3rem;
	}
}

