/**
 * ============================================================================
 * King of Digital Marketing - Common Course & Training Stylesheet
 * File: css/kdm-course.css
 * Purpose: Centralized styling for all Course & Training pages under Courses tab
 * ============================================================================
 */

/* ==========================================================================
   1. HERO SECTION & LEAD FORM
   ========================================================================== */
/* ==========================================================================
           KDM Course Hero Section - Attractive, Vibrant & Fully Responsive
           ========================================================================== */
.kdm-course-hero-wrapper {
	position: relative;
	background: linear-gradient(135deg, #050a18 0%, #0c1833 50%, #060e20 100%);
	padding: 45px 0 50px 0;
	overflow: hidden;
	color: #ffffff;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.kdm-course-hero-wrapper::before {
	content: '';
	position: absolute;
	top: -20%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(14, 165, 233, 0.24) 0%, rgba(59, 130, 246, 0.12) 40%, transparent 70%);
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
	z-index: 1;
}

.kdm-course-hero-wrapper::after {
	content: '';
	position: absolute;
	bottom: -20%;
	right: -10%;
	width: 650px;
	height: 650px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, rgba(236, 72, 153, 0.12) 40%, transparent 70%);
	border-radius: 50%;
	filter: blur(70px);
	pointer-events: none;
	z-index: 1;
}

.kdm-hero-grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 36px 36px;
	pointer-events: none;
	z-index: 1;
}

.kdm-course-hero-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 36px;
}

.kdm-course-hero-left {
	flex: 1 1 62%;
	min-width: 0;
}

.kdm-course-hero-right {
	flex: 0 0 380px;
	max-width: 100%;
}

/* Breadcrumbs */
.kdm-hero-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #94a3b8;
	margin-bottom: 14px;
}

.kdm-hero-breadcrumb a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.2s ease;
}

.kdm-hero-breadcrumb a:hover {
	color: #38bdf8;
}

.kdm-hero-breadcrumb i {
	font-size: 9px;
	color: #64748b;
}

/* Live Pulse Badge */
.kdm-hero-pulse-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.18) 0%, rgba(99, 102, 241, 0.18) 100%);
	border: 1px solid rgba(56, 189, 248, 0.45);
	color: #38bdf8;
	font-size: 11px;
	font-weight: 800;
	padding: 6px 14px;
	border-radius: 9999px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 14px;
	box-shadow: 0 0 18px rgba(56, 189, 248, 0.2);
}

.kdm-hero-pulse-badge .pulse-dot {
	width: 8px;
	height: 8px;
	background: #10b981;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
	animation: kdmPulse 1.8s infinite;
}

@keyframes kdmPulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
	}
}

/* Typography */
.kdm-course-hero-title {
	font-size: 36px;
	line-height: 1.22;
	font-weight: 900;
	color: #ffffff;
	margin: 0 0 14px 0;
	letter-spacing: -0.6px;
}

.kdm-hero-gradient-text {
	background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline;
}

.kdm-course-hero-subtitle {
	font-size: 14.5px;
	line-height: 1.6;
	color: #cbd5e1;
	margin: 0 0 18px 0;
}

.kdm-course-hero-subtitle strong {
	color: #ffffff;
	font-weight: 700;
}

/* Stats Bar */
.kdm-hero-stats-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 16px;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 9px 16px;
	margin-bottom: 22px;
	width: fit-content;
}

.kdm-stat-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: #e2e8f0;
}

.kdm-stat-divider {
	color: rgba(255, 255, 255, 0.22);
}

/* 6 Value Highlights Grid */
.kdm-hero-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 24px;
}

.kdm-hero-feat-card {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 10px;
	padding: 10px 12px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	transition: all 0.25s ease;
}

.kdm-hero-feat-card:hover {
	background: linear-gradient(145deg, rgba(56, 189, 248, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
	border-color: rgba(56, 189, 248, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.kdm-feat-icon-box {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.25) 0%, rgba(99, 102, 241, 0.25) 100%);
	border: 1px solid rgba(56, 189, 248, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #38bdf8;
	font-size: 13px;
}

.kdm-feat-content {
	min-width: 0;
}

.kdm-feat-title {
	font-size: 12.5px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 2px;
}

.kdm-feat-desc {
	font-size: 11px;
	color: #94a3b8;
	line-height: 1.3;
}

/* CTAs */
.kdm-hero-cta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.kdm-btn-hero-primary {
	background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #4f46e5 100%);
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 800;
	padding: 12px 22px;
	border-radius: 10px;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.25s ease;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.kdm-btn-hero-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(37, 99, 235, 0.6);
	background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 50%, #4338ca 100%);
}

.kdm-btn-hero-whatsapp {
	background: linear-gradient(135deg, #059669 0%, #10b981 100%);
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 18px;
	border-radius: 10px;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
	transition: all 0.25s ease;
}

.kdm-btn-hero-whatsapp:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(16, 185, 129, 0.5);
	background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

.kdm-hero-call-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #e2e8f0;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	padding: 10px 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.2s ease;
}

.kdm-hero-call-link:hover {
	color: #38bdf8;
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(56, 189, 248, 0.35);
}

/* Right Card Container */
.kdm-hero-form-card {
	background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.92));
	border: 1px solid rgba(56, 189, 248, 0.35);
	border-radius: 18px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(56, 189, 248, 0.18);
	overflow: hidden;
	position: relative;
}

.kdm-hero-form-header {
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.18) 0%, rgba(99, 102, 241, 0.18) 100%);
	padding: 12px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.kdm-form-header-title {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: #38bdf8;
	display: flex;
	align-items: center;
	gap: 6px;
}

.kdm-form-seat-tag {
	font-size: 10px;
	font-weight: 800;
	background: rgba(245, 158, 11, 0.2);
	border: 1px solid rgba(245, 158, 11, 0.5);
	color: #fbbf24;
	padding: 2px 8px;
	border-radius: 12px;
	text-transform: uppercase;
}

.kdm-hero-form-iframe {
	width: 100%;
	height: 405px;
	border: none;
	display: block;
	overflow: hidden;
}

/* Responsive */
@media (max-width: 1199px) {
	.kdm-course-hero-title {
		font-size: 32px;
	}

	.kdm-hero-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 991px) {
	.kdm-course-hero-container {
		flex-direction: column;
		gap: 32px;
	}

	.kdm-course-hero-left,
	.kdm-course-hero-right {
		width: 100%;
		flex: 1 1 100%;
	}

	.kdm-course-hero-right {
		max-width: 480px;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.kdm-course-hero-wrapper {
		padding: 30px 0 40px 0;
	}

	.kdm-course-hero-title {
		font-size: 25px;
		line-height: 1.25;
	}

	.kdm-course-hero-subtitle {
		font-size: 13.5px;
	}

	.kdm-hero-features-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.kdm-hero-stats-bar {
		width: 100%;
		justify-content: space-between;
		font-size: 11.5px;
		padding: 8px 12px;
	}

	.kdm-stat-pill {
		font-size: 11.5px;
	}

	.kdm-hero-cta-row {
		flex-direction: column;
		width: 100%;
	}

	.kdm-btn-hero-primary,
	.kdm-btn-hero-whatsapp,
	.kdm-hero-call-link {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.kdm-hero-form-iframe {
		height: 410px;
	}
}

/* ==========================================================================
   2. STUDENTS GALLERY & CAMPUS LIFE
   ========================================================================== */
.students-gallery-section {
	padding: 50px 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.students-gallery-header h2 {
	font-size: 30px;
	font-weight: 800;
	color: #0f172a;
	text-align: center;
	margin-bottom: 8px;
}

.students-gallery-header p {
	color: #64748b;
	font-size: 15px;
	text-align: center;
	margin-bottom: 30px;
}

.students-slider-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.students-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 10px 5px 20px 5px;
	scrollbar-width: thin;
	scrollbar-color: #38bdf8 #e2e8f0;
	-webkit-overflow-scrolling: touch;
}

.students-track::-webkit-scrollbar {
	height: 6px;
}

.students-track::-webkit-scrollbar-track {
	background: #e2e8f0;
	border-radius: 10px;
}

.students-track::-webkit-scrollbar-thumb {
	background: #38bdf8;
	border-radius: 10px;
}

.student-card-item {
	position: relative;
	flex: 0 0 280px;
	max-width: 280px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.placed-stamp-badge {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(220, 38, 38, 0.95);
	color: #ffffff;
	font-family: 'Impact', 'Arial Black', sans-serif;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 4px 10px;
	border: 2px dashed #ffffff;
	border-radius: 6px;
	transform: rotate(-10deg);
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	z-index: 5;
	pointer-events: none;
}

.student-card-item:hover {
	transform: translateY(-6px);
	border-color: #ef4444;
	box-shadow: 0 12px 25px rgba(239, 68, 68, 0.25);
}

.student-card-item img {
	width: 100%;
	height: 310px;
	object-fit: cover;
	object-position: top center;
	display: block;
	transition: transform 0.3s ease;
}

.student-card-item:hover img {
	transform: scale(1.04);
}

.slider-nav-btn {
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	transition: all 0.2s ease;
}

.slider-nav-btn:hover {
	background: #ef4444;
	transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
	left: 0;
}

.slider-nav-next {
	right: 0;
}

@media (max-width: 768px) {
	.student-card-item {
		flex: 0 0 230px;
		max-width: 230px;
	}

	.student-card-item img {
		height: 250px;
	}

	.placed-stamp-badge {
		font-size: 11px;
		padding: 3px 8px;
	}

	.slider-nav-btn {
		width: 36px;
		height: 36px;
	}
}

/* ==========================================================================
   3. CAREER OPPORTUNITIES & 60+ MODULES GRID
   ========================================================================== */
.career-card-animated {
	background: linear-gradient(145deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.95)) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 20px !important;
	padding: 28px 22px !important;
	margin-bottom: 25px !important;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
	position: relative !important;
	overflow: hidden !important;
	min-height: 250px !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.career-card-animated::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.15), transparent);
	transition: left 0.6s ease;
}

.career-card-animated:hover::before {
	left: 100%;
}

.career-card-animated:hover {
	transform: translateY(-8px) scale(1.02) !important;
	border-color: rgba(56, 189, 248, 0.6) !important;
	box-shadow: 0 18px 40px rgba(56, 189, 248, 0.25) !important;
	background: linear-gradient(145deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98)) !important;
}

.career-icon-box {
	width: 65px !important;
	height: 65px !important;
	border-radius: 16px !important;
	background: rgba(56, 189, 248, 0.12) !important;
	border: 1px solid rgba(56, 189, 248, 0.3) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 auto 16px auto !important;
	transition: all 0.35s ease !important;
}

.career-card-animated:hover .career-icon-box {
	transform: scale(1.15) rotate(4deg) !important;
	background: rgba(56, 189, 248, 0.22) !important;
	border-color: #38bdf8 !important;
	box-shadow: 0 0 20px rgba(56, 189, 248, 0.4) !important;
}

.career-card-animated h4 {
	color: #ffd86b !important;
	font-weight: 800 !important;
	font-size: 19px !important;
	text-align: center !important;
	margin-bottom: 10px !important;
}

.career-card-animated p {
	color: #e2e8f0 !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
	text-align: justify !important;
	margin: 0 !important;
}

.modules-section-wrapper {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 50px 30px;
	margin: 35px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.modules-section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px auto;
}

.modules-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #e0f2fe;
	color: #0284c7;
	border: 1px solid #bae6fd;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.modules-main-title {
	font-size: 32px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
	line-height: 1.3;
}

.modules-sub-title {
	font-size: 15px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

.modules-grid-60 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.module-card-item {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none !important;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-card-item:hover {
	transform: translateY(-4px);
	border-color: #38bdf8;
	box-shadow: 0 12px 25px rgba(2, 132, 199, 0.12);
	background: #ffffff;
}

.module-icon-box {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #e0f2fe;
	color: #0284c7;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.module-card-item:hover .module-icon-box {
	background: #0284c7;
	color: #ffffff;
	transform: scale(1.08);
}

.module-card-item:hover .module-icon-box svg {
	stroke: #ffffff;
}

.module-title-text {
	font-size: 13.5px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.35;
	margin: 0;
	transition: color 0.2s ease;
}

.module-card-item:hover .module-title-text {
	color: #0284c7;
}

@media (max-width: 1200px) {
	.modules-grid-60 {
		grid-template-columns: repeat(3, 1fr);
	}
}

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

	.modules-section-wrapper {
		padding: 35px 20px;
	}
}

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

/* ==========================================================================
   4. TOOLS COVERED SECTION
   ========================================================================== */
.tools-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 16px;
	padding: 10px 0 30px 0;
	justify-content: center;
}

.tool-card-modern {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.tool-card-modern:hover {
	transform: translateY(-6px) scale(1.05);
	border-color: #38bdf8;
	box-shadow: 0 12px 28px rgba(56, 189, 248, 0.25);
}

.tool-card-modern img {
	max-height: 60px;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.tool-card-modern:hover img {
	transform: scale(1.08);
}

/* ==========================================================================
   5. BATCHES & ADMISSION DETAILS
   ========================================================================== */
.batches-section {
	padding: 55px 25px;
	background: #0f172a;
	color: #ffffff;
	border-radius: 20px;
	margin: 30px auto;
	box-shadow: 0 12px 35px rgba(15, 23, 42, 0.2);
	position: relative;
	overflow: hidden;
}

.batches-section::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -10%;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
	pointer-events: none;
}

.batches-header h2 {
	font-size: 30px;
	font-weight: 800;
	color: #ffffff;
	text-align: center;
	margin-bottom: 35px;
}

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

.batch-card-modern {
	background: rgba(30, 41, 59, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.batch-card-modern:hover {
	transform: translateY(-8px);
	background: rgba(30, 41, 59, 0.95);
	border-color: #38bdf8;
	box-shadow: 0 16px 35px rgba(56, 189, 248, 0.22);
}

.batch-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 20px;
	background: rgba(56, 189, 248, 0.15);
	color: #38bdf8;
	border: 1px solid rgba(56, 189, 248, 0.3);
}

.batch-icon-wrap {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(2, 132, 199, 0.3));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.batch-card-modern:hover .batch-icon-wrap {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.batch-card-modern:hover .batch-icon-wrap svg {
	stroke: #ffffff;
}

.batch-card-title {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
}

.batch-card-text {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.65;
	margin: 0;
}

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

/* ==========================================================================
   6. SPECIFIC MARKETING MODULES CARDS
   ========================================================================== */
.spec-modules-section {
	padding: 40px 0;
	background: transparent;
}

.spec-modules-header {
	text-align: center;
	max-width: 850px;
	margin: 0 auto 35px auto;
}

.spec-modules-header h2,
.spec-modules-main-title {
	font-size: 30px;
	font-weight: 800;
	color: #0f172a;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 12px;
	line-height: 1.35;
}

.spec-modules-header h2 strong,
.spec-modules-main-title strong {
	color: #0284c7;
}

.spec-modules-header p,
.spec-modules-sub-title {
	color: #475569;
	font-size: 15px;
	line-height: 1.7;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.spec-modules-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.spec-module-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.spec-module-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #38bdf8, #0284c7);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.spec-module-card:hover {
	transform: translateY(-8px);
	border-color: #38bdf8;
	box-shadow: 0 16px 32px rgba(56, 189, 248, 0.18);
}

.spec-module-card:hover::before {
	opacity: 1;
}

.spec-module-icon-wrap {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(2, 132, 199, 0.18));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.spec-module-card:hover .spec-module-icon-wrap {
	transform: scale(1.1) rotate(4deg);
	background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.spec-module-card:hover .spec-module-icon-wrap svg {
	stroke: #ffffff;
}

.spec-module-title {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 12px;
}

.spec-module-desc {
	font-size: 14px;
	color: #64748b;
	line-height: 1.65;
	margin-bottom: 22px;
	flex-grow: 1;
}

.spec-module-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
	color: #ffffff !important;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 22px;
	border-radius: 8px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	width: fit-content;
	box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.spec-module-btn:hover {
	background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
	box-shadow: 0 6px 18px rgba(56, 189, 248, 0.4);
}

.spec-module-btn svg {
	transition: transform 0.2s ease;
}

.spec-module-btn:hover svg {
	transform: translateX(4px);
}

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

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

/* ==========================================================================
   7. 2-PACKAGE PRICING COMPARISON GRID (MASTERY & POWERPLAY)
   ========================================================================== */
.various-courses-section {
	padding: 65px 0 55px 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	position: relative;
}

.various-courses-header {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 45px auto;
}

.various-courses-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: rgba(2, 132, 199, 0.08);
	border: 1px solid rgba(2, 132, 199, 0.25);
	border-radius: 30px;
	font-size: 12px;
	font-weight: 700;
	color: #0284c7;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 12px;
}

.various-courses-header h2 {
	font-size: 32px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
	line-height: 1.25;
}

.various-courses-header p {
	color: #64748b;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.various-courses-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	max-width: 1050px;
	margin: 0 auto;
	align-items: stretch;
}

.course-pkg-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 22px;
	padding: 36px 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.course-pkg-card:hover {
	transform: translateY(-8px);
	border-color: #38bdf8;
	box-shadow: 0 20px 45px rgba(2, 132, 199, 0.16);
}

.course-pkg-card.featured {
	border: 2px solid #0284c7;
	background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
	box-shadow: 0 16px 40px rgba(2, 132, 199, 0.18);
}

.course-pkg-card.featured:hover {
	box-shadow: 0 24px 55px rgba(2, 132, 199, 0.28);
}

.course-pkg-ribbon {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 6px 12px;
	text-align: center;
}

.course-pkg-top-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.badge-powerplay {
	background: #fef3c7;
	color: #b45309;
	border: 1px solid #fde68a;
}

.badge-mastery {
	background: #e0f2fe;
	color: #0369a1;
	border: 1px solid #bae6fd;
}

.course-pkg-header-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.course-pkg-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(2, 132, 199, 0.18));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.course-pkg-card:hover .course-pkg-icon-wrap {
	background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.course-pkg-card:hover .course-pkg-icon-wrap svg {
	stroke: #ffffff;
}

.course-pkg-title {
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	line-height: 1.3;
}

.course-pkg-specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px;
	margin-bottom: 20px;
}

.course-pkg-card.featured .course-pkg-specs-grid {
	background: #ffffff;
	border-color: #bae6fd;
}

.course-spec-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 600;
	color: #334155;
}

.course-spec-item svg {
	color: #0284c7;
	flex-shrink: 0;
}

.course-pkg-price-box {
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px dashed #cbd5e1;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

.course-pkg-price-left {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.course-pkg-fee-label {
	font-size: 12px;
	color: #64748b;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.course-pkg-price {
	font-size: 32px;
	font-weight: 900;
	color: #0284c7;
	line-height: 1;
}

.course-pkg-old-price {
	font-size: 15px;
	color: #94a3b8;
	text-decoration: line-through;
	font-weight: 600;
}

.course-pkg-save-badge {
	background: #ecfdf5;
	color: #059669;
	border: 1px solid #a7f3d0;
	padding: 3px 8px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 800;
}

.course-pkg-subgroup-title {
	font-size: 12.5px;
	font-weight: 800;
	color: #0f172a;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin: 16px 0 10px 0;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 6px;
	border-bottom: 1px solid #e2e8f0;
}

.course-pkg-subgroup-title i {
	color: #0284c7;
	font-size: 13px;
}

.course-pkg-card.featured .course-pkg-subgroup-title {
	border-bottom-color: #bae6fd;
}

.course-pkg-list {
	list-style: none;
	padding: 0;
	margin: 0 0 14px 0;
}

.course-pkg-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 13.5px;
	color: #334155;
	margin-bottom: 10px;
	line-height: 1.45;
}

.course-pkg-list li strong {
	color: #0f172a;
}

.course-pkg-list li svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: #0284c7;
}

.course-pkg-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 20px;
	background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
	color: #ffffff !important;
	font-weight: 800;
	font-size: 15px;
	border-radius: 12px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	box-shadow: 0 6px 18px rgba(2, 132, 199, 0.28);
}

.course-pkg-btn:hover {
	background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
	box-shadow: 0 10px 24px rgba(56, 189, 248, 0.45);
	transform: translateY(-2px);
}

.course-pkg-btn.btn-featured {
	background: linear-gradient(135deg, #ff7a18 0%, #e65100 100%);
	box-shadow: 0 6px 20px rgba(230, 81, 0, 0.35);
}

.course-pkg-btn.btn-featured:hover {
	background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
	box-shadow: 0 10px 28px rgba(255, 107, 0, 0.5);
}

.course-pkg-btn svg {
	transition: transform 0.2s ease;
}

.course-pkg-btn:hover svg {
	transform: translateX(5px);
}

@media (max-width: 900px) {
	.various-courses-grid {
		grid-template-columns: 1fr;
		max-width: 580px;
	}

	.various-courses-header h2 {
		font-size: 26px;
	}

	.course-pkg-card {
		padding: 30px 22px;
	}
}

/* ==========================================================================
   8. BONUS COURSES & GIFTS (DARK SECTION)
   ========================================================================== */
.bonus-section-dark {
	padding: 60px 25px;
	background: #0f172a;
	color: #ffffff;
	border-radius: 24px;
	margin: 40px auto;
	box-shadow: 0 15px 40px rgba(15, 23, 42, 0.25);
	position: relative;
	overflow: hidden;
}

.bonus-section-dark::before {
	content: '';
	position: absolute;
	top: -30%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(15, 23, 42, 0) 70%);
	pointer-events: none;
}

.bonus-section-dark::after {
	content: '';
	position: absolute;
	bottom: -30%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
	pointer-events: none;
}

.bonus-header-dark h2 {
	font-size: 32px;
	font-weight: 800;
	color: #ffffff;
	text-align: center;
	margin-bottom: 8px;
}

.bonus-header-dark p {
	color: #38bdf8;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.5px;
	margin-bottom: 40px;
}

.bonus-grid-dark {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.bonus-card-dark {
	background: rgba(30, 41, 59, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 2;
}

.bonus-card-dark:hover {
	transform: translateY(-6px);
	background: rgba(30, 41, 59, 0.95);
	border-color: #38bdf8;
	box-shadow: 0 12px 28px rgba(56, 189, 248, 0.2);
}

.bonus-icon-wrap-dark {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(2, 132, 199, 0.28));
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.bonus-icon-wrap-dark i {
	color: #38bdf8;
	font-size: 22px;
	transition: all 0.3s ease;
}

.bonus-card-dark:hover .bonus-icon-wrap-dark {
	transform: scale(1.08) rotate(4deg);
	background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.bonus-card-dark:hover .bonus-icon-wrap-dark svg {
	stroke: #ffffff;
}

.bonus-card-dark:hover .bonus-icon-wrap-dark i {
	color: #ffffff !important;
}

.bonus-card-title-dark {
	font-size: 16px;
	font-weight: 700;
	color: #f8fafc;
	margin: 0;
	line-height: 1.35;
}

.bonus-card-desc-dark {
	font-size: 13.5px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.55;
}

@media (max-width: 1100px) {
	.bonus-grid-dark {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}

@media (max-width: 768px) {
	.bonus-grid-dark {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

@media (max-width: 480px) {
	.bonus-grid-dark {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* ==========================================================================
   9. STARTING SALARY MATRIX & SALARY PACKAGES
   ========================================================================== */
.job-opportunities-wrapper {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 50px 35px;
	margin: 35px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.job-opp-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px auto;
}

.job-opp-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #dcfce7;
	color: #166534;
	border: 1px solid #bbf7d0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.job-opp-title {
	font-size: 32px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
	line-height: 1.3;
}

.job-opp-subtitle {
	font-size: 15px;
	color: #64748b;
	line-height: 1.65;
	margin: 0 0 24px 0;
}

.job-stats-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.job-stat-pill {
	background: #ffffff;
	border: 1px solid #cbd5e1;
	border-radius: 30px;
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 700;
	color: #1e293b;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* 3 Column Career Cards Grid */
.career-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 50px;
}

.career-role-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 28px 24px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.career-role-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(2, 132, 199, 0.12);
	border-color: #38bdf8;
}

.career-card-top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid #f1f5f9;
}

.career-icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.icon-blue {
	background: #e0f2fe;
	color: #0284c7;
}

.icon-purple {
	background: #f3e8ff;
	color: #9333ea;
}

.icon-green {
	background: #dcfce7;
	color: #16a34a;
}

.career-card-top h3 {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	line-height: 1.35;
}

.career-role-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.career-role-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
}

.career-role-item svg {
	flex-shrink: 0;
}

/* ==========================================================================
				   Redesigned Premium High-Contrast Salary Breakdown Section
				   ========================================================================== */
.salary-breakdown-box {
	background: #ffffff !important;
	border: 2px solid #e2e8f0 !important;
	border-radius: 24px !important;
	padding: 38px 32px !important;
	box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08) !important;
	position: relative !important;
	overflow: hidden !important;
	margin-top: 30px !important;
	color: #0f172a !important;
}

.salary-header {
	text-align: center !important;
	max-width: 820px !important;
	margin: 0 auto 28px auto !important;
}

.salary-pill-badge {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	background: #e0f2fe !important;
	border: 1px solid #bae6fd !important;
	color: #0284c7 !important;
	font-size: 11.5px !important;
	font-weight: 800 !important;
	padding: 6px 16px !important;
	border-radius: 9999px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.8px !important;
	margin-bottom: 12px !important;
}

.salary-main-title {
	font-size: 30px !important;
	font-weight: 900 !important;
	color: #0f172a !important;
	margin: 0 0 10px 0 !important;
	letter-spacing: -0.5px !important;
	line-height: 1.25 !important;
}

.salary-title-highlight {
	background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #7c3aed 100%) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	display: inline !important;
}

.salary-main-desc {
	color: #64748b !important;
	font-size: 14.5px !important;
	margin: 0 !important;
	line-height: 1.5 !important;
}

/* 4 Quick Stat Cards */
.salary-quick-stats-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 16px !important;
	margin-bottom: 28px !important;
}

.salary-stat-card {
	border-radius: 16px !important;
	padding: 16px 18px !important;
	text-align: center !important;
	transition: all 0.3s ease !important;
	border: 1px solid !important;
}

.card-fresher {
	background: #f0f9ff !important;
	border-color: #bae6fd !important;
}

.card-fresher .salary-stat-pkg {
	color: #0284c7 !important;
}

.card-mid {
	background: #fffbeb !important;
	border-color: #fde68a !important;
}

.card-mid .salary-stat-pkg {
	color: #d97706 !important;
}

.card-senior {
	background: #f0fdf4 !important;
	border-color: #bbf7d0 !important;
}

.card-senior .salary-stat-pkg {
	color: #16a34a !important;
}

.card-global {
	background: #faf5ff !important;
	border-color: #e9d5ff !important;
}

.card-global .salary-stat-pkg {
	color: #9333ea !important;
}

.salary-stat-level {
	font-size: 11.5px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.6px !important;
	color: #64748b !important;
	margin-bottom: 5px !important;
}

.salary-stat-pkg {
	font-size: 22px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	margin-bottom: 4px !important;
}

.salary-stat-exp {
	font-size: 11.5px !important;
	color: #475569 !important;
	font-weight: 600 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 5px !important;
}

/* Modern Salary Table */
.salary-table-responsive {
	overflow-x: auto !important;
	border-radius: 16px !important;
	border: 1px solid #e2e8f0 !important;
	background: #ffffff !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

.modern-salary-table {
	width: 100% !important;
	border-collapse: collapse !important;
	margin: 0 !important;
	background: #ffffff !important;
}

.modern-salary-table th {
	background: #f8fafc !important;
	color: #0f172a !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.6px !important;
	padding: 16px 20px !important;
	border-bottom: 2px solid #e2e8f0 !important;
	border-top: none !important;
	vertical-align: middle !important;
}

.modern-salary-table td {
	padding: 16px 20px !important;
	font-size: 14px !important;
	color: #1e293b !important;
	border-bottom: 1px solid #f1f5f9 !important;
	background: #ffffff !important;
	vertical-align: middle !important;
}

.modern-salary-table tr:hover td {
	background: #f8fafc !important;
}

.salary-role-info {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
}

.salary-role-icon {
	width: 38px !important;
	height: 38px !important;
	border-radius: 10px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 15px !important;
	flex-shrink: 0 !important;
}

.icon-blue-glow {
	background: #e0f2fe !important;
	color: #0284c7 !important;
}

.icon-cyan-glow {
	background: #ecfeff !important;
	color: #0891b2 !important;
}

.icon-purple-glow {
	background: #f3e8ff !important;
	color: #9333ea !important;
}

.icon-emerald-glow {
	background: #dcfce7 !important;
	color: #16a34a !important;
}

.icon-amber-glow {
	background: #fef3c7 !important;
	color: #d97706 !important;
}

.icon-gold-glow {
	background: #fef9c3 !important;
	color: #ca8a04 !important;
}

.salary-role-name {
	font-weight: 800 !important;
	color: #0f172a !important;
	font-size: 14.5px !important;
	line-height: 1.35 !important;
}

.salary-role-skills {
	font-size: 12px !important;
	color: #64748b !important;
	margin-top: 3px !important;
}

/* Badges */
.salary-badge-fresher {
	background: #e0f2fe !important;
	border: 1px solid #bae6fd !important;
	color: #0369a1 !important;
	font-weight: 800 !important;
	font-size: 13.5px !important;
	padding: 7px 16px !important;
	border-radius: 10px !important;
	display: inline-block !important;
}

.salary-badge-mid {
	background: #fef3c7 !important;
	border: 1px solid #fde68a !important;
	color: #b45309 !important;
	font-weight: 800 !important;
	font-size: 13.5px !important;
	padding: 7px 16px !important;
	border-radius: 10px !important;
	display: inline-block !important;
}

.salary-badge-senior {
	background: #dcfce7 !important;
	border: 1px solid #bbf7d0 !important;
	color: #15803d !important;
	font-weight: 800 !important;
	font-size: 13.5px !important;
	padding: 7px 16px !important;
	border-radius: 10px !important;
	display: inline-block !important;
}

/* Footer Insights Note */
.salary-footer-note {
	margin-top: 24px !important;
	padding: 16px 22px !important;
	background: #f8fafc !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 14px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	flex-wrap: wrap !important;
}

.salary-note-text {
	font-size: 13px !important;
	color: #334155 !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}

.salary-note-text strong {
	color: #0f172a !important;
}

.salary-note-cta {
	background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%) !important;
	color: #ffffff !important;
	font-size: 12.5px !important;
	font-weight: 800 !important;
	padding: 10px 20px !important;
	border-radius: 10px !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.4px !important;
	transition: all 0.25s ease !important;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

.salary-note-cta:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45) !important;
}

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

	.job-opportunities-wrapper {
		padding: 35px 20px;
	}

	.salary-quick-stats-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px !important;
	}

	.salary-breakdown-box {
		padding: 28px 18px !important;
	}

	.salary-main-title {
		font-size: 24px !important;
	}
}

@media (max-width: 576px) {
	.salary-quick-stats-grid {
		grid-template-columns: 1fr !important;
	}

	.salary-footer-note {
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	.salary-note-cta {
		width: 100% !important;
		justify-content: center !important;
	}

	.modern-salary-table th,
	.modern-salary-table td {
		padding: 12px 10px !important;
	}

	.salary-role-name {
		font-size: 13px !important;
	}

	.salary-badge-fresher,
	.salary-badge-mid,
	.salary-badge-senior {
		font-size: 12px !important;
		padding: 5px 10px !important;
	}
}

/* ==========================================================================
   10. EXPERT TRAINER PROFILE (GAURAV DUBEY)
   ========================================================================== */
.trainer-section-wrapper {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
	border-radius: 24px;
	padding: 55px 35px;
	margin: 40px auto;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
	position: relative;
	overflow: hidden;
}

.trainer-section-wrapper::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
	pointer-events: none;
}

.trainer-grid {
	display: flex;
	align-items: center;
	gap: 45px;
	position: relative;
	z-index: 1;
}

.trainer-img-col {
	flex: 0 0 380px;
	max-width: 100%;
	position: relative;
}

.trainer-img-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	border: 2px solid rgba(56, 189, 248, 0.3);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
	background: #1e293b;
}

.trainer-img-card img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.trainer-img-card:hover img {
	transform: scale(1.03);
}

.trainer-badge-floating {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: rgba(15, 23, 42, 0.88);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(56, 189, 248, 0.4);
	border-radius: 12px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.trainer-badge-title {
	font-size: 14px;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
}

.trainer-badge-sub {
	font-size: 12px;
	color: #38bdf8;
	margin: 0;
	font-weight: 600;
}

.trainer-content-col {
	flex: 1 1 auto;
}

.trainer-header-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(56, 189, 248, 0.15);
	color: #38bdf8;
	border: 1px solid rgba(56, 189, 248, 0.35);
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 20px;
	margin-bottom: 14px;
}

.trainer-main-title {
	font-size: 32px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 14px;
}

.trainer-main-title span {
	color: #38bdf8;
}

.trainer-subtitle {
	font-size: 16px;
	color: #cbd5e1;
	line-height: 1.6;
	margin-bottom: 24px;
	font-weight: 500;
}

.trainer-stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 28px;
}

.trainer-stat-card {
	background: rgba(30, 41, 59, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 14px 12px;
	text-align: center;
	backdrop-filter: blur(8px);
}

.trainer-stat-val {
	font-size: 22px;
	font-weight: 800;
	color: #38bdf8;
	margin-bottom: 2px;
}

.trainer-stat-label {
	font-size: 12px;
	color: #94a3b8;
	font-weight: 600;
	margin: 0;
}

.trainer-bio-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px 0;
	display: grid;
	gap: 12px;
}

.trainer-bio-item {
	font-size: 14.5px;
	color: #e2e8f0;
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.trainer-bio-item svg {
	flex-shrink: 0;
	margin-top: 3px;
}

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

.trainer-btn-primary {
	background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
	color: #ffffff !important;
	font-weight: 700;
	font-size: 14.5px;
	padding: 12px 28px;
	border-radius: 10px;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 6px 20px rgba(56, 189, 248, 0.3);
	transition: all 0.3s ease;
}

.trainer-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(56, 189, 248, 0.45);
}

.trainer-social-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #cbd5e1;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none !important;
}

.trainer-social-icon.icon-yt:hover {
	background: #ff0000;
	color: #ffffff;
	border-color: #ff0000;
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(255, 0, 0, 0.45);
}

.trainer-social-icon.icon-li:hover {
	background: #0a66c2;
	color: #ffffff;
	border-color: #0a66c2;
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(10, 102, 194, 0.45);
}

.trainer-social-icon.icon-ig:hover {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: #ffffff;
	border-color: #dc2743;
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45);
}

@media (max-width: 992px) {
	.trainer-grid {
		flex-direction: column;
		gap: 30px;
	}

	.trainer-img-col {
		width: 100%;
		max-width: 360px;
	}

	.trainer-stats-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.trainer-main-title {
		font-size: 26px;
	}

	.trainer-section-wrapper {
		padding: 35px 20px;
	}
}

/* ==========================================================================
   11. STUDENT REVIEWS & VIDEO SHOWCASE
   ========================================================================== */
.student-reviews-showcase {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 45px 30px;
	margin: 35px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.student-reviews-header {
	text-align: center;
	max-width: 750px;
	margin: 0 auto 35px auto;
}

.student-reviews-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #e0f2fe;
	color: #0284c7;
	border: 1px solid #bae6fd;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.student-reviews-title {
	font-size: 32px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
	line-height: 1.3;
}

.student-reviews-subtitle {
	font-size: 15px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

.student-video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 35px;
}

.student-video-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 16px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.student-video-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(2, 132, 199, 0.12);
	border-color: #38bdf8;
}

.student-iframe-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	background: #000000;
}

.student-iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.student-card-info {
	margin-top: 14px;
}

.student-card-stars {
	color: #fbbf24;
	font-size: 13px;
	margin-bottom: 4px;
}

.student-card-title {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 6px 0;
	line-height: 1.4;
}

.student-card-desc {
	font-size: 12.5px;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

.reviews-redirect-bar {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
	border-radius: 16px;
	padding: 24px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.redirect-proof {
	display: flex;
	align-items: center;
	gap: 14px;
}

.redirect-stars-box {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 8px 16px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.redirect-text h4 {
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
	margin: 0 0 3px 0;
}

.redirect-text p {
	color: #94a3b8;
	font-size: 13px;
	margin: 0;
}

.btn-view-all-reviews {
	background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
	color: #ffffff !important;
	font-weight: 800;
	font-size: 14px;
	padding: 13px 26px;
	border-radius: 12px;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-view-all-reviews:hover {
	background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(2, 132, 199, 0.5);
}

@media (max-width: 992px) {
	.student-video-grid {
		grid-template-columns: 1fr;
	}

	.reviews-redirect-bar {
		flex-direction: column;
		gap: 18px;
		text-align: center;
	}

	.redirect-proof {
		flex-direction: column;
	}
}

/* ==========================================================================
   GLOBAL UTILITIES, SALARY BENCHMARKS & TESTIMONIALS
   ========================================================================== */
.kdm-title-gradient {
	background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #4f46e5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.trainer-social-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 14px;
}

.redirect-heading {
	margin: 0 0 4px 0;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
}

/* Salary Breakdown & Benchmark Box */
.salary-box-container {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 40px 35px;
	margin-top: 45px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
	position: relative;
	overflow: hidden;
}

.salary-box-header {
	text-align: center;
	max-width: 750px;
	margin: 0 auto 35px auto;
}

.salary-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f0fdf4;
	color: #16a34a;
	border: 1px solid #bbf7d0;
	padding: 5px 14px;
	border-radius: 9999px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.salary-box-title {
	font-size: 26px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
	line-height: 1.3;
}

.salary-box-desc {
	font-size: 14.5px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

.salary-cards-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.salary-level-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px 20px;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.salary-level-card:hover {
	transform: translateY(-5px);
	background: #ffffff;
	border-color: #0284c7;
	box-shadow: 0 12px 28px rgba(2, 132, 199, 0.12);
}

.salary-level-tag {
	display: inline-block;
	align-self: center;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.level-fresher {
	background: #eff6ff;
	color: #1d4ed8;
	border: 1px solid #bfdbfe;
}

.level-mid {
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #bbf7d0;
}

.level-senior {
	background: #faf5ff;
	color: #7e22ce;
	border: 1px solid #e9d5ff;
}

.level-lead {
	background: #fffbeb;
	color: #b45309;
	border: 1px solid #fde68a;
}

.salary-amount {
	font-size: 24px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 6px;
	letter-spacing: -0.5px;
}

.salary-role-title {
	font-size: 13.5px;
	font-weight: 600;
	color: #475569;
	margin-bottom: 6px;
}

.salary-monthly {
	font-size: 12px;
	color: #0284c7;
	font-weight: 600;
}

@media (max-width: 992px) {
	.salary-cards-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 540px) {
	.salary-cards-row {
		grid-template-columns: 1fr;
	}
	.salary-box-container {
		padding: 25px 18px;
	}
	.salary-box-title {
		font-size: 20px;
	}
}

/* Standalone Testimonials Styling */
.kdm-testimonial-section {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
	padding: 85px 0;
	position: relative;
	overflow: hidden;
}

.kdm-testimonial-header {
	text-align: center;
	margin-bottom: 45px;
	position: relative;
	z-index: 2;
}

.kdm-testimonial-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(56, 189, 248, 0.12);
	border: 1px solid rgba(56, 189, 248, 0.3);
	color: #38bdf8;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 6px 18px;
	border-radius: 50px;
	margin-bottom: 16px;
}

.kdm-testimonial-title {
	color: #ffffff;
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.3;
}

.kdm-testimonial-title strong {
	color: #38bdf8;
}

.kdm-testimonial-subtitle {
	color: #cbd5e1;
	font-size: 15px;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.kdm-testimonial-wrapper {
	max-width: 860px;
	margin: 0 auto;
	position: relative;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(56, 189, 248, 0.25);
	border-radius: 24px;
	padding: 45px 55px 35px 55px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
	z-index: 2;
}

.kdm-testimonial-slides {
	position: relative;
	min-height: 220px;
}

.kdm-testimonial-card {
	display: none;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	text-align: center;
}

.kdm-testimonial-card.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.kdm-testimonial-quote-icon {
	color: #38bdf8;
	margin-bottom: 12px;
	display: flex;
	justify-content: center;
}

.kdm-testimonial-stars {
	color: #fbbf24;
	font-size: 18px;
	letter-spacing: 4px;
	margin-bottom: 18px;
}

.kdm-testimonial-quote {
	color: #f1f5f9;
	font-size: 16.5px;
	font-weight: 400;
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 24px;
}

.kdm-testimonial-author-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 15px;
}

.kdm-testimonial-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.3);
	text-transform: uppercase;
	flex-shrink: 0;
}

.kdm-testimonial-avatar.grad-1 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.kdm-testimonial-avatar.grad-2 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.kdm-testimonial-avatar.grad-3 { background: linear-gradient(135deg, #10b981, #059669); }

.kdm-testimonial-name {
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 4px 0;
}

.kdm-testimonial-role {
	color: #38bdf8;
	font-size: 13px;
	margin: 0;
}

.kdm-testimonial-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(30, 41, 59, 0.85);
	border: 1px solid rgba(56, 189, 248, 0.4);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	font-size: 15px;
}

.kdm-testimonial-arrow:hover {
	background: #0284c7;
	border-color: #38bdf8;
	transform: translateY(-50%) scale(1.08);
}

.kdm-testimonial-arrow.prev { left: -22px; }
.kdm-testimonial-arrow.next { right: -22px; }

.kdm-testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 25px;
}

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

.kdm-testimonial-dot.active {
	background: #38bdf8;
	width: 26px;
	border-radius: 10px;
}

@media (max-width: 768px) {
	.kdm-testimonial-wrapper {
		padding: 35px 25px 25px 25px;
		margin: 0 15px;
	}
	.kdm-testimonial-arrow.prev { left: -10px; }
	.kdm-testimonial-arrow.next { right: -10px; }
	.kdm-testimonial-title { font-size: 26px; }
	.kdm-testimonial-quote { font-size: 15px; }
}
