* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #ffffff;
	max-width: 100vw;
}


/* BASE STYLES - Desktop (1181px+) */

header {
	background: white;
	padding: 15px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	height: 10vh;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-inline: clamp(16px, 4vw, 40px); /* scales between mobile and desktop */
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	width: clamp(120px, 10vw, 160px); /* logo scales with screen */
	height: auto;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: clamp(16px, 3vw, 40px); /* dynamic spacing */
	align-items: center;
	flex-wrap: wrap; /* prevents overflow on smaller desktops */
}

.nav-menu li a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	padding: 10px 0;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-menu li a:hover {
	color: #4f46e5;
}

.nav-menu li a .dropdown-arrow {
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}

.nav-menu li a:hover .dropdown-arrow {
	transform: rotate(180deg);
}

/* Auth Button - Main CTA */
.auth-btn {
	background: linear-gradient(45deg, #38b6ff, #4ecdc4);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(56, 182, 255, 0.3);
}

.auth-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(56, 182, 255, 0.4);
}

/* Modal Overlay */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	z-index: 1000;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.modal-overlay.active {
	display: flex;
}

/* Modal Container */
.auth-modal {
	background: white;
	border-radius: 20px;
	width: 100%;
	max-width: 400px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
	transform: scale(0.7);
	opacity: 0;
	transition: all 0.3s ease;
}

.modal-overlay.active .auth-modal {
	transform: scale(1);
	opacity: 1;
}

/* Modal Header */
.modal-header {
	padding: 30px 30px 0;
	text-align: center;
	position: relative;
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.close-btn:hover {
	background: #f1f1f1;
	color: #333;
}

.modal-title {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 10px;
}

.modal-subtitle {
	color: #666;
	margin-bottom: 30px;
}

/* Tab Navigation */
.tab-nav {
	display: flex;
	margin-bottom: 30px;
	background: #f8fafc;
	border-radius: 10px;
	padding: 4px;
}

.tab-btn {
	flex: 1;
	padding: 12px;
	border: none;
	background: transparent;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #666;
}

.tab-btn.active {
	background: white;
	color: #38b6ff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Form Content */
.tab-content {
	padding: 0 30px 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
}

.form-input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.form-input:focus {
	outline: none;
	border-color: #38b6ff;
	box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.1);
}

.submit-btn {
	width: 100%;
	padding: 14px;
	background: linear-gradient(45deg, #38b6ff, #4ecdc4);
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.submit-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 25px rgba(56, 182, 255, 0.3);
}

.forgot-link {
	display: block;
	text-align: center;
	color: #38b6ff;
	text-decoration: none;
	margin-top: 15px;
	font-size: 14px;
}

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

.divider {
	display: flex;
	align-items: center;
	margin: 25px 0;
	color: #666;
	font-size: 14px;
}

.divider::before,
.divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e2e8f0;
}

.divider::before {
	margin-right: 15px;
}

.divider::after {
	margin-left: 15px;
}

.social-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.social-btn {
	width: 100%;
	padding: 12px;
	border: 2px solid #e2e8f0;
	background: white;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 500;
}

.social-btn:hover {
	border-color: #38b6ff;
	transform: translateY(-1px);
}

/* Hide inactive tabs */
.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}


.Quick-Tests-Content, .About-us-Content {
	display: none;
	position: absolute;
	background-color: #ffffff;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
.Quick-Tests-Content a, .About-us-Content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-size: 0.9rem;
	border-bottom: 1px solid #e5e7eb;
}
.Quick-Tests-Content a:last-child, .About-us-Content a:last-child {
		border-bottom: none;
}
.Quick-Tests-Content a:hover, .About-us-Content a:hover {
	color: #38b6ff;
	background: #ffffff;
}
.Quick-Tests:hover .Quick-Tests-Content, .About-us:hover .About-us-Content {
		display: block;
}


/* Mobile-specific fixes for auth button and modal */
.auth-btn {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    outline: none;
}

.auth-btn:hover,
.auth-btn:active,
.auth-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 182, 255, 0.4);
}

.close-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.close-btn:hover,
.close-btn:active,
.close-btn:focus {
    background: #f1f1f1;
    color: #333;
}

.tab-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    outline: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .auth-modal {
        margin: 10px;
    }
    
    .modal-header,
    .tab-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* HERO SECTION */
 .hero {
	background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
	min-height: 600px;
	display: flex;
	align-items: center;
	padding: 80px 5%;
	position: relative;
	overflow: hidden;
}

.wave-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, #0587ff 0%, #6b8cff 100%);
	clip-path: ellipse(100% 100% at 50% 100%);
	opacity: 0.05;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.content {
	color: #1a1a2e;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: white;
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	color: #0587ff;
	margin-bottom: 28px;
	box-shadow: 0 4px 12px rgba(65, 105, 225, 0.15);
	border: 1px solid rgba(65, 105, 225, 0.1);
}

.badge-icon {
	width: 20px;
	height: 20px;
	background: #0587ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 12px;
}

h1 {
	font-size: 58px;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 24px;
	color: #1a1a2e;
	letter-spacing: -1.5px;
}

.highlight {
	color: #0587ff;
	position: relative;
}

.highlight::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 0;
	right: 0;
	height: 12px;
	background: rgba(65, 105, 225, 0.2);
	z-index: -1;
}

.description {
	font-size: 17px;
	line-height: 1.7;
	color: #5a5a6e;
	margin-bottom: 32px;
	max-width: 520px;
	text-align: justify;
}

.cta-group {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 32px;
}

.btn {
	padding: 16px 32px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-primary {
	background: #0587ff;
	color: white;
	box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3);
}

.btn-primary:hover {
	background: #3557c7;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(65, 105, 225, 0.35);
}

.btn-secondary {
	background: white;
	color: #0587ff;
	border: 2px solid #e0e6ff;
}

.btn-secondary:hover {
	background: #f8f9ff;
	border-color: #0587ff;
}

.image-container {
	position: relative;
	height: 550px;
}

.main-card {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 420px;
	height: 520px;
	background: white;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(65, 105, 225, 0.1);
}

.card-header {
	height: 70%;
	background: linear-gradient(135deg, #667eea 0%, #0587ff 100%);
	position: relative;
}

.card-body {
	padding: 24px;
	background: white;
}

.decorative-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
}

.circle-2 {
	bottom: 30px;
	left: -30px;
	width: 150px;
	height: 150px;
}


/* Mobile Navigation Toggle */
.mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #333;
	cursor: pointer;
}




/* SERVICES SECTION */
.services {
	padding: 80px 20px;
	text-align: center;
	background: linear-gradient(135deg, #f8fafc 0%, #e0f7fa 100%);
	position: relative;
	overflow: hidden;
}

/* Add subtle background pattern */
.services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle at 25% 25%, rgba(5, 135, 255, 0.05) 0%, transparent 50%),
						radial-gradient(circle at 75% 75%, rgba(255, 102, 196, 0.05) 0%, transparent 50%);
	z-index: 0;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.services-header {
	margin-bottom: 60px;
}

.services-title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 800;
	color: #ff66c4;
	margin-bottom: 20px;
	line-height: 1.2;
	position: relative;
	text-shadow: 0 2px 4px rgba(255, 102, 196, 0.2);
}

.services-title .highlight {
	color: #0587ff;
	background: linear-gradient(135deg, #0587ff, #00d4ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

/* Add decorative underline */
.services-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(135deg, #ff66c4, #0587ff);
	border-radius: 2px;
}

.services-subtitle {
	font-size: 1.1rem;
	color: #64748b;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
	font-weight: 400;
}

/* Cards container */
.services-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	justify-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

/* FLIP CARD STRUCTURE */
.service-card {
	perspective: 1000px;
	width: 100%;
	max-width: 320px;
	min-height: 350px;
	cursor: pointer;
}

.service-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 350px;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}

.service-card.flipped .service-card-inner {
	transform: rotateY(180deg);
}

/* Front and Back shared styles */
.service-card-front,
.service-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	min-height: 350px;
	backface-visibility: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 40px 30px 35px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
}

/* Front face */
.service-card-front {
	z-index: 2;
}

/* Back face */
.service-card-back {
	transform: rotateY(180deg);
	padding: 35px 30px;
	text-align: left;
	z-index: 1;
}

/* Fix for Safari and ensure proper stacking */
.service-card-front {
	transform: rotateY(0deg);
}

/* Add subtle gradient border */
.service-card-front::before,
.service-card-back::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(135deg, #ff66c4, #0587ff);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: exclude;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover .service-card-front::before,
.service-card:hover .service-card-back::before {
	opacity: 1;
}

/* Enhanced icon styling */
.service-icon {
	margin-bottom: 25px;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e0f7fa, #f3e5f5);
	transition: all 0.3s ease;
	margin-left: auto;
	margin-right: auto;
}

.service-icon::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0587ff, #ff66c4);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
	opacity: 1;
}

.service-icon img {
	width: 48px;
	height: 48px;
	transition: all 0.3s ease;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon img {
	transform: scale(1.1);
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Enhanced typography */
.service-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #1e293b;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.service-card:hover .service-title {
	color: #0587ff;
}

.service-desc {
	font-size: 1rem;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 25px;
	flex-grow: 1;
}

.service-desc strong {
	color: #0587ff;
	font-weight: 600;
}

/* Improved "Learn More" link */
.services-more {
	color: #0587ff;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s ease;
	margin-top: auto;
	justify-content: center;
}

.services-more::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #0587ff, #ff66c4);
	transition: width 0.3s ease;
}

.services-more:hover {
	color: #ff66c4;
	transform: translateX(5px);
}

.services-more:hover::before {
	width: calc(100% - 20px);
}

/* Add arrow animation */
.services-more::after {
	content: '→';
	transition: transform 0.3s ease;
}

.services-more:hover::after {
	transform: translateX(3px);
}

/* BACK CARD STYLES */
.back-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 20px;
	text-align: center;
}

.back-content {
	flex-grow: 1;
	overflow-y: auto;
}
.back-content p {
	margin-bottom: 20px;
	font-size: 0.8rem;
	line-height: 1.5;
}

.cta-button {
	background: linear-gradient(135deg, #0587ff, #00d4ff);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(5, 135, 255, 0.3);
	width: 100%;
	font-size: 0.95rem;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(5, 135, 255, 0.4);
	background: linear-gradient(135deg, #00d4ff, #0587ff);
}

.back-link {
	color: #64748b;
	text-decoration: none;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 15px;
	transition: color 0.3s ease;
	justify-content: center;
	text-align: center;
}

.back-link:hover {
	color: #0587ff;
}

/* Add subtle animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.service-card {
	animation: fadeInUp 0.6s ease-out forwards;
	opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 768px) {
	.services {
		padding: 60px 20px;
	}

	.service-card {
		min-height: 400px;
	}

	.service-card-inner {
		min-height: 400px;
	}

	.service-card-front,
	.service-card-back {
		min-height: 400px;
	}
}

@media (max-width: 480px) {
	.services-cards {
		grid-template-columns: 1fr;
	}
}



/* STATS SECTION */
.sls-numbers {
    padding: 80px 20px; /* More generous padding */
    background: url("../images/toronto-canada-landmark.webp") center/cover no-repeat fixed; /* Added fixed for parallax effect */
    text-align: center;
    position: relative;
    color: #fff;
    overflow: hidden;
    min-height: 400px; /* Ensure minimum height */
}

.sls-numbers::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(5, 135, 255, 0.3)); /* More sophisticated overlay */
    z-index: 1;
    transition: opacity 0.3s ease; /* Smooth transition for hover effects */
}

.sls-numbers:hover::before {
    opacity: 0.8; /* Subtle interaction on hover */
}

.numbers-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 60px; /* Better spacing */
}

.numbers-heading h2 {
    font-size: 2.8rem; /* Larger, more impactful */
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Add text shadow for better readability */
    letter-spacing: -0.5px; /* Tighter letter spacing for modern look */
    line-height: 1.2;
}

.numbers-container {
    display: grid; /* More modern layout */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
    gap: 40px; /* Consistent spacing */
    max-width: 1200px; /* Wider container */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.number-item {
    padding: 30px 20px; /* More generous padding */
    background: rgba(255, 255, 255, 0.05); /* Subtle background */
    border-radius: 16px; /* Rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    transition: all 0.3s ease; /* Smooth transitions */
    position: relative;
    overflow: hidden;
}

.number-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d0ff, #0587ff); /* Accent top border */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.number-item:hover {
    transform: translateY(-8px); /* Lift effect */
    background: rgba(255, 255, 255, 0.1); /* Brighter on hover */
    box-shadow: 0 10px 30px rgba(0, 208, 255, 0.2); /* Glowing shadow */
}

.number-item:hover::before {
    transform: scaleX(1); /* Animate top border */
}

.number-item h3 {
    font-size: 4rem; /* Larger numbers */
    color: #00d0ff;
    margin: 0 0 15px 0; /* Better spacing */
    font-weight: 800; /* Bolder font */
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 208, 255, 0.5); /* Glowing effect */
    transition: all 0.3s ease;
}

.number-item:hover h3 {
    transform: scale(1.1); /* Scale animation */
    text-shadow: 0 0 30px rgba(0, 208, 255, 0.8); /* Enhanced glow on hover */
}

.number-item p {
    font-size: 1.1rem; /* Slightly larger text */
    color: #e8f4f8; /* Better contrast */
    margin: 0;
    line-height: 1.4; /* Better readability */
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.number-item:hover p {
    opacity: 1; /* Full opacity on hover */
    color: #fff; /* Brighter text on hover */
}

/* Animation for numbers when section comes into view */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.number-item {
    animation: countUp 0.8s ease forwards;
}

.number-item:nth-child(1) { animation-delay: 0.1s; }
.number-item:nth-child(2) { animation-delay: 0.2s; }
.number-item:nth-child(3) { animation-delay: 0.3s; }
.number-item:nth-child(4) { animation-delay: 0.4s; }
.number-item:nth-child(5) { animation-delay: 0.5s; }




/* USP SECTION */
.usp-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f7fa 50%, #f3e5f5 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Add subtle background pattern */
.usp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(56, 182, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 102, 196, 0.03) 0%, transparent 50%);
    z-index: 0;
}

/* Container for better control */
.usp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Enhanced heading - centralized and smaller */
.usp-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #38b6ff;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
    text-shadow: 0 2px 4px rgba(56, 182, 255, 0.2);
    background: linear-gradient(135deg, #38b6ff, #0587ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add decorative elements to title - centered */
.usp-title::before,
.usp-title::after {
    display: none;
}

/* Add underline decoration - centered */
.usp-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #38b6ff, #ff66c4);
    border-radius: 2px;
    display: block;
}

.usp-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
}

/* Improved grid with better responsiveness */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Enhanced USP items - smaller cards */
.usp-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 30px 25px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 280px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

/* Add gradient border effect - smaller radius */
.usp-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #38b6ff, #ff66c4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover effects - smaller scale */
.usp-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.usp-item:hover::before {
    opacity: 1;
}

/* Enhanced icon styling - smaller */
.usp-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f7fa, #f3e5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Add rotating gradient background */
.usp-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #38b6ff, #ff66c4, #38b6ff);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    animation: rotate 3s linear infinite;
    transition: opacity 0.3s ease;
}

@keyframes rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.usp-item:hover .usp-icon::before {
    opacity: 1;
}

.usp-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.usp-item:hover .usp-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #e0f7fa, #f8d7da);
}

.usp-item:hover .usp-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Enhanced typography - smaller */
.usp-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e293b;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-align: center;
}

.usp-item:hover .usp-item-title {
    color: #38b6ff;
    transform: translateY(-2px);
}

.usp-item-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Add staggered animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.usp-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.usp-item:nth-child(1) { animation-delay: 0.1s; }
.usp-item:nth-child(2) { animation-delay: 0.2s; }
.usp-item:nth-child(3) { animation-delay: 0.3s; }
.usp-item:nth-child(4) { animation-delay: 0.4s; }





/* TESTIMONIALS */
.testimonials {
	font-family: 'Arial', sans-serif;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	min-height: 90vh;
	 display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 40px 20px;
}
.testimonials-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
	max-width: 800px;
}
.testimonials-heading {
	color: #38b6ff;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.testimonials-subtitle {
	opacity: 0.8;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #555;
}
.testimonials-container {
	height: 400px;
	position: relative;
	width: 100%;
	max-width: 1400px;
	overflow: hidden;
	border-radius: 20px;
	padding: 20px 0;
	margin: 0 auto;
	display: flex;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
/* Track (scrolls) */
.testimonials-track {
	display: flex;
	align-items: center;
	width: max-content;
	gap: 30px;
	animation: testimonials-scroll 30s linear infinite;
	padding: 0 20px;
}

/* Pause on hover for desktop */
@media (hover: hover) and (pointer: fine) {
	.testimonials-container:hover .testimonials-track {
		animation-play-state: paused;
	}
}

/* Pause state for touch devices */
.testimonials-track.paused {
	animation-play-state: paused;
}

/* Testimonial Items */
.testimonial-item {
	width: 350px;
	height: 300px;
	background: linear-gradient(145deg, #ffffff, #f0f0f0);
	border-radius: 20px;
	flex-shrink: 0;
	transition: all 0.3s ease;
	box-shadow: 
		0 10px 30px rgba(0,0,0,0.1),
		0 1px 3px rgba(0,0,0,0.1);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 0;
}
.testimonial-item:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 
		0 20px 50px rgba(0,0,0,0.15),
		0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #38b6ff, #4ecdc4);
}
/* Testimonial Text (70% of card) */
.testi-row-1 {
	flex: 1;
	padding: 30px 25px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.8rem;
	line-height: 1.6;
	color: #333;
	font-style: italic;
	position: relative;
}
.testi-row-1::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 15px;
	font-size: 3rem;
	color: #38b6ff;
	opacity: 0.3;
	font-family: Georgia, serif;
}
.testi-row-1::after {
	content: '"';
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 3rem;
	color: #38b6ff;
	opacity: 0.3;
	font-family: Georgia, serif;
}
/* Client Info (30% of card) */
.testi-row-2 {
	height: 90px;
	background: rgba(56, 182, 255, 0.05);
	border-top: 1px solid rgba(56, 182, 255, 0.1);
	padding: 15px 25px;
	display: flex;
	align-items: center;
	gap: 15px;
}
.test-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(45deg, #38b6ff, #4ecdc4);
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(56, 182, 255, 0.3);
}
.test-img::after {
	content: '👤';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	color: white;
}
.testi-name {
	font-weight: bold;
	color: #333;
	font-size: 1.1rem;
}
.testi-role {
	color: #666;
	font-size: 0.9rem;
	margin-top: 2px;
}
/* Keyframes */
@keyframes testimonials-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}


/* ALL COURSES SECTION */
.course-section {
	padding: 20px 20px;
	max-width: 1300px;
	margin: 0 auto;
}
.courses-container {
	display: flex;
	flex-direction: column;
	background-color: #d5e3f1;
	border-radius: 5px;
}
.course-heading {
	text-align: center;
	font-size: 2.2rem;
	margin: 20px;
	color: #0D1B2A;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1000px; /* 3 × 300px + gap space */
  margin: 0px auto;    /* centers the grid */
  gap: 20px;
  align-items: start;
  margin-bottom: 50px;
}


/* Card Base */
.course-card {
  background-color: #004a55;
  height: 350px;
  margin: 15px; /* keep spacing */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* Animation props */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 1.5s ease;
}

.course-card.hidden {
  opacity: 0;
  transform: translateY(20px); /* slides down a bit as it fades */
  pointer-events: none;
  height: 0;       /* collapse vertical space */
  margin: 0;       /* remove spacing when hidden */
  border: none;    /* prevents borders showing during collapse */
}

/* Image */
.course-image {
	height: 50%;
	width: auto;            /* let it size naturally */
	margin: 10px;           /* space around image */
	border-radius: 8px;     /* optional: soft corners */
	overflow: hidden;       /* keeps image inside rounded edges */
}
.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.course-content {
	height: 50%;
	padding: 15px;
	flex: none;
	display: flex;
	flex-direction: column;
}

.course-tag {
	width: 75px;
  background: #2196F3;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 3px 7px;
  border-radius: 4px;
  margin-bottom: 7px;
}


.course-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0D1B2A;
}

.course-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
/* Enrol Now Button */
.enrol-button {
	display: inline-block;
	margin-top: 5px;
	width: auto;
	padding: 10px 20px;
	color: #2196F3;
	font-weight: 600;
	border-radius: 5px;
	align-self: center;
	text-align: center;
	text-decoration: none;
	transition: background 0.3s ease;
}
.enrol-button:hover {
	background-color: #2196F3;
}
.enrol-button:hover {
  background-color: #1976D2;
}
.hidden {
      display: none;
}
.see-more-btn {
	display: inline-block;
	margin-bottom: 25px;
	padding: 10px 20px;
	align-self: center;
	background: #2d6cdf;
	color: white;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-weight: bold;
	transition: 0.3s;
}
.see-more-btn:hover {
	background: #ff4f81;
}


/* POPULAR COURSES SECTION */
.popular-courses-section {
	margin: 0; 
	padding: 20px 20px;
	background-color: #38b6ff;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.popular-course-heading {
	color: #fff;
	margin: 20px;
}

.popular-courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	max-width: 1000px; /* 3 × 300px + gap space */
	margin-bottom: 50px;
	gap: 20px;
	align-items: start;
}

.pop-course-card {
  background: #fff;
  height: 350px;
  margin: 15px; /* keep spacing */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* Animation props */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 1.5s ease;
}

/* Image */
.pop-course-image {
	height: 50%;
	width: auto;           
	margin: 10px;          
	border-radius: 8px;
	overflow: hidden; 
}

.pop-course-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Content */
.pop-course-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pop-course-tag {
	width: 80px;
	background: #2196F3;
	color: #fff;
	font-size: 0.75rem;
	font-weight: bold;
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 10px;
}


.pop-course-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: #0D1B2A;
}

.pop-course-desc {
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 15px;
}

/* Footer */
.pop-course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.pop-instructor {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.pop-instructor img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.pop-course-stats {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: #555;
}

/* Enrol Now Button */
.pop-enrol-button {
  display: inline-block;
	margin-top: 5px;
	width: auto;
	padding: 10px 20px;
	color: #2196F3;
	font-weight: 600;
	border-radius: 5px;
	align-self: center;
	text-align: center;
	text-decoration: none;
}
.pop-enrol-button:hover {
	transition: background 0.3s ease;
	background-color: #2196F3;
} 


.pop-enrol-button:hover {
  background-color: #1976D2;
}
    



/* BLOG SECTION */
.blog-section {
	padding: 80px 20px;
	margin: 0 auto;
	background-color: #f8efef;
}
.blog-container {
	width: 100%;
}

.blog-header {
	text-align: center;
	margin-bottom: 60px;
}
.blog-header h2 {
	font-size: 2.5rem;
	color: #2196F3;
	margin-bottom: 10px;
	font-weight: 300;
	position: relative;
}
.blog-header h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: #2196F3;
}
.blog-header h3 {
	font-size: 1rem;
	color: #666;
	font-weight: normal;
	margin-top: 20px;
}

.blog-card-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
}

.blog-card {
	display: flex;
	width: 540px;
	overflow: hidden;
	background: white;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
	width: 35%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover img {
	transform: scale(1.05);
}

.blog-content {
	padding: 25px;
	width: 65%;
	height: 100%;
}

.blog-meta {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	font-size: 0.85rem;
	color: #888;
}

.blog-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.blog-content h3 {
	font-size: 1.3rem;
	color: #2196F3;
	margin-bottom: 12px;
	line-height: 1.4;
	font-weight: 500;
}

.blog-content p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.neon-button {
	display: inline-block;
	padding: 8px 20px;
	background-color: #2196F3;
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 2px solid #2196F3;
}

.neon-button:hover {
	background-color: transparent;
	color: #2196F3;
	box-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}







/* COMMUNITY SECTION */
.community-section {
      background: #38b6ff;
      border-radius: 20px;
      padding: 60px 40px;
      max-width: 1100px;
      margin: 60px auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      box-shadow: 0 20px 40px rgba(158, 235, 250, 0.5);
      overflow: hidden;
      position: relative;
    }

    .community-content {
      max-width: 500px;
      z-index: 2;
    }

    .community-content h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: #fff;
    }

    .community-content p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #fff;
    }

    .community-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 2px solid #fff;
      border-radius: 40px;
      padding: 12px 24px;
      font-size: 1rem;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .community-btn:hover {
      background: #fff;
      color: #9eebfa;
    }

    .community-visual {
      position: relative;
      flex: 1;
    }

    .world-map {
      width: 100%;
      max-width: 500px;
      opacity: 0.8;
    }

    .avatar {
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid #fff;
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
}

/* Example positions (you can adjust for realism) */
.avatar-1 { top: 20%; left: 20%; }
.avatar-2 { top: 50%; left: 10%; }
.avatar-3 { bottom: 15%; left: 40%; }
.avatar-4 { top: 30%; right: 15%; }
.avatar-5 { bottom: 20%; right: 25%; }


/* FLUENCY TIME CALCULATOR */
.fluency-calculator {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 40px;
	max-width: 700px;
	margin: 50px auto;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.fluency-calculator h2 {
	font-size: 1.8rem;
	margin-bottom: 10px;
	color: #222;
}

.fluency-calculator p {
	color: #555;
	margin-bottom: 30px;
}

/* Controls */
.calc-controls {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 30px;
}

.calc-control {
	text-align: left;
}

.calc-control label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.calc-control input[type="range"] {
  width: 100%;
}

.calc-control select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

#studyHoursValue {
  display: block;
  margin-top: 5px;
  color: #444;
  font-weight: 500;
}

/* Results */
.calc-results {
  background: #fe99d7;
  border-radius: 10px;
  padding: 25px;
  color: #004a55;
}

.calc-results h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.calc-results p {
  font-size: 1.6rem;
  font-weight: bold;
}

/* CONTACT US SECTION */
.contact {
	background: #ffffff;
	padding: 80px 40px 60px;
	border-top: 1px solid #e2e8f0;
}

.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 50px;
	position: relative;
}

.contact h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: #38b6ff;
	border-radius: 2px;
}

#contactForm {
	max-width: 600px;
	margin: 0 auto;
	display: grid;
	gap: 25px;
}

#contactForm input,
#contactForm textarea {
	padding: 18px 24px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	background: #ffffff;
}

#contactForm input:focus,
#contactForm textarea:focus {
	outline: none;
	border-color: #4fd1c7;
	box-shadow: 0 0 0 3px rgba(79, 209, 199, 0.1);
}

#contactForm textarea {
	min-height: 120px;
	resize: vertical;
}

#contactForm .btn {
	background: #38b6ff;
	color: white;
	border: none;
	padding: 18px 24px;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

#contactForm .btn:hover {
	background: #38b6ff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(79, 209, 199, 0.3);
}
/* ===== CONTACT ALERT STYLES ===== */
.contact-alert {
    padding: 14px 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: opacity 0.5s ease;
}

.contact-alert.success {
    background-color: #e6f9ee;
    color: #0a7d3b;
    border-left: 4px solid #0a7d3b;
}

.contact-alert.error {
    background-color: #ffe9e9;
    color: #c02b2b;
    border-left: 4px solid #c02b2b;
}



/* NEWSLETTER SECTION */
.newsletter {
	background: linear-gradient(135deg, #ff66c4 0%, #38b6ff 100%);
	padding: 60px 40px;
	position: relative;
	overflow: hidden;
}

.newsletter::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
	background-size: 30px 30px;
	animation: float 30s linear infinite;
}

@keyframes float {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.newsletter-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.newsletter-content h2 {
	font-size: 2.8rem;
	font-weight: 700;
	color: white;
	margin-bottom: 20px;
	line-height: 1.2;
}

.newsletter-content p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.newsletter-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 25px;
}

.newsletter-form input {
	padding: 18px 24px;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-family: inherit;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
}

.newsletter-form input:focus {
	outline: none;
	background: white;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form input::placeholder {
	color: #718096;
}

.newsletter-email {
	grid-column: 1 / -1;
	position: relative;
}

.newsletter-email input {
	width: 100%;
	padding-right: 70px;
}

.newsletter-form button {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: #2d3748;
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.newsletter-form button:hover {
	background: #1a202c;
	transform: translateY(-50%) scale(1.05);
}

/* FOOTER SECTION */
footer {
	background: #38b6ff;
	color: white;
	position: relative;
}

.footer {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 40px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 60px;
	position: relative;
}

.footer-brand {
	grid-column: 1;
}

.footer-brand h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: white;
}

.footer-brand p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 25px;
}

.compliance-badge {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	backdrop-filter: blur(20px);
}

.compliance-badge .shield-icon {
	font-size: 2rem;
	margin-bottom: 10px;
	color: white;
}

.compliance-badge p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.footer-section h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 25px;
	color: white;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.footer-section ul li a:hover {
	color: white;
	transform: translateX(5px);
}

.partners-logos {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.partners-logos img {
	height: 40px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.8;
	transition: all 0.3s ease;
}

.partners-logos img:hover {
	opacity: 1;
	transform: scale(1.05);
}

.contact-info a {
	display: block;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	margin-bottom: 15px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.contact-info a:hover {
	color: white;
	transform: translateX(5px);
}

.social-icons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.social-icons i {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
	cursor: pointer;
}

.social-icons i:hover {
	color: white;
	transform: translateY(-3px);
}

.app-buttons {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
}

.app-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	padding: 12px 20px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.app-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.start-btn {
	background: #2d3748;
	color: white;
	padding: 15px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.start-btn:hover {
	background: #1a202c;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(45, 55, 72, 0.3);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 30px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.copyright {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.footer-social {
	display: flex;
	gap: 20px;
}

.footer-social a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	color: white;
}



/* ==================
======================
======================= */


/* RESPONSIVE BREAKPOINTS */
        
/* Max-width: 1200px */
@media (max-width: 1200px) {

	/* Header */
	.header-container {
		padding: 0 60px;     /* from >=1181px */
	}
	.nav-menu {
		gap: 30px;           /* <=1180px */
	}
	
	/* Services */
	

	/* Stats Section */
	.sls-numbers {
		padding: 4rem 2.5rem; /* <=1180px */
	}
	.sls-numbers h2 {
		font-size: 2.5rem;    /* <=1180px */
		margin-bottom: 2.5rem;
	}
	.numbers-container {
		gap: 2.25rem;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
	}
	.number-item {
		padding: 1.25rem;
		min-width: 150px;
		flex: 1;
		max-width: 220px;
	}
	.number-item h3 {
		font-size: 3.25rem;
	}
	.number-item p {
		font-size: 1.1rem;
	}

	/* USP Section */
	.usp-section {
        padding: 80px 15px; /* >=1181px */
    }
    .usp-grid {
        gap: 35px;
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    .usp-title::before,
    .usp-title::after {
        display: none;
    }
	/* All Courses Section */
	

	/* Blog Section */
	.blog-card-wrapper {
        grid-template-columns: 1fr; /* >=1181px */
        gap: 30px;
    }  
    .blog-meta {
        justify-content: space-around;
        gap: 10px;
    }
    .blog-meta span {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

	/* Newsletter */
	.newsletter-container {
		grid-template-columns: 1fr;  /* <=1180px */
		gap: 40px;                   /* <=1180px */
		text-align: center;          /* <=1180px */
    }
	.newsletter-content h2 {
		font-size: 3.2rem; /* >=1181px */
	}
    

	/* Footer */
	.footer {
		grid-template-columns: 1fr 1fr; /* <=1180px */
		gap: 40px;                       /* <=1180px */
	}
	.footer-brand {
		grid-column: 1 / -1;
		text-align: center;
	}
}        





/* Small Desktop/Tablet: 779px - 992px */
@media (max-width: 992px) {

	/* Header */
	.header-container {
		padding: 0 30px;
	}

	.nav-menu {
		gap: 25px;
	}
	
	/* Hero */


	/* Mobile Menu */
	.nav-menu.mobile-open {
		display: flex;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
		gap: 15px;
	}
	
	.header-container {
		position: relative;
	}

	/* Services */


	/* Stats Section */


	/* USP */
	.usp-grid {
	grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
	}
	

	/* All Courses Section */
	

	/* Contact Us */
	.contact {
		padding: 60px 30px 40px;
	}
	.contact h2 {
		font-size: 2rem;
	}

	/* Newsletter */
	.newsletter {
		padding: 40px 30px;
	}
	.newsletter-content h2 {
		font-size: 2.2rem;
	}
	.newsletter-content p {
		font-size: 1.1rem;
	}

	/* Footer */
	.footer {
		padding: 60px 30px 30px;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

}


        
/* Large Mobile/Small Tablet */
@media (max-width: 778px) {
	html, body {
		
	}
	/* Header */
	.nav-menu {
		display: none;
	}
	.mobile-toggle {
		display: block;
	}
	.auth-buttons {
		display: flex;
		gap: 8px;
		align-items: center;
	}

	/* Hero */
	.hero {
		background-color: #0587ff;
		background-image: url("../images/models/Model11.png");
		background-size: cover;
		height: 100vh;
		padding: 40px 20px 60px;
	}
	
	.container {
		height: 100%;
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.content {
		order: 2;
	}
	
	.content h1 {
		color: white;
	}
	.content span {
		color: rgb(195, 28, 28);
	}

	.badge {
		display: inline-flex;
		font-size: 11px;
		padding: 8px 16px;
		margin-bottom: 20px;
	}
	
	.badge-icon {
		width: 16px;
		height: 16px;
		font-size: 10px;
	}
	
	h1 {
		font-size: 32px;
		line-height: 1.2;
		margin-bottom: 20px;
		letter-spacing: -0.5px;
	}
	
	.highlight::after {
		bottom: 4px;
		height: 8px;
	}
	
	.container .description {
		display: none;
	}
	
	.cta-group {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 0;
		width: 100%;
	}
	
	.btn {
		padding: 14px 28px;
		font-size: 15px;
		width: 350px;
		justify-content: center;
		border-radius: 8px;
	}
	
	.btn-primary {
		background-color: #df3d49;
		box-shadow: 0 6px 16px rgba(65, 105, 225, 0.25);
	}
	.btn-secondary:hover {
		box-shadow: 0 6px 16px #df3d49;
	}
	.image-container {
		display: none;
	}
	.main-card {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
		max-width: 320px;
		height: 400px;
		margin: 0 auto;
	}
	.card-header {
		display: none;
	}
	
	.card-body {
		padding: 20px;
	}
	
	.circle-1 {
		width: 150px;
		height: 150px;
		top: -40px;
		right: -40px;
	}
	
	.circle-2 {
		width: 120px;
		height: 120px;
		bottom: 20px;
		left: -25px;
	}
	
	/* Services */
	.services {
        padding: 60px 15px;
    }
    
    .services-cards {
        gap: 25px;
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .service-card {
        padding: 35px 25px 30px;
        min-height: auto;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
       
       

	/* SLS Numbers/Stats Section */
	.sls-numbers {
        padding: 60px 15px;
        background-attachment: scroll; /* Remove fixed background on mobile for better performance */
        min-height: 350px;
    }
    
    .numbers-heading h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .numbers-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 25px;
    }
    
    .number-item {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .number-item h3 {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    
    .number-item p {
        font-size: 1rem;
    }



	/* USP */
    .usp-section {
        padding: 70px 15px;
    }
    
    .usp-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .usp-description {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .usp-item {
        padding: 25px 20px 20px;
        min-height: 220px;
    }
    
    .usp-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .usp-icon img {
        width: 45px;
        height: 45px;
    }
    
    .usp-item-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .usp-item-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }

	/* Additional visual enhancements */
	.testimonials-container::before,
	.testimonials-container::after {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		width: 100px;
		z-index: 10;
		pointer-events: none;
	}

	.testimonials-container::before {
		left: 0;
		background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
	}

	.testimonials-container::after {
		right: 0;
		background: linear-gradient(-90deg, rgba(255,255,255,0.8), transparent);
	}



	/* Blog Section */
	
	

	/* All Courses Section */
	.course-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		max-width: 778px; 
		margin: 0px auto;    /* centers the grid */
		gap: 15px;
		align-items: start;
		margin-bottom: 50px;
		}


		/* Card Base */
		.course-card {
		background-color: #004a55;
		height: 350px;
		margin: 15px; /* keep spacing */
		background: #fff;
		border: 1px solid #ddd;
		border-radius: 12px;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		}

	/* Hot Courses Section */


	/* Community Section */
    .community-section {
        flex-direction: column;
        text-align: center;
    }

    .community-content {
        max-width: 100%;
    }

    .community-visual {
        margin-top: 30px;
    }


	/* Contact Us */
	.contact {
		padding: 50px 20px 30px;
	}
	.contact h2 {
		font-size: 1.8rem;
	}
	#contactForm {
		gap: 20px;
	}
	#contactForm input,
	#contactForm textarea {
		padding: 15px 20px;
	}
	
	/* News letter */
	.newsletter {
		padding: 40px 20px;
	}
	.newsletter-content h2 {
		font-size: 1.8rem;
	}
	.newsletter-content p {
		font-size: 1rem;
	}
	.newsletter-form {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	/* Footer */
	.footer {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 50px 20px 20px;
	}
	.footer-brand {
		grid-column: 1;
		text-align: center;
	}
	.app-buttons {
		flex-direction: column;
		align-items: center;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}
}
        



/* Medium Mobile: 481px - 600px - Design 2 (Minimalist Pink) */
@media (max-width: 600px) {

	/* Header */
	

	/* Hero */
	.hero {
		background-color: #0587ff;
		background-image: url("../images/models/480-3.png");
		height: 100vh;
		padding: 40px 20px 60px;
	}
	
	.container {
		height: 100%;
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.content {
		order: 2;
	}
	
	.content h1 {
		color: white;
	}
	.content span {
		color: rgb(195, 28, 28);
	}

	.badge {
		display: inline-flex;
		font-size: 11px;
		padding: 8px 16px;
		margin-bottom: 20px;
	}
	
	.badge-icon {
		width: 16px;
		height: 16px;
		font-size: 10px;
	}
	
	h1 {
		font-size: 32px;
		line-height: 1.2;
		margin-bottom: 20px;
		letter-spacing: -0.5px;
	}
	
	.highlight::after {
		bottom: 4px;
		height: 8px;
	}
	
	.container .description {
		display: none;
	}
	
	.cta-group {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 0;
		width: 100%;
	}
	
	.btn {
		padding: 14px 28px;
		font-size: 15px;
		width: 350px;
		justify-content: center;
		border-radius: 8px;
	}
	
	.btn-primary {
		background-color: #df3d49;
		box-shadow: 0 6px 16px rgba(65, 105, 225, 0.25);
	}
	.btn-secondary:hover {
		box-shadow: 0 6px 16px #df3d49;
	}
	.image-container {
		display: none;
	}
	.main-card {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
		max-width: 320px;
		height: 400px;
		margin: 0 auto;
	}
	.card-header {
		display: none;
	}
	
	.card-body {
		padding: 20px;
	}
	
	.circle-1 {
		width: 150px;
		height: 150px;
		top: -40px;
		right: -40px;
	}
	
	.circle-2 {
		width: 120px;
		height: 120px;
		bottom: 20px;
		left: -25px;
	}

	/* Services */



	/* Stats Section */


	/* USP */
	.usp-title {
        font-size: 32px;
    }
    .usp-description {
        font-size: 15px;
    }
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


	/* Testimonials */
	.testimonial-item {
        min-width: 180px;
        font-size: 0.9rem;
        padding: 16px;
    }
	

	/* All Courses Section */
	.course-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		max-width: 600px; /* 3 × 300px + gap space */
		margin: 0px auto;    /* centers the grid */
		gap: 20px;
		align-items: start;
		margin-bottom: 50px;
		}


		/* Card Base */
		.course-card {
		background-color: #004a55;
		height: 350px;
		margin: 15px; /* keep spacing */
		background: #fff;
		border: 1px solid #ddd;
		border-radius: 12px;
		overflow: hidden;
		display: flex;
		flex-direction: column;
	}
}

/* Small Mobile: max 480px */
@media (max-width: 480px) {

	body {
        max-width: 100%;
	}
	* {
        box-sizing: border-box;
    }

	/* Header */
	header {
		max-width: 100vw;
		background: white;
		padding: 10px 0;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		position: sticky;
		top: 0;
		z-index: 1000;
		height: 10vh;
	}

	.header-container {
		max-width: 100%;
		height: 100%;
		margin: 0 auto;
		padding: 0 15px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
  	}

	.logo img {
		width: 120px;
		height: auto;
	}

	.nav-menu {
		display: none; /* Hide main nav on mobile, replace with hamburger menu */
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		list-style: none;
		gap: 0;
		align-items: stretch;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		padding: 0;
		margin: 0;
	}

	.nav-menu.active {
		display: flex;
	}

	.nav-menu li {
		border-bottom: 1px solid #f0f0f0;
	}

	.nav-menu li:last-child {
		border-bottom: none;
	}

	.nav-menu li a {
		text-decoration: none;
		color: #333;
		font-weight: 500;
		padding: 15px 20px;
		transition: all 0.3s ease;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 5px;
		width: 100%;
	}

	.nav-menu li a:hover {
		color: #38b6ff;
		background: #f8f9ff;
	}

	.nav-menu li a .dropdown-arrow {
		font-size: 0.8rem;
		transition: transform 0.3s ease;
	}

	.nav-menu li a:hover .dropdown-arrow {
		transform: rotate(180deg);
	}

	.auth-buttons {
		display: flex;
		gap: 8px;
		align-items: center;
	}

	.btn-login {
		background: transparent;
		border: 1px solid #38b6ff;
		color: #38b6ff;
		padding: 8px 15px;
		border-radius: 6px;
		text-decoration: none;
		font-weight: 600;
		font-size: 0.85rem;
		transition: all 0.3s ease;
	}

	.btn-login:hover {
		background: #38b6ff;
		color: white;
	}

	.btn-signup {
		background: #38b6ff;
		color: white;
		border: none;
		padding: 9px 15px;
		border-radius: 6px;
		text-decoration: none;
		font-weight: 600;
		font-size: 0.85rem;
		transition: all 0.3s ease;
	}

	.btn-signup:hover {
		background: #2d8bcc;
		transform: translateY(-1px);
		box-shadow: 0 3px 10px rgba(79, 70, 229, 0.3);
	}

	.Quick-Tests-Content, .About-us-Content {
		display: none;
		position: static;
		background-color: #f8f9ff;
		min-width: 100%;
		box-shadow: none;
		z-index: 1;
		margin: 0;
	}

	.Quick-Tests-Content a, .About-us-Content a {
		color: #666;
		padding: 10px 25px;
		text-decoration: none;
		display: block;
		font-size: 0.9rem;
		border-bottom: 1px solid #e5e7eb;
	}

	.Quick-Tests-Content a:last-child, .About-us-Content a:last-child {
		border-bottom: none;
	}

	.Quick-Tests-Content a:hover, .About-us-Content a:hover {
		color: #38b6ff;
		background: #ffffff;
	}

	.Quick-Tests:hover .Quick-Tests-Content, .About-us:hover .About-us-Content {
		display: block;
	}


	/* Hero Section */
	.hero {
		background-color: #0587ff;
		background-image: url("../images/models/480-3.png");
		height: 100vh;
		padding: 40px 20px 60px;
	}
	
	.container {
		height: 100%;
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.content {
		order: 2;
	}
	
	.badge {
		display: inline-flex;
		font-size: 11px;
		padding: 8px 16px;
		margin-bottom: 20px;
	}
	
	.badge-icon {
		width: 16px;
		height: 16px;
		font-size: 10px;
	}
	
	h1 {
		font-size: 32px;
		line-height: 1.2;
		margin-bottom: 20px;
		letter-spacing: -0.5px;
	}
	
	.highlight::after {
		bottom: 4px;
		height: 8px;
	}
	
	.container .description {
		display: none;
	}
	
	.cta-group {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 0;
		width: 100%;
	}
	
	.btn {
		padding: 14px 28px;
		font-size: 15px;
		width: 300px;
		justify-content: center;
		border-radius: 8px;
	}
	
	.btn-primary {
		box-shadow: 0 6px 16px rgba(65, 105, 225, 0.25);
	}
	
	.image-container {
		display: none;
	}
	.main-card {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
		max-width: 320px;
		height: 400px;
		margin: 0 auto;
	}
	.card-header {
		display: none;
	}
	
	.card-body {
		padding: 20px;
	}
	
	.circle-1 {
		width: 150px;
		height: 150px;
		top: -40px;
		right: -40px;
	}
	
	.circle-2 {
		width: 120px;
		height: 120px;
		bottom: 20px;
		left: -25px;
	}

	/*Services*/
	.services {
        padding: 50px 10px;
    }
    
    .service-card {
        padding: 30px 20px 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon img {
        width: 40px;
        height: 40px;
    }

	/* Stats Section/SLS Numbers */
	.sls-numbers {
        padding: 50px 10px;
        min-height: 300px;
    }
    
    .numbers-heading h2 {
        font-size: 1.9rem;
        margin-bottom: 30px;
    }
    
    .numbers-container {
        grid-template-columns: repeat(2, 1fr); /* Two columns on very small screens */
        gap: 20px;
    }
    
    .number-item {
        padding: 20px 10px;
        border-radius: 10px;
    }
    
    .number-item h3 {
        font-size: 2.5rem;
    }
    
    .number-item p {
        font-size: 0.9rem;
        line-height: 1.3;
    }



	/* USP SECTION */
	.usp-section {
        padding: 60px 10px;
    }
    
    .usp-title {
        font-size: 1.8rem;
    }
    
    .usp-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .usp-grid {
        max-width: 300px;
        gap: 25px;
    }
    
    .usp-item {
        padding: 20px 15px 15px;
        min-height: 200px;
        border-radius: 15px;
    }
    
    .usp-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 12px;
    }
    
    .usp-icon img {
        width: 40px;
        height: 40px;
    }
    
    .usp-item-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .usp-item-description {
        font-size: 0.9rem;
    }

	/* All Courses Section */
	.course-section {
        padding: 15px 10px;
    }

    .courses-container {
        border-radius: 3px;
    }

    .course-heading {
        font-size: 1.8rem;
        margin: 15px;
    }

    .course-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 15px;
        margin-bottom: 30px;
    }

    .course-card {
        height: 320px;
        margin: 10px;
        border-radius: 10px;
    }

    .course-image {
        height: 45%;
        margin: 8px;
        border-radius: 6px;
    }

    .course-content {
        height: 55%;
        padding: 12px;
    }

    .course-tag {
        width: 70px;
        font-size: 0.7rem;
        padding: 2px 6px;
        margin-bottom: 6px;
    }

    .course-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .course-desc {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .enrol-button {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin-top: 3px;
    }

    .see-more-btn {
        padding: 8px 16px;
        margin-bottom: 20px;
        font-size: 0.9rem;
        border-radius: 15px;
    }


	/* Popular Courses */
	.popular-courses-section {
    	padding: 15px 10px;
    }

    .popular-course-heading {
		font-size: 1rem;
        margin: 15px;
    }

    .popular-courses-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 15px;
        margin-bottom: 30px;
    }

    .pop-course-card {
        height: 320px;
		margin: 8px;
        border-radius: 6px;
    }

    .pop-course-image {
        height: 45%;
        margin: 8px;
        border-radius: 6px;
    }

    .pop-course-content {
        padding: 15px;
    }

    .pop-course-tag {
        width: 75px;
        font-size: 0.7rem;
        padding: 2px 6px;
        margin-bottom: 8px;
    }

    .pop-course-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .pop-course-desc {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

	/* Blog */
	/* Blog Section */
	.blog-section {
		padding: 15px 10px;
	}

	.blog-header {
		margin-bottom: 40px;
	}
	.blog-header h2 {
		font-size: 1.3rem;
	}
	.blog-header h3 {
		font-size: 0.9rem;
	}

	/* Cards in column layout */
	.blog-card-wrapper {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		margin-top: 20px;
	}

	.blog-card {
		flex-direction: column;
		width: 100%;
		max-width: 320px;
		height: auto;
		box-shadow: none;
	}

	.blog-card img {
		width: 100%;
		height: 180px;
		object-fit: cover;
		border-radius: 5px 5px 0 0;
	}

	.blog-content {
		width: 100%;
		padding: 15px;
	}

	.blog-meta {
		font-size: 0.75rem;
		gap: 10px;
		margin-bottom: 10px;
		flex-wrap: wrap;
	}

	.blog-meta span {
		gap: 4px;
	}

	.blog-content h3 {
		font-size: 0.95rem;
		margin-bottom: 8px;
		line-height: 1.3;
	}

	.blog-content p {
		display: none; /* stays hidden on mobile to keep it clean */
	}

	.neon-button {
		padding: 6px 15px;
		font-size: 0.8rem;
	}


	/* Contact Us */
	.contact {
		max-width: 100vw;
		padding: 40px 15px 25px;
	}
	.contact h2 {
		font-size: 1.6rem;
	}
	#contactForm input,
	#contactForm textarea,
	#contactForm .btn {
		padding: 12px 16px;
		font-size: 0.95rem;
	}

	/* Newsletter */
	.newsletter {
		max-width: 100vw;
		padding: 30px 15px;
	}
	.newsletter-content h2 {
		font-size: 1.5rem;
	}
	.newsletter-content p {
		font-size: 0.95rem;
	}
	.newsletter-form input {
		padding: 15px 20px;
		font-size: 0.9rem;
	}
	.newsletter-form button {
		width: 45px;
		height: 45px;
		font-size: 1rem;
	}
	
	/* Footer */
	.footer {
		max-width: 100vw;
		padding: 40px 15px 15px;
		gap: 30px;
	}
	.footer-section h3 {
		font-size: 1.1rem;
	}
	.social-icons {
		justify-content: center;
	}
	.app-buttons {
		gap: 10px;
	}
	
	.app-btn {
		padding: 10px 16px;
		font-size: 0.85rem;
	}
	.compliance-badge p {
		align-items: cent;
	}



	.footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 20px 15px; /* Reduced padding */
        display: flex;
        flex-direction: column; /* Stack vertically */
        align-items: center;
        text-align: center;
        gap: 15px; /* Space between copyright and social */
        max-width: 100vw;
        width: 100%;
        box-sizing: border-box;
    }
	.copyright {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem; /* Slightly smaller text */
        line-height: 1.4;
        max-width: 100%;
        word-wrap: break-word;
        text-align: center;
    }
	.footer-social {
        display: flex;
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center;
        gap: 15px; /* Reduce gap between items */
        max-width: 100%;
        width: 100%;
    }
	.footer-social a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.85rem; /* Smaller text */
        display: flex;
        align-items: center;
        gap: 6px; /* Reduce gap between icon and text */
        transition: all 0.3s ease;
        padding: 5px 8px; /* Add some padding for easier tapping */
        border-radius: 4px;
        white-space: nowrap; /* Prevent text wrapping within links */
    }

    .footer-social a:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }

    .footer-social a i {
        font-size: 1rem; /* Slightly larger icons for better touch targets */
        flex-shrink: 0; /* Prevent icons from shrinking */
    }
}




/* Extra Small Mobile: 380px */
@media (max-width: 380px) {
	body, body {
		overflow-x: hidden;
        max-width: 100%;
	}

	* {
        box-sizing: border-box;
    }

	/* Header */
	
	/* Hero */

	/* All Courses */
	.course-section {
        padding: 12px 8px;
    }

    .courses-container {
        border-radius: 2px;
    }

    .course-heading {
        font-size: 1.6rem;
        margin: 12px;
    }

    .course-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 12px;
        margin-bottom: 25px;
    }

    .course-card {
        height: 300px;
        margin: 8px;
        border-radius: 8px;
    }

    .course-image {
        height: 42%;
        margin: 6px;
        border-radius: 5px;
    }

    .course-content {
        height: 58%;
        padding: 10px;
    }

    .course-tag {
        width: 65px;
        font-size: 0.65rem;
        padding: 2px 5px;
        margin-bottom: 5px;
    }

    .course-title {
        font-size: 0.9rem;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .course-desc {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .enrol-button {
        padding: 7px 14px;
        font-size: 0.85rem;
        margin-top: 2px;
        border-radius: 4px;
    }

    .see-more-btn {
        padding: 7px 14px;
        margin-bottom: 18px;
        font-size: 0.85rem;
        border-radius: 12px;
    }

	/* Popular Courses */
	.popular-courses-section {
        padding: 12px 8px;
    }

    .popular-course-heading {
        margin: 12px;
        font-size: 1.6rem;
    }

    .popular-courses-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 12px;
        margin-bottom: 25px;
    }

    .pop-course-card {
        height: 300px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .pop-course-image {
        height: 42%;
        margin: 6px;
        border-radius: 5px;
    }

    .pop-course-content {
        padding: 10px;
    }

    .pop-course-tag {
        width: 65px;
        font-size: 0.65rem;
        padding: 2px 5px;
        margin-bottom: 5px;
    }

    .pop-course-title {
        font-size: 0.9rem;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .pop-course-desc {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }


	/* SLS Stats/Numbers Section */
	.sls-numbers {
        padding: 40px 8px;
    }
    
    .numbers-heading h2 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    
    .numbers-container {
        gap: 15px;
    }
    
    .number-item {
        padding: 18px 8px;
    }
    
    .number-item h3 {
        font-size: 2.2rem;
    }
    
    .number-item p {
        font-size: 0.85rem;
    }


	/* Contact */
	.contact h2 {
		font-size: 1.4rem;
	}
	
	.newsletter-content h2 {
		font-size: 1.3rem;
	}
	
	.newsletter-content p {
		font-size: 0.9rem;
	}
	
	.footer-brand h3 {
		font-size: 1.6rem;
	}
	
	.newsletter-form input {
		padding: 12px 16px;
	}
	
	.newsletter-form button {
		width: 40px;
		height: 40px;
		font-size: 0.9rem;
	}

	.footer-bottom {
        padding: 15px 10px; /* Even more compact padding */
        gap: 12px;
    }

    .copyright {
        font-size: 0.8rem;
        line-height: 1.3;
        /* Break long text more gracefully */
        hyphens: auto;
        word-break: break-word;
    }

    .footer-social {
        gap: 10px; /* Tighter spacing */
    }

    .footer-social a {
        font-size: 0.8rem;
        gap: 4px;
        padding: 4px 6px;
        min-width: 0; /* Allow shrinking if needed */
    }

    .footer-social a i {
        font-size: 0.9rem;
    }

    /* Optional: Stack social links vertically if they still overflow */
    .footer-social.vertical {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-social.vertical a {
        width: auto;
        justify-content: center;
    }
}