:root {
	--primary-navy: #0f172a; /* Deep navy from text */
	--accent-green: #00a878; /* Vibrant green from EduDemo */
	--accent-green-light: #e6f6f1;
	--bg-light: #ffffff;
	--text-muted: #64748b;
}

body {
	background-color: var(--bg-light);
	color: var(--primary-navy);
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.02em;
}

/* Navbar */
.navbar {
	padding: 20px 0;
	background: #fbfcfd;
}
.navbar-brand { 
	font-weight: 800; 
	color: var(--primary-navy) !important; 
	font-size: 1.5rem;
}
.brand-icon {
	background-color: var(--accent-green);
	color: white;
	padding: 5px 8px;
	border-radius: 8px;
	margin-right: 8px;
}
.nav-link { 
	color: var(--text-muted) !important; 
	font-weight: 500; 
	margin: 0 10px; 
}
.nav-link:hover { color: var(--accent-green) !important; }

.btn-green {
	background-color: var(--accent-green);
	color: white;
	border: none;
	border-radius: 50px;
	padding: 10px 24px;
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(0, 168, 120, 0.3);
	transition: 0.3s;
}
.btn-green:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 168, 120, 0.4);
	background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
	color: white;
}

/* Hero Section */
.hero-section {
	width: 100%;
	overflow: hidden;
	padding: 0 0;
	text-align: center;
	background: radial-gradient(circle at 50% 50%, #f0faf7 0%, #ffffff 100%);
}
.badge-nextgen {
	background-color: var(--accent-green-light);
	color: var(--accent-green);
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
	display: inline-block;
}
h1 {
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1.1;
	max-width: 900px;
	margin: 0 auto;
}
.highlight { color: var(--accent-green); }

/* Course Cards */
.course-card {
	border: 1px solid #f1f5f9;
	border-radius: 24px;
	padding: 16px;
	transition: 0.3s ease;
	height: 100%;
	background: white;
}
.course-card:hover {
	border-color: var(--accent-green);
	box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.course-img {
	width: 100%;
	height: 200px;
	border-radius: 16px;
	object-fit: cover;
	margin-bottom: 20px;
}
.course-title { font-weight: 700; font-size: 1.25rem; }
.price-tag { font-weight: 800; font-size: 1.4rem; color: var(--primary-navy); }

/* --- Footer Styling: Original Light Theme --- */
footer {
	padding: 80px 0 40px;
	background-color: #f8fafc80; /* Your original light background */
	color: #0f172a !important; /* Dark text for readability */
}

.footer-main-area .d-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-widget .title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #0f172a;
	text-transform: uppercase;
}

.footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-widget ul li {
	margin-bottom: 10px;
}

.footer-widget ul li a {
	color: #64748b !important; /* Muted slate color */
	text-decoration: none;
	font-size: 0.9rem;
	transition: 0.3s;
}

.footer-widget ul li a:hover {
	color: #00a878 !important; /* Green hover from your brand */
}

/* Newsletter Input Fix */
.subscribe-form form {
	display: flex;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
	background: white;
}

.subscribe-form input {
	border: none;
	padding: 10px 15px;
	flex: 1;
	outline: none;
}

.subscribe-form button {
	background: #00a878;
	color: white;
	border: none;
	padding: 0 15px;
}

/* Social Icon Styling */
.social-links ul {
	display: flex;
	gap: 15px;
	list-style: none;
	padding: 0;
}

.social-links ul li a {
	color: #0f172a !important;
	font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.footer-main-area .d-flex {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	h1 { font-size: 2.5rem; }
}

/* --- Updated Slider Design --- */
.hero-section {
	padding: 0 0;
	background: radial-gradient(circle at center, #f8fafc 0%, #ffffff 100%);
}

.edudemo-slider {
	background-color: #fafafa;
	background-size: cover;
	background-position: center;
	padding: 80px 60px;
	min-height: 500px;
	position: relative;
	box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.badge-nextgen {
	background-color: var(--accent-green-light);
	color: var(--accent-green);
	padding: 6px 16px;
	border: 1px solid rgba(0, 168, 120, 0.1);
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 24px;
	display: inline-flex;
	width: fit-content;
}

.slider-h1 {
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.1;
	max-width: 850px;
	color: var(--primary-navy);
	letter-spacing: -0.04em;
	text-align: left;
	margin: 15px;
}

.btn-slider-learn {
	background-color: #00a878;
	color: white;
	border: none;
	border-radius: 50px;
	padding: 14px 32px;
	font-weight: 700;
	margin-top: 40px;
	width: fit-content;
	transition: 0.2s;
}
.btn-slider-learn:hover {
	background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
	color: white;
}

/* Custom Arrow Icons like the design */
.carousel-control-prev, .carousel-control-next {
	width: 40px;
	height: 45px;
	background: #00a878;
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border: 1px solid #00a878;
	color: #ffff;
}

.carousel-control-prev { border-radius: 0 24px 24px 0; }
.carousel-control-next { border-radius: 24px 0 0 24px; }

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
	color: #ffff;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
	color: #ffff;
	background: rgb(4 120 87 / var(--tw-bg-opacity, 1));
}

/* Carousel Indicators (Dots) */
.carousel-indicators [button] {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #cbd5e1;
	margin: 0 6px;
}
.carousel-indicators .active {
	background-color: var(--accent-green);
}

@media (max-width: 768px) {
	.slider-h1 { font-size: 2.2rem; }
	.edudemo-slider { padding: 40px 30px; }
	.carousel-control-prev, .carousel-control-next { display: none; }
}

.edudemo-slider {
	width: 100%;
	min-height: 500px;
	background-size: cover;
	background-position: center;
}

/* --- NEW: Learning Journey Section --- */
.journey-section { padding: 100px 0; background-color: #fcfdfe; }
.journey-tag { color: var(--text-muted); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; display: block; }
.journey-title { font-size: 2.5rem; font-weight: 800; color: var(--primary-purple); margin-bottom: 8px; }
.journey-subtitle { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin-bottom: 40px; }
.journey-desc { color: var(--text-muted); font-size: 20px; line-height: 1.6; }

/* Journey Card Styling (Tabbed Design with Radius) */
.journey-card {
	background-color: #00a878;
	border-radius: 24px; /* Soft outer radius */
	padding: 30px;
	color: white;
	height: 100%;
	position: relative;
	transition: transform 0.3s ease;
}

/* Creating the Rounded "Step" Notch */
.journey-card::before {
	content: "";
	position: absolute;
	top: -1px; /* Slight overlap to prevent sub-pixel gaps */
	right: -1px;
	width: 15%; /* Matches the "step" width */
	height: 20%; /* Matches the "step" depth */
	background-color: #fcfdfe; /* Matches section background to create the "cut" */
	border-bottom-left-radius: 20px; /* The inner curve you were looking for */
	border-bottom: 1px solid transparent; 
}

.journey-card:hover { transform: translateY(-10px); }

/* Container transition for the circle - Updated for a slower, smoother flip */
.icon-circle {
	width: 50px;
	height: 50px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00a878;
	margin-bottom: 25px;
	font-size: 1.2rem;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	
	/* Increased time to 0.8s for a slower, deliberate flip */
	transition: all 0.8s ease-in-out;
	backface-visibility: hidden; /* Ensures a clean rotation */
}

/* Individual Icon inside the circle */
.icon-circle i {
	display: inline-block;
}

/* Hover State: When the CARD is hovered, the circle flips and changes color */
.journey-card:hover .icon-circle {
	background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1)); 
	color: #ffffff;
	
	/* Slow 360-degree rotation */
	transform: rotateY(360deg);
	
	/* Optional: Adding a soft glow during the slow flip */
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.card-h { 
	font-weight: 700; 
	font-size: 1.1rem; 
	margin-bottom: 10px; 
	max-width: 75%; /* Prevents text from going under the notch */
}

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

/* Container for the split layout */
.sticky-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	position: relative;
	flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

/* Left side content */
.sticky-left {
	position: sticky;
	top: 100px; 
	flex: 1;
	min-width: 300px; /* Ensures it doesn't get too squeezed */
}

/* Right side content */
.scroll-right {
	flex: 2;
	min-width: 300px;
}

/* --- Responsive Media Query --- */
@media (max-width: 991px) {
	.sticky-wrapper {
		display: block; /* Disables flex side-by-side layout */
	}

	.sticky-left {
		position: static; /* Disables sticky behavior on mobile */
		max-width: 100%;
		margin-bottom: 40px;
		text-align: center; /* Optional: Centers text for better mobile look */
	}

	.journey-title {
		font-size: 2.2rem !important; /* Shrinks title slightly for mobile */
	}

	.module-card {
		padding: 25px; /* Saves space on mobile */
		clip-path: none; /* Optional: removes notch on mobile if it looks too cramped */
		border-radius: 20px;
	}
	
	/* Ensure the notch pseudo-elements don't interfere on small screens */
	.module-card::before, .module-card::after {
		display: none; 
	}
}

/* Module card styling with the notched design */
/* --- Module Card with Sticky-Ready Layout & Rounded Notch --- */
.module-card {
	background-color: #00a878; /* Skillmantra Purple */
	border-radius: 28px; /* Main outer radius */
	padding: 40px;
	color: white;
	margin-bottom: 30px;
	position: relative;
	transition: transform 0.3s ease;
}

/* Creating the Rounded Notch/Step on the top right */
.module-card::before {
	content: "";
	position: absolute;
	top: 0px;
	right: 0px;
	width: 7%;
	height: 15%;
	background-color: #fcfdfe;
	border-bottom-left-radius: 20px;
	z-index: 2;
}

/* Small detail: Adding a white arrow icon in the notch area as seen in your image */
.module-card::after {
	content: "\f061";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	top: 0%;
	right: 3%;
	color: #00a878;
	font-size: 1.2rem;
	transform: rotate(-45deg);
	z-index: 3;
}

.module-card:hover {
	transform: scale(1.02);
}

/* Content adjustment so it doesn't hit the notch */
.module-card .row {
	position: relative;
	z-index: 1;
}

/* ----- "Who Should Join" Section Styling ----- */
.join-section {
	padding: 100px 0;
	background-color: #f8fafc80; /* Clean, light-grey background wash */
}

.join-title {
	font-size: 2.8rem;
	font-weight: 800;
	text-align: center;
	color: var(--primary-navy);
	letter-spacing: -0.04em;
	margin-bottom: 70px;
}

/* Border box with that specific offset purple line */
.join-col {
	position: relative;
	padding-left: 35px;
	height: 100%;
}

/* The specific purple border line effect on the left */
.join-col::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20px;
	bottom: 20px;
	width: 3px;
	background-color: var(--skill-border-purple);
	opacity: 0.8;
	border-radius: 50px; /* Softly rounded ends */
}

/* Specific typography for the years (1-3, 3-9, etc.) */
.year-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1;
	margin: 0;
	letter-spacing: -0.06em;
	color: var(--primary-navy);
}

.year-label {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 24px;
	display: block;
}

.join-text {
	color: var(--text-muted); /* Bootstrap default grey */
	font-size: 0.95rem;
	line-height: 1.7;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.join-title { font-size: 2.2rem; margin-bottom: 40px; }
	.year-title { font-size: 2.8rem; }
	.join-col { padding-left: 25px; margin-bottom: 30px; }
	.join-col::before { top: 10px; bottom: 10px; }
}

/* --- Workforce Section Styling --- */
.workforce-section {
	padding: 80px 0;
	background-color: #ffffff;
}

.workforce-tag {
	color: var(--text-muted);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 10px;
	display: block;
}

.workforce-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-purple);
	margin-bottom: 50px;
}

/* Tab-Notched Card for Workforce */
.workforce-card {
	background-color: #00a878; 
	border-radius: 20px;
	padding: 35px;
	color: white;
	height: 100%;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
}

/* Flex Container for 30/70 Split */
.workforce-flex {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.workforce-icon-col {
	flex: 0 0 15%; /* Fixed 30% */
}

.workforce-text-col {
	flex: 0 0 80%; /* Fixed 70% */
	padding-right: 20px; /* Space for the "Stage" tab */
}

/* The "Stage" Notch on the right */
.workforce-card::before {
	content: "Stage";
	position: absolute;
	right: 0;
	top: 25%;
	background-color: #ffffff;
	color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
	padding: 15px 5px;
	font-size: 0.7rem;
	font-weight: 700;
	writing-mode: vertical-rl;
	text-transform: uppercase;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
	z-index: 2;
}

/* Slower Flip Icon */
.workforce-card .icon-box {
	width: 65px;
	height: 65px;
	background: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00a878;
	font-size: 1.5rem;
	transition: all 0.8s ease-in-out;
	backface-visibility: hidden;
}

/* Hover States */
.workforce-card:hover {
	transform: translateY(-5px);
	background-color: #00a878;
}

.workforce-card:hover .icon-box {
	transform: rotateY(360deg);
	background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
	color: #ffff;
}

.workforce-card h5 {
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.workforce-card p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
	margin: 0;
}

/* Responsive Mobile Fixes */
@media (max-width: 991px) {
	.workforce-title { font-size: 2rem; }
}

@media (max-width: 767px) {
	.workforce-card { padding: 25px; }
	.workforce-title { font-size: 1.75rem; text-align: center; }
	.workforce-tag { text-align: center; }
	
	.workforce-flex {
		flex-direction: column; /* Stack on mobile to prevent clashing */
	}
	.workforce-icon-col, .workforce-text-col {
		flex: 0 0 100%;
	}
}
/* Full screen overlay */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Matches your light theme */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

/* The Loader Spinner */
.skillmantra-loader {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f4f6; /* Light grey ring */
    border-top: 4px solid #3b2d60; /* Skillmantra Purple */
    border-right: 4px solid #00a878; /* Skillmantra Green */
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    position: relative;
}

/* Inner pulsing dot for "AI" feel */
.skillmantra-loader::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #3b2d60;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
}

/* Class to hide loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* --- Newsletter Section Styling --- */
.newsletter-cta-section {
    position: relative;
    padding: 50px 0;
    background: #1e1e38;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.newsletter-cta-section .cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.newsletter-cta-section .cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

/* Pill-Shaped Input Bar */
.cta-form-container {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 8px;
    border-radius: 50px; /* Pill shape */
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-form-container input {
    flex: 1;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    color: #333;
}

.cta-form-container .btn-subscribe {
    background-color: #8b7baa; /* The purple-grey from your "Explore More" button */
    color: white;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-form-container .btn-subscribe:hover {
    background-color: #00a878; /* Brand Green on hover */
    transform: scale(1.02);
}

/* Responsive Fixes */
@media (max-width: 767px) {
    .newsletter-cta-section .cta-title { font-size: 2.2rem; }
    .cta-form-container {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 15px;
    }
    .cta-form-container input {
        width: 100%;
        background: white;
        border-radius: 12px;
    }
    .cta-form-container .btn-subscribe {
        width: 100%;
        border-radius: 12px;
    }
}

/* --- AI Trends Section Styling --- */
.news-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.news-tag {
    background-color: var(--accent-green-light);
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.news-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00a878;
    margin-bottom: 50px;
}

/* News Cards */
.news-card {
    background-color: #00a878;
    border-radius: 20px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.news-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

/* Theme-consistent "Read More" Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1)); /* Soft purple from your Summer Camp section */
    color: white;
    padding: 0 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-read-more .icon-circle {
	background-color: #00a878;
    color: #ffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
	margin-bottom: 10px;
    margin-top: 10px;
}

.btn-read-more:hover {
    background-color: #35c69c; /* Brand Green on hover */
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .news-main-title { font-size: 1.8rem; text-align: center; }
    .news-card { padding: 30px; }
    .news-card h3 { font-size: 1.4rem; }
}

/* --- Pagination Styling --- */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    list-style: none;
    padding: 0;
}

.news-pagination li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #047857; /* Deep Navy from your theme */
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Active Page Style */
.news-pagination li.active a {
    background-color: #00a878; /* Soft Purple from image_9c3657.png */
}

.news-pagination li a:hover {
    background-color: #00a878; /* Brand Green hover */
    transform: translateY(-3px);
}

.news-pagination li.dots {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Arrow Icon */
.news-pagination li a i {
    font-size: 0.9rem;
}

/* --- Contact Form Styling --- */
.contact-section {
    padding: 80px 0;
    background-color: #fcfdfe; /* Light background per theme */
}

.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(59, 45, 96, 0.05);
    border: 1px solid #eef2f6;
    max-width: 700px;
    margin: 0 auto;
}

.contact-label {
    display: block;
    font-weight: 700;
    color: #3b2d60; /* Skillmantra Purple */
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contact-input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #eef2f6;
    border-radius: 10px;
    background-color: #f9fbff;
    color: #3b2d60;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

/* Focus state using Brand Green */
.contact-input:focus {
    outline: none;
    border-color: #00a878; 
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 168, 120, 0.1);
}

/* Custom styling for the Select dropdown */
.contact-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233b2d60'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.btn-contact-submit {
    background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
    color: #ffffff;
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.btn-contact-submit:hover {
    background-color: #00a878; /* Brand Green */
    transform: translateY(-2px);
}

/* --- Stepper & Form Theme --- */
.mentor-app-section {
    padding: 80px 0;
    background-color: #fcfdfe; /* Light theme background */
}

.mentor-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(59, 45, 96, 0.05);
    border: 1px solid #eef2f6;
    max-width: 850px;
    margin: 0 auto;
}

/* Progress Bar */
.progress-wrapper {
    margin-bottom: 30px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.step-text {
    font-weight: 700;
    color: #3b2d60; /* Skillmantra Purple */
    font-size: 0.9rem;
}

.progress-bar-container {
    height: 8px;
    background: #eef2f6;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b2d60, #00a878); /* Purple to Green gradient */
    width: 16.6%; /* Adjust based on step */
    transition: width 0.4s ease;
}

/* Typography */
.mentor-title {
    color: #00a878;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 15px;
}

.mentor-subtitle {
    color: #00a878; /* Brand Green */
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.mentor-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.mentor-label {
    display: block;
    font-weight: 700;
    color: #3b2d60;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.mentor-input, .mentor-textarea {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    background: #f9fbff;
    transition: 0.3s ease;
}

.mentor-input:focus, .mentor-textarea:focus {
    border-color: #00a878;
    background: #fff;
    outline: none;
}

/* Options/Checkboxes */
.option-item {
    display: block;
    padding: 12px 15px;
    background: #f9fbff;
    border: 2px solid #eef2f6;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.option-item:hover {
    border-color: #3b2d60;
}

.option-item input:checked + span {
    color: #00a878;
    font-weight: 700;
}

/* Actions */
.mentor-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #eef2f6;
    padding-top: 30px;
}

.btn-mentor-prev {
    background: #eef2f6;
    color: #00a878;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
}

.btn-mentor-next {
    background: rgb(4 120 87 / var(--tw-bg-opacity, 1));
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-mentor-next:hover {
    background: #00a878;
}

.step-content {
    transition: opacity 0.4s ease;
}
.step-content.active {
    display: block !important;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-content.d-none {
    display: none !important;
}

/* --- Registration Section Styling --- */
.register-section {
    padding: 80px 0;
    background-color: #fcfdfe; /* Light background from theme */
}

.register-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(59, 45, 96, 0.08);
    border: 1px solid #eef2f6;
    max-width: 600px;
    margin: 0 auto;
}

.register-title {
    color: #3b2d60; /* Skillmantra Deep Purple */
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.register-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 35px;
    font-size: 1rem;
}

.register-label {
    display: block;
    font-weight: 700;
    color: #3b2d60;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.register-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    background-color: #f9fbff;
    color: #3b2d60;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

/* Theme Focus State */
.register-input:focus {
    outline: none;
    border-color: #00a878; /* Brand Green */
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 168, 120, 0.1);
}

/* Theme Next Button */
.btn-register-next {
    background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1)); /* Primary Purple */
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    display: block;
    text-align: center;
}

.btn-register-next:hover {
    background-color: #00a878; /* Primary Green */
    transform: translateY(-2px);
}

/* --- Login Section Styling --- */
.login-section {
    padding: 80px 0;
    background-color: #fcfdfe; /* Theme Light Background */
}

.login-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(59, 45, 96, 0.08);
    border: 1px solid #eef2f6;
    max-width: 500px;
    margin: 0 auto;
}

.login-title {
    color: #3b2d60; /* Skillmantra Purple */
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Social Login Button */
.btn-google-login {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    background: #ffffff;
    color: #3b2d60;
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 25px;
}

.btn-google-login:hover {
    background: #f9fbff;
    border-color: #3b2d60;
}

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.login-divider::before, .login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eef2f6;
}

.login-divider:not(:empty)::before { margin-right: .75em; }
.login-divider:not(:empty)::after { margin-left: .75em; }

.login-label {
    display: block;
    font-weight: 700;
    color: #3b2d60;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.login-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    background-color: #f9fbff;
    color: #3b2d60;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.login-input:focus {
    outline: none;
    border-color: #00a878; /* Brand Green */
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 168, 120, 0.1);
}

.btn-login-submit {
    background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-login-submit:hover {
    background-color: #00a878; /* Brand Green */
    transform: translateY(-2px);
}

.login-footer-links {
    margin-top: 25px;
    text-align: center;
    font-size: 0.95rem;
}

.login-link {
    color: #00a878;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.login-link:hover {
    color: #00a878;
}

/* --- Forgot Password Theme --- */
.forgot-password-section {
    padding: 80px 0;
    background-color: #fcfdfe; /* Theme Light Background */
}

.forgot-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(59, 45, 96, 0.08);
    border: 1px solid #eef2f6;
    max-width: 500px;
    margin: 0 auto;
}

.forgot-title {
    color: #3b2d60; /* Skillmantra Purple */
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.forgot-label {
    display: block;
    font-weight: 700;
    color: #3b2d60;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.forgot-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    background-color: #f9fbff;
    color: #3b2d60;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.forgot-input:focus {
    outline: none;
    border-color: #00a878; /* Brand Green */
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 168, 120, 0.1);
}

/* Button Styling */
.btn-forgot-primary {
    background-color: #3b2d60;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

.btn-forgot-primary:hover {
    background-color: #00a878; /* Brand Green */
    transform: translateY(-2px);
}

.btn-forgot-secondary {
    background-color: #f1f5f9;
    color: #3b2d60;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}

.btn-forgot-secondary:hover {
    background-color: #e2e8f0;
}

.forgot-footer {
    margin-top: 25px;
    border-top: 1px solid #eef2f6;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.forgot-link {
    color: #3b2d60;
    font-weight: 700;
    text-decoration: none;
}

.forgot-link:hover {
    color: #00a878;
}

/* --- AI Mastermind Brand Green Hero --- */
.mastermind-hero {
    padding: 100px 0;
    background-color: #00a878; /* Primary Brand Green */
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Decorative background elements */
.mastermind-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-badge-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mastermind-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.mastermind-desc {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    opacity: 0.95;
    line-height: 1.6;
}

/* Stats Info Bar */
.mastermind-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Schedule Card Area */
.schedule-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.schedule-box {
    text-align: center;
}

.schedule-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
    display: block;
}

.schedule-value {
    font-size: 1.8rem;
    font-weight: 800;
}

/* Apply Now Button - Signature Purple Contrast */
.btn-mastermind-apply {
    background: rgb(4 120 87 / var(--tw-bg-opacity, 1)); /* Skillmantra Purple */
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    transition: 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 45, 96, 0.3);
}

.btn-mastermind-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 45, 96, 0.4);
}

.btn-icon-circle {
    background: #ffffff;
    color: #3b2d60;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mastermind-title { font-size: 2.5rem; }
    .schedule-grid { flex-direction: column; gap: 20px; }
}

/* --- Course Overview Theme --- */
.overview-section {
    padding: 100px 0;
    background-color: #fcfdfe; /* Theme Light Background */
}

.overview-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid #3b2d60;
    border-radius: 50px;
    color: #3b2d60;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.overview-badge i {
    color: #ff3e6c; /* Original Pink Star Accent */
    font-size: 10px;
}

.overview-text {
    color: #3b2d60; /* Skillmantra Purple */
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Video/Image Container */
.overview-media-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.overview-media-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* Play Button Accent */
.video-play-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: #cff4fc; /* Light Blue from your design */
    border-top-left-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 10;
}

.play-icon-circle {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b2d60;
    padding-left: 3px; /* Center alignment for play triangle */
}

@media (max-width: 991px) {
    .overview-media-wrapper { margin-top: 40px; }
}

/* --- Course Details Balanced Grid --- */
.details-section {
    padding: 80px 0;
    background-color: #fcfdfe;
}

/* Using Flexbox for better control over the bottom row alignment */
.details-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center; /* Centers the bottom row */
}

.details-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(59, 45, 96, 0.05);
    position: relative;
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 30px); /* Default 3 columns */
    min-width: 300px;
}

/* Make Step 04 and 05 slightly wider for balance */
.details-card.wide-card {
    flex: 0 1 calc(45% - 30px);
}

.details-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 168, 120, 0.15);
    border-color: #00a878;
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #00a878;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.details-icon-box {
    width: 60px;
    height: 60px;
    background: #f9fbff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #eef2f6;
}

.details-icon-box i {
    color: #00a878;
    font-size: 24px;
}

.details-title {
    color: #00a878;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.details-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .details-card, .details-card.wide-card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 767px) {
    .details-card, .details-card.wide-card {
        flex: 1 1 100%;
    }
}

/* --- Skillmantra Pricing Section --- */
.pricing-wrapper {
    padding: 15px 0;
    font-family: 'Inter', sans-serif;
}

.pricing-main-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Urgency & Progress */
.pricing-header-info {
    font-size: 14px;
    font-weight: 700;
    color: #3b2d60;
    margin-bottom: 15px;
}

.progress-container {
    height: 10px;
    background-color: #f1f5f9;
    border-radius: 10px;
    margin: 10px 0 25px 0;
    overflow: hidden;
}

.progress-bar-green {
    height: 100%;
    background-color: #00a878; /* Brand Green */
    width: 85%;
    border-radius: 10px;
}

/* Price Typography */
.old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1.2rem;
    display: block;
}

.current-price {
    color: #00a878; /* Brand Green */
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin: 5px 0;
}

.timer-text {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Feature List */
.includes-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00a878;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #475569;
    font-weight: 500;
}

.feature-item i {
    color: #00a878; /* Brand Green Check */
    font-size: 1.2rem;
}

/* Apply Button */
.btn-apply-now {
    background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-apply-now:hover {
    background-color: #00a878; /* Brand Green on hover */
    transform: translateY(-2px);
}

/* --- FAQ Section Branding --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-green);
    box-shadow: 0 10px 25px rgba(0, 168, 120, 0.05);
}

.faq-header {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin: 0;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-green-light);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: 0.3s ease;
}

.faq-item.active .faq-icon {
    background-color: var(--accent-green);
    color: white;
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    display: none; /* Controlled via JS */
}

.faq-item.active .faq-body {
    display: block;
}
/* --- Hands-On Tools Branding --- */
.tools-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.tools-tag {
    background-color: #00a878;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.tools-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 50px;
    letter-spacing: -0.04em;
}

.tool-card {
    background-color: #00a878;
    border-radius: 20px;
    padding: 24px;
    color: white;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

/* Inner light gray container for the logo */
.tool-logo-box {
    background-color: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.tool-logo-box img {
    width: 100%;
    height: auto;
}

.tool-badge {
    background-color: white;
    color: var(--primary-navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.tool-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.tool-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .tools-main-title { font-size: 2rem; text-align: center; }
    .tools-tag { display: block; width: fit-content; margin: 0 auto 20px; }
}

/* --- Insights & Stories Branding --- */
.insights-section {
    padding: 80px 0;
    background-color: #fff;
}

.insights-tag {
    background-color: #00a878;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.insights-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00a878;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

/* Video Wrapper with Play Button */
.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.play-button-overlay i {
    color: #000;
    font-size: 1.5rem;
    margin-left: 5px; /* Centers the triangle visually */
}

/* Notched Content Cards */
.insight-card {
    background-color: #00a878;
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    height: 100%;
    margin-top: 20px;
}

/* The notch for the icon */
.insight-card::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    width: 80px;
    height: 80px;
    background-color: white; /* Matches section background */
    border-radius: 0 0 0 25px;
}

.insight-icon-box {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #00a878;
    font-size: 1.8rem;
    z-index: 2;
}

.insight-card h4 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.insight-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* --- Video Popup Styles --- */
.video-popup-overlay {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(25 135 84 / 58%);
}

.video-popup-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
}

.close-video {
    position: absolute;
    top: -60px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.video-responsive-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-responsive-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Payment Page Global --- */
.payment_page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

/* --- Success Card --- */
.success-card {
    background: #ffffff;
    max-width: 550px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(30, 30, 56, 0.08);
    overflow: hidden;
}

/* --- Header Section --- */
.success-header {
    background-color: #1e1e38; /* Your Deep Navy */
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
}

.icon-container {
    width: 80px;
    height: 80px;
    background: #00c881; /* Your Emerald Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    box-shadow: 0 0 20px rgba(0, 200, 129, 0.4);
}

.success-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.success-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.success-subtitle strong {
    color: #00c881;
}

/* --- Details Box --- */
.details-box {
    padding: 30px;
}

.details-header {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.detail-row-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f8fafc;
}

.label-new {
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
}

.value-new {
    color: #1e1e38;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}

/* Transaction ID Pill */
.txn-pill {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.txn-pill i {
    cursor: pointer;
    color: #00c881;
}

/* Amount Highlighting */
.amount-highlight-blue {
    color: #00c881 !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
}

/* --- Footer & Print Button --- */
.card-footer {
    padding: 0 30px 40px;
    text-align: center;
}

.btn-print-premium {
    background-color: #1e1e38;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-print-premium:hover {
    background-color: #00c881;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 200, 129, 0.2);
}

/* Print Optimization */
@media print {
    body * { visibility: hidden; }
    .success-card, .success-card * { visibility: visible; }
    .success-card { position: absolute; left: 0; top: 0; width: 100%; box-shadow: none; }
    .btn-print-premium { display: none; }
}

/* Namespace prefix: skm- (Prevents conflict with header/menu) */

.skm-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
	width: 87%;
    margin: 0 auto;
}

/* Common Card Style */
.skm-profile-card, 
.skm-quicklinks-card, 
.skm-course-promo-card {
    background: #1e1e38; /* Navy Background */
    border-radius: 24px;
    padding: 35px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(30, 30, 56, 0.1);
    transition: transform 0.3s ease;
}

/* --- Profile Card --- */
.skm-profile-header {
    text-align: center;
    margin-bottom: 25px;
}

.skm-initials-avatar {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e1e38;
    margin: 0 auto 15px;
}

.skm-profile-name { 
    font-size: 1.2rem;
    font-weight: 800; 
    margin: 0;
    letter-spacing: 0.5px;
}

.skm-profile-sub { 
    color: #00c881; /* Green Accent */
    font-size: 0.85rem;
    opacity: 0.9;
}

.skm-details-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.skm-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.skm-detail-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.skm-detail-value { font-weight: 600; font-size: 0.85rem; }

/* --- Quick Links --- */
.skm-quicklinks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.skm-link-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important; /* Force no underline */
    color: #ffffff !important; /* Force white text */
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
}

.skm-link-item:hover {
    background: #00c881;
    color: #1e1e38 !important;
}

.skm-icon-circle {
    width: 32px;
    height: 32px;
    background: #1e1e38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c881;
}

.skm-link-item:hover .skm-icon-circle {
    background: #1e1e38;
    color: #ffffff;
}

/* --- Course Promo Card --- */
.skm-course-promo-card {
    background: linear-gradient(135deg, #1e1e38 0%, #2a2a4d 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.skm-badge-tag {
    background: rgba(0, 200, 129, 0.15);
    color: #00c881;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-block;
}

.skm-btn-green {
    background: #00c881;
    color: #1e1e38 !important;
    border: none;
    padding: 14px 25px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    transition: 0.3s;
}

.skm-btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 200, 129, 0.3);
}

/* Section Styling */
.skm-courses-section {
    padding-top: 20px;
    background-color: #f9fbfb; /* Light subtle background from image */
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.skm-sub-heading {
    color: #00c881;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.skm-main-heading {
    color: #1e1e38;
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Category Filters */
.skm-filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.skm-filter-btn {
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #1e1e38;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.skm-filter-btn.active, .skm-filter-btn:hover {
    background-color: #00c881;
    color: white;
    border-color: #00c881;
}

/* Course Grid */
.skm-course-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.skm-course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.skm-course-card:hover {
    transform: translateY(-10px);
}

.skm-card-image-wrap {
    position: relative;
    height: 180px;
}

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

.skm-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00c881;
    color: white;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Content Styling */
.skm-card-content {
    padding: 15px;
}

.skm-course-title {
    font-size: 1.20rem;
    font-weight: 800;
    color: #1e1e38;
    margin-bottom: 10px;
    line-height: 1.3;
	min-height: 50px;
}

.skm-course-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 20px;
	min-height: 50px;
}

.skm-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.skm-price-now {
    color: #00c881;
    font-size: 1.5rem;
    font-weight: 800;
}

.skm-price-old {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.skm-off-tag {
    background: #fee2e2;
    color: #ef4444;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}
.skm-card-actions .btn-green {
	padding: 8px 15px 0 16px;
    font-size: 15px;
}
.skm-meta-info {
    font-size: 0.7rem;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* Buttons */
.skm-card-actions {
    display: flex;
    gap: 10px;
}

.skm-btn-enroll {
    flex: 1.5;
    background: #00c881;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.skm-btn-details {
    flex: 1;
    background: white;
    color: #1e1e38;
    border: 1px solid #e2e8f0;
    padding: 7px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
	text-decoration: none;
    text-align: center;
}

/* --- Floating Sticky Bar --- */
.skm-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 56, 0.95); /* Navy with slight transparency */
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 0;
    z-index: 9999;
    /* Initially hidden */
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

/* Class added via JavaScript on scroll */
.skm-sticky-bar.skm-show {
    transform: translateY(0);
}

.skm-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.skm-bar-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.skm-bar-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #00c881; /* Green Accent */
}

.skm-bar-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.skm-bar-pricing {
    text-align: right;
}

.skm-old-price {
    text-decoration: line-through;
    font-size: 0.8rem;
    opacity: 0.6;
}

.skm-new-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.skm-btn-subscribe {
    background: #00c881; /* Green */
    color: #1e1e38;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.skm-btn-subscribe:hover {
    background: white;
    transform: translateY(-2px);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .skm-bar-info, .skm-old-price { display: none; }
    .skm-bar-container { justify-content: center; gap: 20px; }
	.skm-course-grid {grid-template-columns: repeat(1, 1fr);}
}

/* Namespace: skm- (Protects global header/footer) */
.skm-full-policy-wrapper {
    background-color: #f4f7f6;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.skm-policy-container {
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 30, 56, 0.1);
}

/* Header Section */
.skm-policy-hero {
    background: #1e1e38; /* Navy Background */
    color: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

.skm-policy-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.skm-policy-hero p {
    color: #00c881; /* Green Accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Content Body */
.skm-policy-body {
    padding: 50px;
}

.skm-policy-section {
    margin-bottom: 45px;
}

.skm-policy-section h2 {
    color: #1e1e38;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.skm-policy-section h2 i {
    color: #00c881;
    font-size: 1.3rem;
}

.skm-policy-text {
    color: #475569;
    font-size: 1rem;
}

/* Special WhatsApp Box */
.skm-whatsapp-box {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-left: 5px solid #00c881;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.skm-whatsapp-box h3 {
    color: #166534;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.skm-policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .skm-policy-grid { grid-template-columns: 1fr; }
    .skm-policy-body { padding: 30px 20px; }
}

/* Namespace: skm- (Safe for your current header) */
.skm-user-menu-container {
    position: relative;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.skm-user-trigger {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.skm-user-trigger:hover {
    border-color: #00c881; /* Skill Mantra Green */
    background: #f0fdf4;
}

.skm-user-name {
    color: #1e1e38; /* Navy Text */
    font-weight: 600;
    font-size: 0.95rem;
}

.skm-user-avatar {
    width: 32px;
    height: 32px;
    background: #00c881;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Dropdown Content */
.skm-dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(30, 30, 56, 0.1);
    border: 1px solid #f1f5f9;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
}

.skm-user-menu-container:hover .skm-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.skm-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.skm-dropdown-link i {
    font-size: 1rem;
    width: 20px;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.skm-dropdown-link:hover {
    background: #f8fafc;
    color: #1e1e38;
}

.skm-dropdown-link:hover i {
    color: #00c881; /* Green icon on hover */
}

/* Specific Logout Style */
.skm-logout-btn {
    border-top: 1px solid #f1f5f9;
    margin-top: 5px;
    color: #ef4444 !important; /* Soft Red for logout */
}

.skm-logout-btn:hover {
    background: #fef2f2 !important;
}

.skm-logout-btn:hover i {
    color: #ef4444 !important;
}

/* Container & Global Styles */
.main-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(30, 30, 56, 0.05);
}

.question-title {
    color: #1e1e38; /* Navy */
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.required {
    color: #ef4444;
}

/* Grid Layout */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Option Card Styling */
.option-card {
    position: relative;
}

.option-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-label {
    display: block;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    padding: 24px;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effect */
.option-card:hover .option-label {
    border-color: #00c881; /* Green */
    background-color: #f0fdf4;
    transform: translateY(-3px);
}

/* Checked/Active State */
.option-input:checked + .option-label {
    border-color: #00c881;
    background-color: #00c881;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 200, 129, 0.2);
}

/* Footer & Buttons */
.footer-actions {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

.btn-next {
    background: #e2e8f0;
    color: #94a3b8;
    border: none;
    padding: 14px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.btn-next.enabled {
    background: #1e1e38; /* Navy Button */
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(30, 30, 56, 0.15);
}

.btn-next.enabled:hover {
    background: #00c881; /* Turns Green on Hover */
    transform: scale(1.05);
}

/* Step Visibility */
.step-container {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-container.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Student Dashboard Section Styling */
.student-dashboard-section {
    padding: 25px 0;
    background-color: #f4f7f6; /* Soft light background */
}

/* The Main Profile Card */
.dashboard-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 30, 56, 0.08);
    position: relative;
    border: 1px solid #eef2f1;
}

/* Profile Banner - Using your Navy Theme */
.profile-banner {
    height: 180px;
    background: linear-gradient(135deg, #1e1e38 0%, #2d2d54 100%);
    position: relative;
}

/* Content Area Adjustment */
.profile-content {
    padding: 0 40px 40px;
    text-align: center;
}

/* Profile Avatar Overlapping Banner */
.profile-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 6px solid #ffffff;
    overflow: hidden;
    margin: -65px auto 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

/* Text Headers */
.student-name {
    color: #1e1e38;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.enrollment-no {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Grid-style Profile Details */
.profile-details-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    text-align: left;
    margin-top: 20px;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.profile-details-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.profile-details-list li:hover {
    border-color: #00c881; /* Green Hover */
    background: #f0fdf4;
    transform: translateX(5px);
}

/* Label & Icon Styles */
.detail-label {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-label i {
    color: #00c881; /* Your Green accent */
    width: 18px;
}

/* Value Styles */
.detail-value {
    color: #1e1e38;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-details-list {
        grid-template-columns: 1fr;
    }
    .profile-content {
        padding: 0 20px 30px;
    }
    .student-name {
        font-size: 1.5rem;
    }
}

/* Live Session Section */
.skm-live-section {
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
}

.skm-session-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #eef2f1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 30, 56, 0.03);
}

.skm-session-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 30, 56, 0.08);
    border-color: #00c881; /* Green Hover */
}

/* Course & Session Info */
.skm-session-info {
    flex: 2;
}

.skm-course-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: #00c881; /* Green */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.skm-session-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e1e38; /* Navy */
    margin: 0;
}

/* Date & Time Container */
.skm-session-timing {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 20px;
    border-left: 2px solid #f1f5f9;
}

.skm-time-item {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.skm-time-item strong {
    color: #1e1e38;
}

/* Join Button & Pulse Effect */
.skm-action-area {
    flex: 0.5;
    text-align: right;
}

.skm-btn-join {
    background: #1e1e38;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.skm-btn-join:hover {
    background: #00c881;
    box-shadow: 0 8px 20px rgba(0, 200, 129, 0.3);
}

/* Status Indicator */
.skm-status-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    color: #166534;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.skm-pulse {
    width: 8px;
    height: 8px;
    background: #00c881;
    border-radius: 50%;
    animation: skm-pulse-red 1.5s infinite;
}

@keyframes skm-pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 200, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 129, 0); }
}

@media (max-width: 768px) {
    .skm-session-card { flex-direction: column; text-align: center; gap: 20px; }
    .skm-session-timing { border: none; padding: 0; }
	.skm-inner-banner {
		width: 100% !important;
	}
	.skm-next-steps { max-width: 100% !important; }
}

/* Container & Background */
.skm-success-page {
    background-color: #f4f7f6;
    padding: 2px 0px;
    font-family: 'Inter', sans-serif;
}

.skm-success-container {
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(30, 30, 56, 0.08);
}

/* Headings */
.skm-success-title {
    color: #1e1e38; /* Navy */
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 15px;
}

.skm-success-title span {
    color: #00c881; /* Green */
}

.skm-sub-heading {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 40px;
}

/* Banner Image within Success Page */
.skm-inner-banner {
	width: 50%;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Next Steps Section */
.skm-next-steps {
    max-width: 50%;
    display: inline-block;
    margin-top: 0;
    border-top: 1px solid #f1f5f9;
}

.skm-next-steps h2 {
    color: #00c881;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.skm-step-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* WhatsApp Button */
.skm-btn-whatsapp {
    background: #00c881;
    color: #ffffff !important;
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 30px;
    border: none;
}

.skm-btn-whatsapp:hover {
    background: #1e1e38;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 30, 56, 0.2);
}

.skm-footer-support {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ===== Layout Fix (Equal Height Columns) ===== */
.assessment_sec .row {
    display: flex;
    align-items: stretch;
}

.assessment_card,
.video-card {
    height: 100%;
}

/* ===== Left Card Structure ===== */
.assessment_card {
    display: flex;
    flex-direction: column;
}

/* Scroll Area */
.scrollboxtoc {
    flex: 1;
    overflow-y: scroll;
    padding-right: 6px;
    max-height: 515px;
}

/* Scrollbar */
.scrollboxtoc::-webkit-scrollbar {
    width: 6px;
}
.scrollboxtoc::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* ===== Package Heading ===== */
.packageheading {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-navy);
    background: #f8fafc;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.packageheading:hover {
    background: var(--soft-green);
    color: var(--accent-green);
}

/* Arrow */
.packageheading i {
    margin-left: auto;
    font-size: 13px;
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

.packageheading[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* ===== Package Content ===== */
.package-content {
    padding-left: 5px;
}

/* ===== Day Buttons ===== */
.btn-toggle {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    padding: 10px 12px;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.btn-toggle:hover {
    background: var(--soft-green);
    color: var(--accent-green);
}

.btn-toggle[aria-expanded="true"] {
    background: var(--soft-green);
    color: var(--accent-green);
}

/* Remove extra icons */
.btn-toggle::after {
    display: none !important;
}

/* ===== Topics List ===== */
.btn-toggle-nav {
    margin-top: 6px;
    padding-left: 10px;
    border-left: 2px dashed #e2e8f0;
}

/* Topic Item */
.suptopicli {
    margin-bottom: 6px;
}

/* Topic Link */
.suptopicli a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: 13px;
    color: #475569;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.suptopicli a:hover {
    background: var(--soft-green);
    color: var(--accent-green);
    transform: translateX(4px);
}

/* Play Icon */
.suptopicli i {
    color: var(--accent-green);
    font-size: 12px;
}

/* ===== Button ===== */
.tj-primary-btn {
    display: inline-block;
    background: #00c881;
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.tj-primary-btn:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
}

/* ===== Typography ===== */
.card-title {
    font-weight: 800;
    color: var(--primary-navy);
}

.playlist h6 {
    color: var(--text-muted);
}

/* ===== VIDEO SECTION ===== */

/* Card */
.video-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Header */
.video-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    border-bottom: 1px solid #e2e8f0;
}

.video-header .card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

/* Video Container (LIGHT UI FIXED) */
.card-body .video-container {
	    border-radius: 0;
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #f1f5f9; /* light instead of black */
}

/* Overlay message */
.video-container::before {
    content: "▶ Select a topic to play";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    color: var(--primary-navy);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

/* Hide overlay when playing */
.video-container.playing::before {
    display: none;
}

/* iframe */
.video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
}

/* Description */
.video-description {
    padding: 14px 18px;
    font-size: 13px;
    color: #64748b;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.active-topic {
    background: var(--soft-green);
    color: var(--accent-green) !important;
    font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .assessment_sec .row {
        flex-direction: column;
    }
}

/* ===== SECTION ===== */
.bonus-skill-sec {
    padding: 50px 0;
}

/* Title */
.section-title {
    font-weight: 800;
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

/* ===== CARD ===== */
.skill-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: 0.35s;
    height: 100%;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ===== IMAGE ===== */
.skill-thumb {
    position: relative;
}

.skill-thumb img {
    width: 100%;
    height: 200px; /* 🔥 BIGGER IMAGE */
    object-fit: cover;
}



/* ===== BODY ===== */
.skill-body {
    padding: 16px; /* more spacing */
}

.skill-body h6 {
    font-size: 16px; /* bigger title */
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.skill-body p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .skill-thumb img {
        height: 180px;
    }
}



/* Top Notification Bar */
.promo-banner {
	background-color: #3B8E63;
	color: white;
	font-weight: 700;
	padding: 12px 10px;
	font-size: 0.95rem;
}

/* Badge Style */
.live-badge {
	background-color: #3B8E63;
	color: white;
	display: inline-flex;
	align-items: center;
	padding: 8px 25px;
	border-radius: 8px;
	font-weight: 600;
	margin-top: 30px;
}

/* Main Headline */
.headline {
	font-weight: 800;
	line-height: 1.2;
	margin-top: 25px;
	color: #3B8E63; /* WhatsApp Green */
}
.headline span.blue { color: #1877F2; } /* Facebook Blue */
.headline span.red { color: #E4405F; }  /* Instagram Pink/Red */

.sub-headline {
	font-size: 1.1rem;
	color: #444;
	margin-top: 20px;
}

/* Video/Image Container with Browser UI feel */
.video-container-webinar {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	margin: 30px auto;
	max-width: 600px;
}
.browser-dots {
	padding: 10px 15px;
	display: flex;
	gap: 8px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.thumbnail-img {
	width: 100%;
	height: auto;
	display: block;
}

/* CTA Button */
.btn-register {
	background-color: #3B8E63;
	color: white;
	font-weight: 700;
	font-size: 1.4rem;
	padding: 15px;
	border-radius: 8px;
	width: 100%;
	max-width: 600px;
	border: none;
	transition: transform 0.2s;
}
.btn-register:hover {
	background-color: #2d6e4c;
	color: white;
	transform: scale(1.02);
}
/* Check Icons */
.check-icon {
background-color: #3B8E63;
color: white;
width: 28px;
height: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8rem;
flex-shrink: 0;
}

/* Feature Text */
.feature-list p {
font-weight: 500;
color: #222;
}

/* Bottom Bar Timer Text */
.xs-text {
font-size: 0.65rem;
display: block;
}

/* Mobile adjustments for the bottom bar */
@media (max-width: 768px) {
.fixed-bottom {
padding: 10px !important;
}
.pricing-info .fs-3 {
font-size: 1.2rem !important;
}
}

/* Dark Green Section */
.learn-section {
background-color: #00a878; /* Deep forest green */
margin-bottom: -20px; /* Slight overlap or adjustment */
}

/* Light Green Heading */
.learn-title {
color: rgba(30, 30, 56, 0.95); /* Neon/Light green for contrast */
font-weight: 800;
font-size: 1.8rem;
}

.module-desc {
max-width: 450px;
font-size: 1.05rem;
line-height: 1.6;
opacity: 0.9;
}

.icon-wrapper {
display: flex;
justify-content: center;
align-items: center;
}

/* Ensure the white background of the previous section doesn't bleed */

/* Light Mint Background Section */
.designed-for-section {
background-color: #D4EDDA; /* Light mint green matching the image */
color: #000;
}

.section-title {
font-weight: 800;
font-size: 1.85rem;
}

.section-title .highlight {
color: #3B8E63; /* Darker green for emphasis */
}

.target-desc {
max-width: 380px;
font-size: 1.1rem;
font-weight: 500;
line-height: 1.4;
color: #333;
}

.icon-box {
display: flex;
justify-content: center;
padding: 10px;
}

/* Specific spacing to match the mobile view */
.target-point h3 {
margin-top: 10px;
letter-spacing: -0.5px;
}

/* Dashed Offer Box */
.offer-card {
background-color: #00a878;
border: 2px dashed rgba(30, 30, 56, 0.95); /* Light green dashed border */
border-radius: 15px;
margin-top: -30px; /* Overlaps slightly with the dark green section above */
}

.offer-title {
color: #FFD700; /* Bright gold/yellow */
font-weight: 800;
font-size: 2rem;
}

/* Section Headline */
.section-title {
font-weight: 800;
font-size: 1.7rem;
line-height: 1.3;
color: #000;
}

/* Checklist Cards */
.change-card {
background: #F8F9FA;
border-radius: 10px;
border: 1px solid #eee;
}

.check-circle {
background-color: #3B8E63;
color: white;
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.7rem;
flex-shrink: 0;
}

/* Button Custom Color */
.btn-danger {
background-color: rgba(30, 30, 56, 0.95);
border: none;
border-radius: 5px;
}
/* Coach Section Styling */
.coach-section {
background-color: #00a878; 
}

/* Darker green bars for credentials */
.credential-bar {
background-color: rgba(30, 30, 56, 0.95); /* Even darker green */
color: white;
padding: 15px 20px;
border-radius: 8px;
font-size: 1.1rem;
}

/* Accent for icons */
.icon-accent {
color: rgba(30, 30, 56, 0.95); /* Light green icon color */
font-size: 1.3rem;
}

/* Bio text formatting */
.coach-bio p {
font-size: 1.1rem;
line-height: 1.6;
opacity: 0.95;
}

/* Coach image handling */
.coach-img-container img {
width: 100%;
max-width: 500px;
display: block;
margin: 0 auto;
object-fit: cover;
}

/* Mobile font adjustment */
@media (max-width: 576px) {
.credential-bar {
font-size: 0.95rem;
padding: 12px 15px;
}
}

/* Background for this specific section */
.perfect-for-section {
background-color: #D6EDE2; /* Light mint green background */
}

/* Persona Cards Styling */
.persona-card {
background-color: white;
border: 2px solid #3B8E63; /* WhatsApp Green Border */
border-radius: 15px;
padding: 30px 20px;
transition: transform 0.2s;
}

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

.persona-card h3 {
color: #000;
margin-bottom: 0;
line-height: 1.4;
}

/* Icon Spacing */
.persona-icon img {
height: 80px;
width: auto;
object-fit: contain;
}

/* Header Span */
.text-success {
color: #3B8E63 !important;
}

/* Bonus Section Background */
.bonus-section {
background-color: #D6EDE2; /* Matching the light mint green */
}

/* Bonus Card Styling */
.bonus-card {
background-color: #FFFCEC; /* Light cream/yellowish background */
border: 1px solid #EFE4B0;
border-radius: 10px;
}

/* Worth Text Styling */
.bonus-worth {
color: #3B8E63; /* Dark green */
font-weight: 800;
font-size: 1.4rem;
text-align: center;
width: 100%;
}

/* Check Circle (Same as previous sections for consistency) */
.bonus-card .check-circle {
background-color: #3B8E63;
color: white;
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
flex-shrink: 0;
}

/* Responsive adjustment for the "Worth" text */
@media (max-width: 576px) {
.bonus-worth {
font-size: 1.2rem;
}
}

.skill-count {
	background: #1e1e38;
    padding: 10px;
    text-align: center;
}

.skill-count span {
	font-size: 15px;
}