* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

body {
	background-color: #fff;
	padding: 0px;
}

.banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 10px 40px;
	background: linear-gradient(to right, #ffffff, #f9f9f9);
	border-radius: 30px;
	overflow: hidden;
}

.banner-left {
	flex: 1;
	min-width: 300px;
	max-width: 50%;
	padding: 40px;
}

.logos {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
}

.logos img {
	height: 100px;
}

.banner-left h2 {
	font-size: 2.2rem;
	color: #000;
	margin-bottom: 12px;
	font-weight: 600;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.highlight-box {
	background: linear-gradient(90deg, #db44a2, #e39b00);
	color: #fff;
	padding: 6px 16px;
	border-radius: 30px;
	font-weight: 600;
	margin: 0 5px;
	display: inline-block;
}

.verified-icon {
	width: 22px;
	height: 22px;
}

.kickstart {
	font-size: 1.9rem;
	font-weight: 700;
	margin: 18px 0;
	color: #000;
}

.kickstart span {
	color: #9900ff;
}

.kickstart sup {
	font-size: 0.6em;
	color: #ff4f81;
}

.enroll-section {
	margin-top: 25px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.enroll-btn {
	background: linear-gradient(90deg, #db44a2, #e39b00);
	color: white;
	border: none;
	border-radius: 50px;
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.btn-icon {
	width: 20px;
	height: 20px;
}

.why-setu {
	display: flex;
	align-items: center;
	font-size: 1rem;
	color: #333;
	gap: 8px;
}

.play-icon {
	width: 80px;
	height: 80px;
}

.note {
	margin-top: 20px;
	font-size: 0.85rem;
	color: #666;
}

.banner-right {
	flex: 1;
	min-width: 300px;
	max-width: 45%;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner-right img {
	width: 100%;
	max-width: 420px;
	border-radius: 20px;
	object-fit: contain;
}

@media (max-width: 768px) {
	.banner {
		flex-direction: column;
		text-align: center;
	}

	.banner-left,
	.banner-right {
		max-width: 100%;
	}

	.enroll-section {
		justify-content: center;
	}
}

/* Main Circle */
.main {
	width: 330px;
	height: 330px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

/* Bottom Left */
.bottom-left {
	width: 120px;
	height: 120px;
	bottom: 317px;
	left: 160px;
	z-index: 3;
}

.bottom-center {
	width: 220px;
	height: 220px;
	bottom: 220px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
/* Bottom Right */
.bottom-right {
	width: 120px;
	height: 120px;
	bottom: 318px;
	right: 162px;
	z-index: 3;
}

/* Optional decoration (X marks) */
.x-deco {
	position: absolute;
	font-size: 18px;
	color: #ff7a00;
	font-weight: bold;
}

.x1 {
	top: 10px;
	left: 10px;
}

.x2 {
	bottom: 10px;
	right: 10px;
}

/*section 2 start from here   */

.skill-india-section {
	text-align: center;
	padding: 40px 20px 0;
	background-color: #fff;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	margin-top: -12px;
}

.skill-india-logo img {
	height: 162px;
	margin-bottom: 10px;
}

.headline {
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(90deg, #a150ff, #db44a2, #00aaff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 15px;
}

.headline span {
	color: inherit;
	margin: 0 10px;
	display: inline-block;
}

.dot {
	width: 15px;
	height: 15px;
	background-color: #ccc;

	border-radius: 20%;
	display: inline-block;
	margin: 0 8px;
	vertical-align: middle;
}

.desc {
	font-size: 0.95rem;
	color: #555;
}

.ticker-wrapper {
	position: relative;
	overflow: hidden;
	background: linear-gradient(45deg, #cc60a3, #7260ab);
	margin-top: 30px;
	height: 45px;
	color: white;
}

.ticker {
	display: inline-block;
	white-space: nowrap;
	padding-left: 100%;
	animation: scroll-left 45s linear infinite;
}

.ticker span {
	display: inline-block;
	margin-right: 60px;
	font-weight: bold;
	font-size: 0.95rem;
	margin-top: 10px;
}

.ticker span::after {
	content: "🌟";
	margin-right: 5px;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-100%);
	}
}

@media (max-width: 600px) {
	.headline {
		font-size: 1.3rem;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.headline .dot {
		display: none;
	}
	.desc {
		font-size: 0.85rem;
	}
}

/* section 3rd css starts from here  */

.skill-showdown-container {
	padding: 40px 20px;
	text-align: center;
}

.skill-header {
	position: relative;
	display: inline-block;
	padding: 48px 104px;
	background: linear-gradient(73deg, #d72d9e, #eb6b23);
	color: white;
	border: 1px solid black;
	border-radius: 208px;
	clip-path: polygon(
		6% 0%,
		/* Top-left */ 100% 0%,
		/* Top-right */ 100% 50%,
		/* Right curve */ 92% 99%,
		/* Bottom-right */ 7% 97%,
		/* Bottom-left */ -4% 7% /* Left curve */
	);
	margin-bottom: -3px;
}

.skill-header h2 {
	margin: 0;
	font-size: 26px;
	font-weight: 400;
}

.skill-header h2 span {
	font-weight: 700;
}

.kickstart-badge {
	background-color: #ffeb3b;
	color: black;
	font-weight: bold;
	padding: 8px 15px;
	border-radius: 17px;
	position: absolute;
	bottom: -11px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.kickstart-badge span {
	color: #9941ff;
}

.outer-border {
	max-width: 1000px;
	margin: 0 auto;
	padding: 4px;
	border-radius: 20px;
	background: linear-gradient(
		135deg,
		#5ccbf1,
		#f5dc42,
		#a150ff,
		#ec539c,
		#5ccbf1
	);
}

.inner-content {
	background: #ffffff;
	border-radius: 20px;
	padding: 40px 30px;
}

.grid-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.grid-item {
	background-color: #f6f6f6;
	border-radius: 15px;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	text-align: left;
	gap: 25px;
	transition: all 0.3s ease;
}

.grid-item img {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
}

.grid-item p {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	line-height: 1.4;
	color: #000;
}

/* Color classes */
.blue {
	background-color: #eaf6ff;
}

.pink {
	background-color: #ffeef2;
}

.green {
	background-color: #e6f9ee;
}

.yellow {
	background-color: #fff8e1;
}

.purple {
	background-color: #f1edff;
}

/* Responsive */
@media (max-width: 900px) {
	.grid-box {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.grid-box {
		grid-template-columns: 1fr;
	}

	.skill-header {
		padding: 30px 50px;
	}

	.skill-header h2 {
		font-size: 20px;
	}

	.kickstart-badge {
		font-size: 14px;
	}
}

all-courses-section {
	padding: 60px 20px; /* top/bottom and side padding */
	background-color: #f9f9f9; /* optional background */
}

.section-wrapper {
	max-width: 1330px;
	margin: 0 auto;
	text-align: center;
}

.button-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px;
	margin-top: 60px;
}

.gradient-btn {
	padding: 0px 0px;
	border-radius: 68px;
	color: white;
	font-size: 17px;
	font-weight: 500;
	background: linear-gradient(135deg, #d946ef, #6366f1);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: transform 0.2s ease;
	text-align: center;
	border: 5px solid #ffffff;
}
.gradient-btn:hover {
	transform: scale(1.05);
}

/* Specific gradients */
.g1 {
	background: linear-gradient(180deg, #ec539c, #a150ff);
}
.g2 {
	background: linear-gradient(180deg, #7ac943, #0097ca);
}
.g3 {
	background: linear-gradient(180deg, #0097ca, #732dc9);
}
.g4 {
	background: linear-gradient(180deg, #e8ae40, #c74426);
}
.g5 {
	background: linear-gradient(180deg, #5ccbf1, #acb6e5);
}
.g6 {
	background: linear-gradient(180deg, #f5dc42, #06aae9);
	color: #333;
}
.g7 {
	background: linear-gradient(180deg, #f84375, #a150ff);
}
.g8 {
	background: linear-gradient(180deg, #a150ff, #06aae9);
}
.g9 {
	background: linear-gradient(180deg, #ff9595, #66a6ff);
}
.g10 {
	background: linear-gradient(180deg, #e26b1e, #732dc9);
}

/* Responsive Grid */
@media (max-width: 1000px) {
	.button-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 700px) {
	.button-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 500px) {
	.button-grid {
		grid-template-columns: -0.1fr;
	}
}

/* all courses buttons end here  */

/* section 4 css starts from here  */

.cardb2c-container {
	display: flex;
	flex-direction: column-reverse;
	gap: 20px;
	max-width: 700px;
	margin: 40px auto;
	/* border-radius: 40px 0px 0px 40px; */
	padding: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	background-color: #f9f9f9;
}

.cardb2c {
	display: flex;
	align-items: flex-start;
	border-radius: 20px;
	padding: 20px;
	color: #fff;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	gap: 20px;
	line-height: 25px;
}
.cardb2c-container::before {
	top: 0;
	left: 0;
	border-top: 2px solid;
	border-left: 2px solid;
	border-image: linear-gradient(to bottom right, #3fbb06, #f7941f);
	border-image-slice: 1;
	border-radius: 20px 0 0 0;
}

.cardb2c-container::after {
	bottom: 0;
	right: 0;
	border-bottom: 2px solid;
	border-right: 2px solid;
	border-image: linear-gradient(to top left, #ce3fc9, #f7941f);
	border-image-slice: 1;
	border-radius: 0 0 20px 0;
}

.cardb2c.reverse {
	flex-direction: row;
	gap: 100px;
}

.cardb2c-text {
	flex: 1;
}

.cardb2c-heading {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.cardb2c-heading img {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}

.cardb2c-heading h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 30px;
	color: #fff;
}

.cardb2c-text ul {
	list-style-type: square;
	padding-left: 20px;
	margin: 0;
	font-weight: 400;
}

.cardb2c-img {
	margin-right: 20px;
}

.cardb2c-img img {
	max-width: 103px;
	border-radius: 10px;
	object-fit: none;
	overflow: inherit;
	height: 199px;
}

.cardb2c-blue {
	background: linear-gradient(to right, #683afa, #64b3eb);
}

.cardb2c-purple {
	background: linear-gradient(to right, #ff63c4, #bd00fd);
}

.cardb2c-orange {
	background: linear-gradient(to right, #ffdd4d, #ed7115);
}

@media (max-width: 768px) {
	.cardb2c,
	.cardb2c.reverse {
		flex-direction: column-reverse;
		text-align: left;
	}

	.cardb2c-img {
		margin: 0 0 20px;
	}

	.cardb2c-img img {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.cardb2c.reverse {
		flex-direction: column-reverse;
		gap: 10px;
		object-fit: none;
		overflow: inherit;
	}
}

/* section 4 css ends here  */

/* section 5 roadmap of kick starts from here  */

.kickstart-workflow {
	padding: 40px 20px;
	text-align: center;
}

.kickstart-content h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 30px;
}

.kickstart-content .highlight {
	color: #7c00f7;
	font-weight: bold;
}

.kickstart-image {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.kickstart-image img {
	max-width: 100%;
	height: auto;
	/* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
	border-radius: 12px;
	display: block;
	margin-left: 20px;
}

/* Responsive Text Sizing */
@media (max-width: 768px) {
	.kickstart-content h2 {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
}

/* 
batch timeline section css  start */

.stat-section {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 250px;
	padding: 40px 20px;
	width: 100%;
	overflow: hidden;
}

.stat-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 34px;
	background: linear-gradient(to right, #f7941f, #fcd12a);
	z-index: 1;
}

.stat-item {
	background-color: #fff;
	border-radius: 70px;
	padding: 20px 30px;
	text-align: center;
	color: #fff;
	z-index: 2;
	width: 180px;
	flex-shrink: 0;
	border: 30px solid white;
}

.stat-item img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 10px;
}

.stat-item h2 {
	font-size: 28px;
	margin-bottom: 5px;
	font-weight: 700;
}

.stat-item p {
	font-size: 14px;
	font-weight: 500;
}

/* Colors */
.stat-item.purple {
	background: linear-gradient(to bottom, #a84df2, #8e3cf1);
}

.stat-item.orange {
	background: linear-gradient(to bottom, #f7941f, #e65c00);
}

.stat-item.blue {
	background: linear-gradient(to bottom, #23b2f9, #1a9edf);
}

/* Responsive */
@media (max-width: 768px) {
	.stat-section {
		flex-direction: column;
		gap: 30px;
	}

	.stat-line {
		display: none;
	}

	.stat-item {
		width: 100%;
		max-width: 220px;
	}
}

/* 
batch timeline section css end */

/* 

table of batches css starts from here  */

/* Import font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

/* Reset and base */
.batchtable {
	margin: 0;
	background: white;
	font-family: "Inter", sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 1rem;
}
.container22 {
	position: relative;
	max-width: 720px;
	width: 100%;
}

/* Blob shapes top left and right */
.blob-left,
.blob-right {
	position: absolute;
	top: -3rem;
	width: 80px;
	height: 160px;
	border-radius: 9999px;
	opacity: 0.4;
	object-fit: cover;
	pointer-events: none;
}

.blob-left {
	left: -3rem;
	clip-path: ellipse(50% 100% at 50% 50%);
}

.blob-right {
	right: -3rem;
	clip-path: ellipse(50% 100% at 50% 50%);
}

/* Heading */
.heading {
	text-align: center;
	font-weight: 400;
	font-size: 1.125rem; /* 18px */
	margin-bottom: 1.5rem;
	color: #000;
}

.heading strong {
	font-weight: 600;
}

/* Outer border with gradient */
.outer-border {
	border-radius: 20px;
	border: 2px solid transparent;
	background: linear-gradient(90deg, #9f7aea 0%, #7dd3fc 100%);
	padding: 2px;
}

/* Inner white box */
.inner-box {
	background: white;
	border-radius: 18px;
	padding: 1.5rem 1.5rem 1.5rem 1.5rem;
	border: 1px solid transparent;
}

/* Header row with buttons */
.header-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	background: linear-gradient(90deg, #cb4699, #7256cc);
}

.btn-grade,
.btn-course {
	font-size: 0.75rem; /* 12px */
	font-weight: 600;
	background: white;
	border: 1px solid #d1d5db; /* gray-300 */
	border-radius: 9999px;
	padding: 0.25rem 1rem;
	cursor: default;
}

/* MWF batch wrapper with gradient background */
.mwf-batch-wrapper {
	margin-left: auto;
	display: flex;

	border-radius: 9999px;
	padding: 0.25rem 0.5rem;
}

.btn-mwf {
	font-size: 0.75rem;
	font-weight: 600;

	border-radius: 9999px;
	padding: 0.25rem 1rem;
	cursor: default;
	border: none;
}

/* TTS batch wrapper with gradient background */
.tts-batch-wrapper {
	margin-left: 0.5rem;
	display: flex;
	background: linear-gradient(90deg, #7dd3fc 0%, #38bdf8 100%);
	border-radius: 9999px;
	padding: 0.25rem 0.5rem;
}

.btn-tts {
	font-size: 0.75rem;
	font-weight: 600;
	background-color: #7dd3fc;
	border-radius: 9999px;
	padding: 0.25rem 1rem;
	cursor: default;
	border: none;
}

/* Rows container */
.rows {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* Each row */
.row11 {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.75rem; /* 12px */
	font-weight: 400;
	color: #4b5563; /* gray-600 */
	background-color: #f0f0f0;
}

/* Grade circle */
.grade-circle {
	width: 28px;
	height: 28px;
	background-color: #7dd3fc; /* pink-400 */
	color: white;
	font-weight: 600;
	font-size: 0.75rem;
	line-height: 1rem;
	border-radius: 9999px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

/* Course name expands */
.course-name {
	flex: 1;
}

/* MWF time buttons */
.btn-mwf-time {
	font-size: 0.625rem; /* 10px */
	font-weight: 600;
	background-color: #fef3c7; /* yellow-200 */
	border-radius: 10rem; /* rounded-md */
	padding: 0.25rem 0.5rem;
	border: none;
	cursor: default;
	min-width: 48px;
	text-align: center;
}

/* TTS time buttons */
.btn-tts-time {
	font-size: 0.625rem; /* 10px */
	font-weight: 600;
	background-color: #7dd3fc; /* sky-300 */
	border-radius: 10rem; /* rounded-md */
	padding: 0.25rem 0.5rem;
	border: none;
	cursor: default;
	min-width: 48px;
	text-align: center;
}

/* Bottom right tail shape */
.tail-bottom-right {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 40px;
	height: 40px;
	border-top-left-radius: 20px;
	object-fit: cover;
	pointer-events: none;
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* Responsive font sizes */
@media (min-width: 640px) {
	.heading {
		font-size: 1.25rem; /* 20px */
	}
	.btn-grade,
	.btn-course,
	.btn-mwf,
	.btn-tts {
		font-size: 0.875rem; /* 14px */
	}
	.row {
		font-size: 0.875rem; /* 14px */
	}
	.btn-mwf-time,
	.btn-tts-time {
		font-size: 0.75rem; /* 12px */
		min-width: 56px;
	}
}

/* why kick start section starts from here  */
.kickstart99-container {
	background: #fff;
	padding: 40px 20px;
	max-width: 1100px;
	margin: auto;
	text-align: center;
}

.kickstart99-heading {
	font-size: 36px;
	font-weight: 700;
	color: #222;
	margin-bottom: 30px;
}

.kickstart99-highlight {
	color: #000;
}

.kickstart99-highlight-purple {
	color: #9941ff;
}

.kickstart99-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 20px;
}

.kickstart99-card {
	background: none;
	padding: 0;
	text-align: left;
	transition: all 0.3s ease;
}

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

.kickstart99-card-header {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.kickstart99-icon {
	width: 50px;
	height: 50px;
	background: transparent;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 12px;
}

.kickstart99-icon img {
	width: 67px;
	height: 67px;
}

.kickstart99-title {
	font-weight: 700;
	font-size: 18px;
	padding: 8px 16px;
	border-radius: 50px;
	color: white;
	background: linear-gradient(90deg, #ff4f8b, #ff6ec4);
	display: inline-block;
	white-space: nowrap;
}

.gradient-pink {
	background: linear-gradient(150deg, #f1b8dc, #ffffff);
}
.gradient-purple {
	background: linear-gradient(150deg, #bdb4d8, #ffffff);
}
.gradient-red {
	background: linear-gradient(150deg, #ff9498, #ffff);
}
.gradient-green {
	background: linear-gradient(150deg, #c4ecfa, #ffff);
}
.gradient-orange {
	background: linear-gradient(150deg, #f7bd93, #ffff);
}
.gradient-blue {
	background: linear-gradient(150deg, #b7e299, #ffff);
}

.kickstart99-description {
	font-size: 14px;
	color: #333;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.kickstart99-heading {
		font-size: 28px;
	}
}

/* why kick start section ends from here  */

/* parents feedback starts from here  */

.experience-section {
	text-align: center;
	padding: 50px 0;
}

.experience-section h2 {
	font-size: 28px;
	font-weight: bold;
}

.highlight {
	background: linear-gradient(to left, #fad2cd, #fcefd2);
	padding: 5px 15px;
	border-radius: 35px;
	transform: rotate(2deg);
	display: inline-block;
}

.image-container {
	display: flex;
	justify-content: center;
	gap: 42px;
	margin-top: 36px;
}

.image-container img {
	width: 402px;
	height: 250px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.experience-section h2 {
		font-size: 24px;
	}

	.image-container img {
		width: 250px;
	}
}

@media (max-width: 768px) {
	.image-container {
		flex-direction: column;
		align-items: center;
	}

	.image-container img {
		width: 90%;
	}
}

@media (max-width: 480px) {
	.experience-section h2 {
		font-size: 20px;
	}

	.image-container img {
		width: 100%;
	}
}

/* parent feed back ends from here  */

.promo-banner {
	width: 100%;
	max-width: 1050px;
	height: 250px;
	margin: 40px auto;
	background: linear-gradient(to right, #f9d423, #e65c00);
	border-radius: 50px;
	clip-path: polygon(3% -120%, 97% 0%, 100% 147%, 0% 100%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 60px;
	position: relative;
	overflow: visible;
}

.promo-text {
	color: white;
	max-width: 45%;
	position: relative;
	z-index: 10;
	padding-left: 10px;
}

.tagline {
	display: inline-block;
	background-color: #f9d37a;
	color: #000;
	font-weight: 700;
	font-size: 14px;
	padding: 6px 16px;
	border-radius: 9999px;
	margin-bottom: 8px;
	line-height: 1;
	font-family: "Inter", sans-serif;
}

.promo-text h2 {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 12px 0;
	line-height: 1.1;
	font-family: "Inter", sans-serif;
}

.enroll-btn {
	padding: 12px 60px;
	font-size: 18px;
	background: linear-gradient(90deg, #f5dc42);
	color: #ffffff;
	border: none;
	border-radius: 9999px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-family: "Inter", sans-serif;
}

.enroll-btn:hover {
	background: #d3bc55;
	opacity: 0.9;
	transform: scale(1.05);
}

.promo-images {
	position: relative;
	width: 320px;
	height: 167px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	margin-right: 20px;
	z-index: 5;
}

.promo-images img {
	border-radius: 50%;
	border: 4px solid white;
	object-fit: cover;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	background: white;
	position: relative;
}

.img-center {
	width: 300px;
	height: 300px;
	z-index: 20;
	margin-right: -50px;
	margin-left: -30px;
}

.img-left {
	width: 160px;
	height: 160px;
	z-index: 30;
	margin-right: -20px;
	margin-left: 0;
}

.img-right {
	width: 160px;
	height: 160px;
	z-index: 21;
	margin-left: -10px;
}

@media (max-width: 768px) {
	.promo-banner {
		flex-direction: column;
		height: auto;
		padding: 30px 20px;
		text-align: center;
	}

	.promo-text {
		max-width: 100%;
		margin-bottom: 20px;
		padding-left: 0;
		z-index: 10;
	}

	.promo-images {
		width: 100%;
		margin-top: 30px;
		height: auto;
		justify-content: center;
		gap: 16px;
		margin-right: 0;
	}

	.img-center {
		position: relative;
		width: 180px;
		height: 180px;
		margin: 0;
		z-index: 20;
	}

	.img-left,
	.img-right {
		position: relative;
		width: 90px;
		height: 90px;
		margin: 0;
		z-index: 15;
	}
}
/* last section of b to c page */
